* refactor: kanban * refactor: gantt * refactor: map * refactor: calendar * refactor: compat * refactor: rename to createKanbanBlockUISchema * refactor(kanban): use x-use-component-props instead of useProps * refactor(Gantt): rename to createGanttBlockUISchema * refactor: use x-use-component-props instead of useProps * refactor: rename * refactor(Map): use x-use-component-props instead of useProps * refactor(Calendar): rename * refactor(Calendar): should not get collection on getting association in UISchema * refactor(Calendar): use x-use-component-props instead of useProps * chore: add comment * chore: fix unit test * fix: add scopes to fix e2e * fix(Calendar): add association property to CalendarBlockProvider decorator * test: add e2e for Calenndar
10 lines
328 B
TypeScript
10 lines
328 B
TypeScript
export const findNestedOption = (value: string[] | string, options = []) => {
|
|
if (typeof value === 'string') {
|
|
value = [value];
|
|
}
|
|
return value?.reduce((cur, v, index) => {
|
|
const matched = cur?.find((item) => item.value === v);
|
|
return index === value.length - 1 ? matched : matched?.children;
|
|
}, options);
|
|
};
|