refactor: split store (#413)

This commit is contained in:
YangFong 2024-09-17 12:21:48 +08:00 committed by GitHub
parent 21d5259f35
commit ecb51c10f1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
8 changed files with 59 additions and 44 deletions

View File

@ -1,9 +1,10 @@
<script setup lang="ts"> <script setup lang="ts">
import { ElMessage, ElMessageBox } from 'element-plus' import { ElMessage, ElMessageBox } from 'element-plus'
import { useStore } from '@/stores' import { useDisplayStore, useStore } from '@/stores'
const store = useStore() const store = useStore()
const displayStore = useDisplayStore()
function editTabName() { function editTabName() {
ElMessageBox.prompt(`请输入新的方案名称`, `编辑方案名称`, { ElMessageBox.prompt(`请输入新的方案名称`, `编辑方案名称`, {
@ -67,7 +68,7 @@ function handleTabsEdit(targetName: string, action: string) {
<template> <template>
<transition enter-active-class="bounceInRight"> <transition enter-active-class="bounceInRight">
<el-col v-show="store.isShowCssEditor" :span="8" class="cssEditor-wrapper order-1 h-full flex flex-col border-l-1"> <el-col v-show="displayStore.isShowCssEditor" :span="8" class="cssEditor-wrapper order-1 h-full flex flex-col border-l-1">
<el-tabs <el-tabs
v-model="store.cssContentConfig.active" v-model="store.cssContentConfig.active"
type="border-card" type="border-card"

View File

@ -1,25 +1,28 @@
<script setup lang="ts"> <script setup lang="ts">
import { useStore } from '@/stores' import { TableIcon, UploadCloudIcon } from 'lucide-vue-next'
import {
MenubarContent,
MenubarItem,
MenubarMenu,
MenubarTrigger,
} from '@/components/ui/menubar'
import { useDisplayStore } from '@/stores'
const store = useStore() const { toggleShowInsertFormDialog, toggleShowUploadImgDialog } = useDisplayStore()
const { toggleShowInsertFormDialog, toggleShowUploadImgDialog } = store
</script> </script>
<template> <template>
<MenubarMenu> <MenubarMenu>
<MenubarTrigger> 编辑 </MenubarTrigger> <MenubarTrigger>
编辑
</MenubarTrigger>
<MenubarContent align="start"> <MenubarContent align="start">
<MenubarItem @click="toggleShowUploadImgDialog()"> <MenubarItem @click="toggleShowUploadImgDialog()">
<el-icon class="mr-2 h-4 w-4"> <UploadCloudIcon class="mr-2 h-4 w-4" />
<ElIconUpload />
</el-icon>
上传图片 上传图片
</MenubarItem> </MenubarItem>
<MenubarItem @click="toggleShowInsertFormDialog()"> <MenubarItem @click="toggleShowInsertFormDialog()">
<el-icon class="mr-2 h-4 w-4"> <TableIcon class="mr-2 h-4 w-4" />
<ElIconGrid />
</el-icon>
插入表格 插入表格
</MenubarItem> </MenubarItem>
</MenubarContent> </MenubarContent>

View File

@ -16,9 +16,10 @@ import {
legendOptions, legendOptions,
themeOptions, themeOptions,
} from '@/config' } from '@/config'
import { useStore } from '@/stores' import { useDisplayStore, useStore } from '@/stores'
const store = useStore() const store = useStore()
const { toggleShowCssEditor } = useDisplayStore()
const { const {
theme, theme,
@ -40,7 +41,6 @@ const {
codeBlockThemeChanged, codeBlockThemeChanged,
legendChanged, legendChanged,
macCodeBlockChanged, macCodeBlockChanged,
toggleShowCssEditor,
} = store } = store
const colorPicker = ref<HTMLElement & { show: () => void } | null>(null) const colorPicker = ref<HTMLElement & { show: () => void } | null>(null)

View File

@ -8,12 +8,13 @@ import {
DialogTitle, DialogTitle,
} from '@/components/ui/dialog' } from '@/components/ui/dialog'
import { useStore } from '@/stores' import { useDisplayStore, useStore } from '@/stores'
import { createTable } from '@/utils' import { createTable } from '@/utils'
const store = useStore() const store = useStore()
const displayStore = useDisplayStore()
const { toggleShowInsertFormDialog } = store const { toggleShowInsertFormDialog } = displayStore
const rowNum = ref(3) const rowNum = ref(3)
const colNum = ref(3) const colNum = ref(3)
@ -45,7 +46,7 @@ function onUpdate(val: boolean) {
</script> </script>
<template> <template>
<Dialog :open="store.isShowInsertFormDialog" @update:open="onUpdate"> <Dialog :open="displayStore.isShowInsertFormDialog" @update:open="onUpdate">
<DialogContent> <DialogContent>
<DialogHeader> <DialogHeader>
<DialogTitle>插入表格</DialogTitle> <DialogTitle>插入表格</DialogTitle>

View File

@ -7,11 +7,11 @@ import CodeMirror from 'codemirror'
import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog' import { Dialog, DialogContent, DialogHeader, DialogTitle } from '@/components/ui/dialog'
import { checkImage, removeLeft } from '@/utils' import { checkImage, removeLeft } from '@/utils'
import { useStore } from '@/stores' import { useDisplayStore } from '@/stores'
const emit = defineEmits([`uploadImage`]) const emit = defineEmits([`uploadImage`])
const store = useStore() const displayStore = useDisplayStore()
const formGitHub = ref({ const formGitHub = ref({
repo: ``, repo: ``,
@ -282,7 +282,7 @@ function uploadImage(params: { file: any }) {
</script> </script>
<template> <template>
<Dialog v-model:open="store.isShowUploadImgDialog"> <Dialog v-model:open="displayStore.isShowUploadImgDialog">
<DialogContent class="max-w-max"> <DialogContent class="max-w-max">
<DialogHeader> <DialogHeader>
<DialogTitle>本地上传</DialogTitle> <DialogTitle>本地上传</DialogTitle>

View File

@ -1,5 +1,5 @@
import { createApp } from 'vue' import { createApp } from 'vue'
import Store from './stores' import { createPinia } from 'pinia'
import ElementPlus from './element' import ElementPlus from './element'
import App from './App.vue' import App from './App.vue'
@ -22,7 +22,7 @@ import 'codemirror/addon/hint/css-hint'
const app = createApp(App) const app = createApp(App)
app.use(Store) app.use(createPinia())
app.use(ElementPlus) app.use(ElementPlus)
app.mount(`#app`) app.mount(`#app`)

View File

@ -1,5 +1,5 @@
import { computed, markRaw, onMounted, ref, toRaw, watch } from 'vue' import { computed, markRaw, onMounted, ref, toRaw, watch } from 'vue'
import { createPinia, defineStore } from 'pinia' import { defineStore } from 'pinia'
import { marked } from 'marked' import { marked } from 'marked'
import CodeMirror from 'codemirror' import CodeMirror from 'codemirror'
import { useDark, useStorage, useToggle } from '@vueuse/core' import { useDark, useStorage, useToggle } from '@vueuse/core'
@ -379,23 +379,7 @@ export const useStore = defineStore(`store`, () => {
}) })
} }
const isShowCssEditor = ref(false)
const toggleShowCssEditor = useToggle(isShowCssEditor)
const isShowInsertFormDialog = ref(false)
const toggleShowInsertFormDialog = useToggle(isShowInsertFormDialog)
const isShowUploadImgDialog = ref(false)
const toggleShowUploadImgDialog = useToggle(isShowUploadImgDialog)
return { return {
isShowCssEditor,
toggleShowCssEditor,
isShowInsertFormDialog,
toggleShowInsertFormDialog,
isShowUploadImgDialog,
toggleShowUploadImgDialog,
isDark, isDark,
toggleDark, toggleDark,
@ -444,4 +428,25 @@ export const useStore = defineStore(`store`, () => {
} }
}) })
export default createPinia() export const useDisplayStore = defineStore(`display`, () => {
// 是否展示 CSS 编辑器
const isShowCssEditor = ref(false)
const toggleShowCssEditor = useToggle(isShowCssEditor)
// 是否展示插入表格对话框
const isShowInsertFormDialog = ref(false)
const toggleShowInsertFormDialog = useToggle(isShowInsertFormDialog)
// 是否展示上传图片对话框
const isShowUploadImgDialog = ref(false)
const toggleShowUploadImgDialog = useToggle(isShowUploadImgDialog)
return {
isShowCssEditor,
toggleShowCssEditor,
isShowInsertFormDialog,
toggleShowInsertFormDialog,
isShowUploadImgDialog,
toggleShowUploadImgDialog,
}
})

View File

@ -6,7 +6,7 @@ import { ElCol, ElMessage } from 'element-plus'
import CodeMirror from 'codemirror' import CodeMirror from 'codemirror'
import fileApi from '@/utils/file' import fileApi from '@/utils/file'
import { useStore } from '@/stores' import { useDisplayStore, useStore } from '@/stores'
import EditorHeader from '@/components/CodemirrorEditor/EditorHeader/index.vue' import EditorHeader from '@/components/CodemirrorEditor/EditorHeader/index.vue'
import InsertFormDialog from '@/components/CodemirrorEditor/InsertFormDialog.vue' import InsertFormDialog from '@/components/CodemirrorEditor/InsertFormDialog.vue'
@ -32,7 +32,9 @@ import {
} from '@/utils' } from '@/utils'
const store = useStore() const store = useStore()
const { isDark, output, editor, editorContent, isShowCssEditor } = storeToRefs(store) const displayStore = useDisplayStore()
const { isDark, output, editor, editorContent } = storeToRefs(store)
const { isShowCssEditor } = storeToRefs(displayStore)
const { const {
editorRefresh, editorRefresh,
@ -41,9 +43,12 @@ const {
formatContent, formatContent,
importMarkdownContent, importMarkdownContent,
resetStyleConfirm, resetStyleConfirm,
} = store
const {
toggleShowInsertFormDialog, toggleShowInsertFormDialog,
toggleShowUploadImgDialog, toggleShowUploadImgDialog,
} = store } = displayStore
const isImgLoading = ref(false) const isImgLoading = ref(false)
const timeout = ref<NodeJS.Timeout>() const timeout = ref<NodeJS.Timeout>()