From 55bf797dcc730b37bc691ebab2b51ff9db8ed245 Mon Sep 17 00:00:00 2001 From: zs <zhousong@weben-smart.com> Date: 周二, 06 5月 2025 17:37:23 +0800 Subject: [PATCH] 修改代码样式 --- HIAWms/web/src/widgets/hook.ts | 17 +++++++++++++++++ 1 files changed, 17 insertions(+), 0 deletions(-) diff --git a/HIAWms/web/src/widgets/hook.ts b/HIAWms/web/src/widgets/hook.ts new file mode 100644 index 0000000..91060c0 --- /dev/null +++ b/HIAWms/web/src/widgets/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