You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Question:
How does information flow is taken into consideration with design system? For example, if as a user I post item A and then item B and I absolutely want item A to appear before item B. I’m not sure to see how that can work right now.
Answer from @bergie :
The ordering of items is for the Poly solver to handle. In the "unordered" scenario, the order of items doesn't matter, only the rhythms, and hence you can get() until you receive an item you can work with.
In ordered scenario you will eventually only get the first uneaten item with choice.get(), not any of the following ones. This will make sure that items are shown in the order provided.
However, you may want to mark the paths of sections that ate a starred item with "starred" so we can utilize these in the rhythm.
The text was updated successfully, but these errors were encountered:
Question:
How does information flow is taken into consideration with design system? For example, if as a user I post item A and then item B and I absolutely want item A to appear before item B. I’m not sure to see how that can work right now.
Answer from @bergie :
The ordering of items is for the Poly solver to handle. In the "unordered" scenario, the order of items doesn't matter, only the rhythms, and hence you can get() until you receive an item you can work with.
In ordered scenario you will eventually only get the first uneaten item with choice.get(), not any of the following ones. This will make sure that items are shown in the order provided.
However, you may want to mark the paths of sections that ate a starred item with "starred" so we can utilize these in the rhythm.
The text was updated successfully, but these errors were encountered: