feat: 添加全局大小设置

This commit is contained in:
郝先瑞
2022-02-20 00:13:13 +08:00
parent 3d06bd2afb
commit 4984da592c
4 changed files with 77 additions and 14 deletions

View File

@@ -1,21 +1,21 @@
import {AppState} from "@/store/interface";
import {Local} from "@/utils/storage";
import { store } from "@/store";
import { defineStore } from "pinia";
import {store} from "@/store";
import {defineStore} from "pinia";
export const useAppStore = defineStore({
id: "app",
state: ():AppState=>({
state: (): AppState => ({
device: 'desktop',
sidebar: {
opened: Local.get('sidebarStatus') ? !!+Local.get('sidebarStatus') : true,
withoutAnimation: false
},
language:'zh',
size:'medium'
language: 'zh',
size: Local.get('size')||'default'
}),
actions: {
toggleSidebar() {
toggleSidebar() {
this.sidebar.opened = !this.sidebar.opened
this.sidebar.withoutAnimation = false
if (this.sidebar.opened) {
@@ -24,16 +24,21 @@ export const useAppStore = defineStore({
Local.set('sidebarStatus', 0)
}
},
closeSideBar ( withoutAnimation:any) {
closeSideBar(withoutAnimation: any) {
Local.set('sidebarStatus', 0)
this.sidebar.opened = false
this.sidebar.withoutAnimation = withoutAnimation
},
toggleDevice( device:any) {
toggleDevice(device: string) {
this.device = device
},
setSize(size: string) {
this.size = size
Local.set('size', size)
}
}
})
export function useAppStoreHook() {
return useAppStore(store);
}

View File

@@ -2,7 +2,7 @@ import {defineStore} from "pinia";
import {store} from "@/store";
import {TagsViewState} from "@/store/interface";
const tagsViewStore = defineStore({
const useTagsViewStore = defineStore({
id: "tagsView",
state: (): TagsViewState => ({
visitedViews: [],
@@ -174,7 +174,7 @@ const tagsViewStore = defineStore({
})
export function tagsViewStoreHook() {
return tagsViewStore(store);
export function useTagsViewStoreHook() {
return useTagsViewStore(store);
}