ydb-platform / ydb-embedded-ui

Apache License 2.0
28 stars 7 forks source link

tree items with many children hang browser #1014

Closed artemmufazalov closed 3 months ago

artemmufazalov commented 3 months ago

https://nda.ya.ru/t/D4Zkbcn176xy6F

Image

artemmufazalov commented 3 months ago

Previously all child items was dispatched to store in 1 dispatch: https://github.com/ydb-platform/ydb-embedded-ui/blob/6a3a5949ccccbe053e063276648ad4322ff9c063/src/containers/Tenant/Schema/SchemaTree/SchemaTree.tsx#L54

Currently, there is a dispatch for every child item: https://github.com/ydb-platform/ydb-embedded-ui/blob/main/src/store/reducers/schema/schema.ts#L84

Appeared after this PR: https://github.com/ydb-platform/ydb-embedded-ui/pull/948