|
@@ -3,49 +3,39 @@ import { App } from "vue";
|
|
|
import Storage from "responsive-storage";
|
|
|
import { routerArrays } from "/@/layout/types";
|
|
|
|
|
|
+const nameSpace = "responsive-";
|
|
|
+
|
|
|
export const injectResponsiveStorage = (app: App, config: ServerConfigs) => {
|
|
|
const configObj = Object.assign(
|
|
|
{
|
|
|
// 国际化 默认中文zh
|
|
|
- locale: {
|
|
|
- type: Object,
|
|
|
- default: Storage.getData(undefined, "locale") ?? {
|
|
|
- locale: config.Locale ?? "zh"
|
|
|
- }
|
|
|
+ locale: Storage.getData("locale", nameSpace) ?? {
|
|
|
+ locale: config.Locale ?? "zh"
|
|
|
},
|
|
|
// layout模式以及主题
|
|
|
- layout: {
|
|
|
- type: Object,
|
|
|
- default: Storage.getData(undefined, "layout") ?? {
|
|
|
- layout: config.Layout ?? "vertical",
|
|
|
- theme: config.Theme ?? "default",
|
|
|
- darkMode: config.DarkMode ?? false,
|
|
|
- sidebarStatus: config.SidebarStatus ?? true,
|
|
|
- epThemeColor: config.EpThemeColor ?? "#409EFF"
|
|
|
- }
|
|
|
+ layout: Storage.getData("layout", nameSpace) ?? {
|
|
|
+ layout: config.Layout ?? "vertical",
|
|
|
+ theme: config.Theme ?? "default",
|
|
|
+ darkMode: config.DarkMode ?? false,
|
|
|
+ sidebarStatus: config.SidebarStatus ?? true,
|
|
|
+ epThemeColor: config.EpThemeColor ?? "#409EFF"
|
|
|
},
|
|
|
- configure: {
|
|
|
- type: Object,
|
|
|
- default: Storage.getData(undefined, "configure") ?? {
|
|
|
- grey: config.Grey ?? false,
|
|
|
- weak: config.Weak ?? false,
|
|
|
- hideTabs: config.HideTabs ?? false,
|
|
|
- showLogo: config.ShowLogo ?? true,
|
|
|
- showModel: config.ShowModel ?? "smart",
|
|
|
- multiTagsCache: config.MultiTagsCache ?? false
|
|
|
- }
|
|
|
+ configure: Storage.getData("configure", nameSpace) ?? {
|
|
|
+ grey: config.Grey ?? false,
|
|
|
+ weak: config.Weak ?? false,
|
|
|
+ hideTabs: config.HideTabs ?? false,
|
|
|
+ showLogo: config.ShowLogo ?? true,
|
|
|
+ showModel: config.ShowModel ?? "smart",
|
|
|
+ multiTagsCache: config.MultiTagsCache ?? false
|
|
|
}
|
|
|
},
|
|
|
config.MultiTagsCache
|
|
|
? {
|
|
|
// 默认显示首页tag
|
|
|
- tags: {
|
|
|
- type: Array,
|
|
|
- default: Storage.getData(undefined, "tags") ?? routerArrays
|
|
|
- }
|
|
|
+ tags: Storage.getData("tags", nameSpace) ?? routerArrays
|
|
|
}
|
|
|
: {}
|
|
|
);
|
|
|
|
|
|
- app.use(Storage, configObj);
|
|
|
+ app.use(Storage, { nameSpace, memory: configObj });
|
|
|
};
|