From e9ea31b327eec2910cf6097986a4eb9404a91174 Mon Sep 17 00:00:00 2001 From: schangxiang@126.com <schangxiang@126.com> Date: 周三, 30 4月 2025 16:26:09 +0800 Subject: [PATCH] 22 --- HIAWms/web/src/hooks/hook.ts | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/HIAWms/web/src/hooks/hook.ts b/HIAWms/web/src/hooks/hook.ts new file mode 100644 index 0000000..91060c0 --- /dev/null +++ b/HIAWms/web/src/hooks/hook.ts @@ -0,0 +1,17 @@ +export const getEntityNames = ( + widgetsModules: Record< + string, + { + default: Record<string, any> + name: string + } + > +) => { + const entityNames: string[] = [] + Object.entries(widgetsModules).forEach(([path, fileInfo]) => { + if (fileInfo.default) { + entityNames.push(fileInfo.default?.name || fileInfo.name) + } + }) + return entityNames +} -- Gitblit v1.9.3