Nice component, we are working internally on something same, but for Kotlin.Js + React (nothing to show yet), but i have one question:
How to solve a problem when same entities have different fields, for example: List of members of a chat should display avatar, name and username, but viewing profile usually use much much more data to display. How to merge them? How to keep fields in sync and not to download everything in all requests. For example, loading all members can be slow when fetching full user profiles and should be avoided.
Comments
Nice component, we are working internally on something same, but for Kotlin.Js + React (nothing to show yet), but i have one question:
How to solve a problem when same entities have different fields, for example: List of members of a chat should display avatar, name and username, but viewing profile usually use much much more data to display. How to merge them? How to keep fields in sync and not to download everything in all requests. For example, loading all members can be slow when fetching full user profiles and should be avoided.