-
Wizzup has quit
2019-06-01 15229, 2019
-
Wizzup joined the channel
2019-06-01 15249, 2019
-
pristine__
can anyone tell me what artist_count, ref_count refers to in artist_credit table in MusicBrainz DB?
2019-06-01 15246, 2019
-
reosarevok
pristine__: IIRC artist_count is how many artists are in that credit, ref_count is how many times it is used
2019-06-01 15240, 2019
-
pristine__
reosarevok: credit as in?
2019-06-01 15250, 2019
-
reosarevok
artist credit? :D
2019-06-01 15217, 2019
-
reosarevok
2019-06-01 15255, 2019
-
pristine__
oh okay!
2019-06-01 15257, 2019
-
pristine__
thanks!
2019-06-01 15251, 2019
-
Wizzup has quit
2019-06-01 15245, 2019
-
Wizzup joined the channel
2019-06-01 15258, 2019
-
Cyna
I want the js equivalent of form_row_name_with_guesscase
2019-06-01 15201, 2019
-
Cyna
I guess there are some utilities in /root/entity/alias/edit_form.t that havent been converted to js
2019-06-01 15242, 2019
-
reosarevok
Cyna: yes, you need to convert it, you can use root/components/FormRow(Whatever) files as examples
2019-06-01 15208, 2019
-
Cyna
I dont even know the working of it 😅
2019-06-01 15223, 2019
-
Cyna
I'll searching for the tt function right now
2019-06-01 15214, 2019
-
Cyna
It is used everywhere but I cant find the definition of the function
2019-06-01 15252, 2019
-
reosarevok
2019-06-01 15201, 2019
-
reosarevok
root/components/forms.tt
2019-06-01 15214, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15208, 2019
-
Protab joined the channel
2019-06-01 15208, 2019
-
Rotab has quit
2019-06-01 15225, 2019
-
Wizzup has quit
2019-06-01 15232, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15215, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15219, 2019
-
Cyna
reosarevok: what does this mean ? { class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }
2019-06-01 15225, 2019
-
Cyna
```{ class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }```
2019-06-01 15205, 2019
-
reosarevok
the class is "with-guesscase", but if there's also guessfeat in options then it gets concatenated and you get "with-guesscase-guessfeat"
2019-06-01 15242, 2019
-
Cyna
```[% r.text('name', { class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }) %]```
2019-06-01 15254, 2019
-
Cyna
in here, class refers to the className of input tag ?
2019-06-01 15258, 2019
-
chhavi_ has quit
2019-06-01 15203, 2019
-
reosarevok
Yes
2019-06-01 15205, 2019
-
reosarevok
<input class="with-guesscase" id="id-edit-alias.name" name="edit-alias.name" required="required" type="text" value="Symphonie à grand orchestre en Ré majeur: II. Andante" />
2019-06-01 15209, 2019
-
reosarevok
For an example
2019-06-01 15218, 2019
-
Cyna
ohh
2019-06-01 15237, 2019
-
reosarevok
2019-06-01 15236, 2019
-
Cyna
reosarevok: this should be right for ``` [% r.text('name', { class => 'with-guesscase' _ (options.guessfeat ? '-guessfeat' : '') }) %]```
2019-06-01 15252, 2019
-
Cyna
```<input
2019-06-01 15252, 2019
-
Cyna
className={options.guessfeat ? 'with-guesscase-guessfeat' : 'with-guesscase'}
2019-06-01 15252, 2019
-
Cyna
defaultValue={field.value || ''}
2019-06-01 15252, 2019
-
Cyna
id={'id-' + field.html_name}
2019-06-01 15252, 2019
-
Cyna
name={field.html_name}
2019-06-01 15253, 2019
-
Cyna
required={required}
2019-06-01 15253, 2019
-
Cyna
type={type}
2019-06-01 15254, 2019
-
Cyna
{...inputProps}
2019-06-01 15254, 2019
-
Cyna
/>```
2019-06-01 15256, 2019
-
Cyna
right ?
2019-06-01 15251, 2019
-
reosarevok
Seems like it might be right :)
2019-06-01 15255, 2019
-
reosarevok
Try it, of course, but
2019-06-01 15207, 2019
-
CatQuest
reosarevok: :D
2019-06-01 15225, 2019
-
Cyna
I guess I've made the convertion
2019-06-01 15232, 2019
-
Cyna
How do I test it 🤔
2019-06-01 15257, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15234, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15212, 2019
-
Wizzup joined the channel
2019-06-01 15258, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15239, 2019
-
Wizzup has quit
2019-06-01 15235, 2019
-
Wizzup joined the channel
2019-06-01 15218, 2019
-
reosarevok
Cyna: same as with other forms you converted before :)
2019-06-01 15257, 2019
-
reosarevok
The right controller should be lib/MusicBrainz/Server/Controller/Role/Alias.pm IIRC
2019-06-01 15204, 2019
-
CatQuest
2019-06-01 15211, 2019
-
CatQuest
also if there is any thing to add/remove
2019-06-01 15257, 2019
-
CatQuest
esp definition of "moin" sine i hella don't know it
2019-06-01 15226, 2019
-
Cyna
okay
2019-06-01 15231, 2019
-
Wizzup has quit
2019-06-01 15236, 2019
-
Wizzup joined the channel
2019-06-01 15247, 2019
-
Wizzup has quit
2019-06-01 15255, 2019
-
Wizzup joined the channel
2019-06-01 15252, 2019
-
Wizzup has quit
2019-06-01 15205, 2019
-
Wizzup joined the channel
2019-06-01 15207, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15256, 2019
-
Wizzup has quit
2019-06-01 15234, 2019
-
Wizzup joined the channel
2019-06-01 15258, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15234, 2019
-
Protab is now known as Rotab
2019-06-01 15242, 2019
-
Cyna
what are guessoptions ? reosarevok
2019-06-01 15249, 2019
-
Cyna
I've having trouble finding those
2019-06-01 15205, 2019
-
reosarevok
Cyna: where are you seeing the reference?
2019-06-01 15223, 2019
-
Cyna
test.musicbrainz
2019-06-01 15235, 2019
-
reosarevok
More specific link?
2019-06-01 15249, 2019
-
Cyna
2019-06-01 15225, 2019
-
reosarevok
Cyna: oh, they're just the options for the guess case :D Click the gear
2019-06-01 15237, 2019
-
Cyna
Yea
2019-06-01 15249, 2019
-
Cyna
I need a way to find those options
2019-06-01 15207, 2019
-
reosarevok
2019-06-01 15210, 2019
-
reosarevok
Also in forms.tt
2019-06-01 15256, 2019
-
reosarevok
That uses knockout I guess, which I haven't really used much. bitmap would be able to help you more
2019-06-01 15210, 2019
-
Cyna
Converting them to react in a bit
2019-06-01 15236, 2019
-
Cyna
Guess case options is a React table component
2019-06-01 15218, 2019
-
Cyna
I converted GuessCaseOptions to react
2019-06-01 15208, 2019
-
Cyna
but it is not linked with form_row_name_with_guesscase
2019-06-01 15201, 2019
-
Cyna
2019-06-01 15212, 2019
-
Cyna
This is my FormRowNameWithGuesscase file
2019-06-01 15230, 2019
-
Cyna
I dont know from where to get the props required
2019-06-01 15238, 2019
-
Cyna
2019-06-01 15219, 2019
-
Cyna
here is my EditForm component
2019-06-01 15255, 2019
-
Wizzup has quit
2019-06-01 15254, 2019
-
Wizzup joined the channel
2019-06-01 15212, 2019
-
Cyna
I am unable to pass options
2019-06-01 15210, 2019
-
reosarevok
I honestly don't know, would need to check further and don't have the time at the moment. bitmap should arrive in a couple hours tops I hope :)
2019-06-01 15247, 2019
-
Cyna
okay
2019-06-01 15209, 2019
-
CatQuest
reosarevok: why don't we have a release-release / RG-RG "is the highlights release of" (in the wein of "ep/single released in assoc. with) ???
2019-06-01 15221, 2019
-
CatQuest
probably RG RG is best
2019-06-01 15244, 2019
-
Wizzup has quit
2019-06-01 15259, 2019
-
Wizzup joined the channel
2019-06-01 15208, 2019
-
Wizzup has quit
2019-06-01 15220, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15231, 2019
-
ruaok
Mr_Monkey: bitmap: iliekcomputers: zas: invoices please
2019-06-01 15216, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15254, 2019
-
Wizzup joined the channel
2019-06-01 15226, 2019
-
bitmap
Cyna: I can help in a min, but not sure I understand the question - which options are you unable to pass?
2019-06-01 15221, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15205, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15232, 2019
-
Wizzup has quit
2019-06-01 15218, 2019
-
Wizzup joined the channel
2019-06-01 15203, 2019
-
Wizzup has quit
2019-06-01 15244, 2019
-
ruaok
aight. if you had sent an invoice by now, payment will go out monday. next round of payments will happen tuesday.
2019-06-01 15223, 2019
-
chhavi_ joined the channel
2019-06-01 15227, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15232, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15228, 2019
-
Wizzup joined the channel
2019-06-01 15210, 2019
-
Wizzup has quit
2019-06-01 15224, 2019
-
travis-ci joined the channel
2019-06-01 15224, 2019
-
travis-ci
2019-06-01 15224, 2019
-
travis-ci has left the channel
2019-06-01 15205, 2019
-
Wizzup joined the channel
2019-06-01 15212, 2019
-
Wizzup has quit
2019-06-01 15228, 2019
-
Wizzup joined the channel
2019-06-01 15255, 2019
-
yokel has quit
2019-06-01 15228, 2019
-
yokel joined the channel
2019-06-01 15247, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15240, 2019
-
Wizzup has quit
2019-06-01 15216, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15209, 2019
-
Wizzup joined the channel
2019-06-01 15207, 2019
-
yokel has quit
2019-06-01 15231, 2019
-
yokel joined the channel
2019-06-01 15245, 2019
-
D4RK-PH0ENiX joined the channel
2019-06-01 15230, 2019
-
D4RK-PH0ENiX has quit
2019-06-01 15216, 2019
-
Wizzup has quit
2019-06-01 15223, 2019
-
Cyna
I'm trying to figure out how do I access each fields
2019-06-01 15238, 2019
-
Wizzup joined the channel
2019-06-01 15253, 2019
-
Cyna
For example, like `form.field.name`
2019-06-01 15213, 2019
-
Cyna
there is no such property in entity like entity.form 🤔
2019-06-01 15242, 2019
-
Cyna
I'll try hardcoding the options at first
2019-06-01 15211, 2019
-
Cyna
options isnt much of a headache as compared to form fields
2019-06-01 15252, 2019
-
Cyna
bitmap: I've also pushed my latest changes to my remote repo
2019-06-01 15214, 2019
-
Cyna
2019-06-01 15258, 2019
-
yokel has quit
2019-06-01 15200, 2019
-
yokel joined the channel
2019-06-01 15214, 2019
-
yokel has quit