From 8ead40457b8ed86d7726da10fc2a49fe07503193 Mon Sep 17 00:00:00 2001 From: chansee97 Date: Fri, 7 Jun 2024 07:22:39 +0800 Subject: [PATCH] chore: remove `arrayToTree` --- package.json | 1 - src/utils/array.ts | 30 ------------------------------ vite.config.ts | 2 +- 3 files changed, 1 insertion(+), 32 deletions(-) diff --git a/package.json b/package.json index 1f94280..df75dad 100644 --- a/package.json +++ b/package.json @@ -59,7 +59,6 @@ "colord": "^2.9.3", "echarts": "^5.5.0", "md-editor-v3": "^4.15.2", - "performant-array-to-tree": "^1.11.0", "pinia": "^2.1.7", "pinia-plugin-persist": "^1.0.0", "quill": "^2.0.2", diff --git a/src/utils/array.ts b/src/utils/array.ts index ae9dda2..c8c53a0 100644 --- a/src/utils/array.ts +++ b/src/utils/array.ts @@ -1,33 +1,3 @@ -// import { arrayToTree as _arrayToTree } from 'performant-array-to-tree' -// import { omit } from 'radash' - -// export function arrayToTree(data: any) { -// const rowTree = _arrayToTree(data, { -// parentId: 'pid', -// dataField: null, -// }) - -// const transform = (node: any) => { -// if (node.children.length > 0) { -// return ({ -// ...node, -// children: node.children.map(transform), -// }) -// } -// return omit(node, ['children']) -// } -// return rowTree.map(transform) -// } - -// interface ArrayItem extends Record { -// id: number -// pid: number | null -// } - -// interface TreeItem extends ArrayItem { -// children?: TreeItem[] -// } - export function arrayToTree(arr: any[]) { const res: any = [] const map = new Map() diff --git a/vite.config.ts b/vite.config.ts index 9186316..390340c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -28,7 +28,7 @@ export default defineConfig(({ mode }) => { reportCompressedSize: false, // 启用/禁用 gzip 压缩大小报告 }, optimizeDeps: { - include: ['echarts', 'md-editor-v3'], + include: ['echarts', 'md-editor-v3', 'quill'], }, } })