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(() => { -