From 20232a5d7cf1ffbaca3cecc6b5d69d33a45da72d Mon Sep 17 00:00:00 2001 From: rookie4show Date: Mon, 17 Mar 2025 18:30:34 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=82=E6=A0=B9=E6=8D=AEpinia=E8=B0=83?= =?UTF-8?q?=E6=95=B4toolbar=E5=92=8CprojecExplorer=202.=E5=88=A0=E9=99=A4?= =?UTF-8?q?=E6=8C=89=E9=92=AE=E5=A2=9E=E5=8A=A0=E7=A1=AE=E8=AE=A4=EF=BC=8C?= =?UTF-8?q?=E7=A6=81=E6=AD=A2=E5=88=A0=E9=99=A4=E6=9C=80=E5=90=8E=E4=B8=80?= =?UTF-8?q?=E4=B8=AA=E5=85=83=E7=B4=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 1 + src/App.vue | 54 +------------------------- src/components/ProjectExplorer.vue | 7 +++- src/components/Toolbar.vue | 61 ++++++++++++++++++------------ src/components/Yys.vue | 54 ++++++++++++++++++++++++-- src/data/updateLog.json | 18 +++++++++ 6 files changed, 114 insertions(+), 81 deletions(-) create mode 100644 src/data/updateLog.json diff --git a/.gitignore b/.gitignore index d51dd05..891cb3d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ /node_modules /.idea /dist +/dist.zip diff --git a/src/App.vue b/src/App.vue index a8b7b97..b4c332d 100644 --- a/src/App.vue +++ b/src/App.vue @@ -21,51 +21,6 @@ const onResizing = (x, y, width, height) => { height.value = height; }; -const handleExport = () => { - const dataStr = JSON.stringify(filesStore.fileList, null, 2); - const blob = new Blob([dataStr], { type: 'application/json;charset=utf-8' }); - const url = URL.createObjectURL(blob); - const link = document.createElement('a'); - link.href = url; - link.download = 'files.json'; - link.click(); - URL.revokeObjectURL(url); -}; - -const onHandleInport = (file) => { - const reader = new FileReader(); - reader.onload = (e) => { - try { - const data = JSON.parse(e.target.result as string); - if (data[0].visible === true) { - // 新版本格式:直接替换 fileList - filesStore.$patch({ fileList: data }); - } else { - // 旧版本格式:仅包含 groups 数组 - const newFile = { - label: `File ${filesStore.fileList.length + 1}`, - name: String(filesStore.fileList.length + 1), - visible: true, - groups: data - }; - filesStore.addFile(newFile); - } - } catch (error) { - console.error('Failed to import file', error); - } - }; - reader.readAsText(file); -}; - -// const onHandleInport = (file) => { -// -// handleImport(file); -// }; - -const onHandleExport = () => { - handleExport(); -}; - const element = ref({ x: 400, y: 20, @@ -74,11 +29,6 @@ const element = ref({ isActive: false, }); -const handleFileSelected = (fileId) => { - filesStore.setActiveFile(fileId); - filesStore.setVisible(fileId, true); -}; - const handleTabsEdit = ( targetName: String | undefined, action: 'remove' | 'add' @@ -129,12 +79,12 @@ const activeFileGroups = computed(() => { -