Somal: I don't see anything Android related. Should I?
2020-02-07 03847, 2020
Somal
Actually 2019's project on musicBrainz was android based one.. But this time in the organization's idea list there's no mention of anything android related.. so should I consider it as a halt to android project on musicbrainz or should i pitch my idea regarding the android app??
2020-02-07 03809, 2020
yvanzo
Hi Somal, you should not consider this list as exhaustive, any project beyond this list will be considered.
2020-02-07 03824, 2020
Somal
Thanks yvanzo ! Could you tell me whether it would be a good idea to go through the last year's android app based project's repository and make changes and commit them and make a proposal based on that? As this is my first time in GSOC this would mean a great help
2020-02-07 03822, 2020
prabal has quit
2020-02-07 03812, 2020
yvanzo
Probably, you might want to check with amCap1712, I don’t know the exact current status and potential future plans.
2020-02-07 03839, 2020
amCap1712
Hi Somal, Yes you can surely do that. I worked on the app last year so you can reach out to me for any queries.
2020-02-07 03852, 2020
Somal
Hi amCap1712 ! I will start working on it thn..thanks for your gesture!
This is the structure of `edit.display_data.attributes`. I am confused as to what type it would be. According to WorkT this should be `+attributes: $ReadOnlyArray<WorkAttributeT>,`. but that wouldn't make sense as this is an object of `$ReadOnlyArray<WorkAttributeT>`. bitmap let me know what you think
2020-02-07 03859, 2020
bitmap
based on your link it'd be {+[string]: $ReadOnlyArray<WorkAttributeT>}
2020-02-07 03818, 2020
bitmap
keep in mind `edit.display_data` isn't a WorkT
2020-02-07 03827, 2020
bitmap
it's just whatever format build_display_data returns
2020-02-07 03843, 2020
Cyna
Yea, I dont know if its right but here is what I deduced ```type AttributeT = {
2020-02-07 03843, 2020
Cyna
[key: string]: $ReadOnlyArray<WorkAttributeT>,
2020-02-07 03843, 2020
Cyna
};```
2020-02-07 03830, 2020
bitmap
yes, that's the same as what I pasted above :)
2020-02-07 03853, 2020
bitmap
no need to assign it to a type alias though unless you need an alias outside of display_data
2020-02-07 03813, 2020
Cyna
Well here is another flow error when I try using attributes
2020-02-07 03816, 2020
Cyna
Cannot create `table` element because in property `children`: Either inexact children array [1] is incompatible with exact `React.Element` [2]. Or children array [1] is incompatible with `React.Portal` [3]. Or property `key` is missing in object literal [4] but exists in `React.Element` [2] in type argument `Yield` [5] of the return value of property `@@iterator`. Or object literal [4] is incompatible with `React.Portal`
2020-02-07 03816, 2020
Cyna
[3] in type argument `Yield` [5] of the return value of property `@@iterator`. Or property `@@iterator` is missing in object literal [4] but exists in `$Iterable` [6] in type argument `Yield` [5] of the return value of property `@@iterator`.
2020-02-07 03822, 2020
bitmap
I can't help with type errors without seeing the code