diff --git a/.env b/.env index 1383c28..834ff3c 100644 --- a/.env +++ b/.env @@ -3,4 +3,5 @@ VUE_APP_ROUTES_KEY=admin.routes VUE_APP_PERMISSIONS_KEY=admin.permissions VUE_APP_ROLES_KEY=admin.roles VUE_APP_USER_KEY=admin.user +VUE_APP_SETTING_KEY=admin.setting VUE_APP_API_BASE_URL=http://api.iczer.com diff --git a/src/App.vue b/src/App.vue index 737f3e8..925dab1 100644 --- a/src/App.vue +++ b/src/App.vue @@ -37,15 +37,11 @@ export default { }, 'theme.mode': function(val) { let closeMessage = this.$message.loading(`您选择了主题模式 ${val}, 正在切换...`) - themeUtil.changeThemeColor(this.theme.color, val).then(() => { - setTimeout(closeMessage, 1000) - }) + themeUtil.changeThemeColor(this.theme.color, val).then(closeMessage) }, 'theme.color': function(val) { let closeMessage = this.$message.loading(`您选择了主题色 ${val}, 正在切换...`) - themeUtil.changeThemeColor(val, this.theme.mode).then(() => { - setTimeout(closeMessage, 1000) - }) + themeUtil.changeThemeColor(val, this.theme.mode).then(closeMessage) } }, computed: { diff --git a/src/components/setting/Setting.vue b/src/components/setting/Setting.vue index 21ceb42..cd84041 100644 --- a/src/components/setting/Setting.vue +++ b/src/components/setting/Setting.vue @@ -1,5 +1,9 @@ @@ -128,7 +133,8 @@ export default { components: {ImgCheckboxGroup, ImgCheckbox, ColorCheckboxGroup, ColorCheckbox, SettingItem}, data() { return { - copyConfig: 'Sorry, you have copied nothing O(∩_∩)O~' + copyConfig: 'Sorry, you have copied nothing O(∩_∩)O~', + isDev: process.env.NODE_ENV === 'development' } }, computed: { @@ -147,26 +153,48 @@ export default { return this.$el.parentNode }, copyCode () { + let config = this.extractConfig() + this.copyConfig = `// 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可 + module.exports = ${formatConfig(config)} + ` + let clipboard = new Clipboard('#copyBtn') + clipboard.on('success', () => { + this.$message.success(`复制成功,覆盖文件 src/config/config.js 然后重启项目即可生效`).then(() => { + const localConfig = localStorage.getItem(process.env.VUE_APP_SETTING_KEY) + if (localConfig) { + console.warn('检测到本地有历史保存的主题配置,想要要拷贝的配置代码生效,您可能需要先重置配置') + this.$message.warn('检测到本地有历史保存的主题配置,想要要拷贝的配置代码生效,您可能需要先重置配置', 5) + } + }) + clipboard.destroy() + }) + }, + saveSetting() { + const closeMessage = this.$message.loading('正在保存到本地,请稍后...', 0) + const config = this.extractConfig() + localStorage.setItem(process.env.VUE_APP_SETTING_KEY, JSON.stringify(config)) + setTimeout(closeMessage, 800) + }, + resetSetting() { + this.$confirm({ + title: '重置主题会刷新页面,当前页面内容不会保留,确认重置?', + onOk() { + localStorage.removeItem(process.env.VUE_APP_SETTING_KEY) + window.location.reload() + } + }) + }, + //提取配置 + extractConfig() { let config = {} - // 提取配置 let mySetting = this.$store.state.setting Object.keys(mySetting).forEach(key => { const dftValue = setting[key], myValue = mySetting[key] - // 只提取与默认配置不同的配置项 if (dftValue != undefined && !fastEqual(dftValue, myValue)) { config[key] = myValue } }) - this.copyConfig = '// 自定义配置,参考 ./default/setting.config.js,需要自定义的属性在这里配置即可\n' - this.copyConfig += 'module.exports = ' - this.copyConfig += formatConfig(config) - - let clipboard = new Clipboard('#copyBtn') - const _this = this - clipboard.on('success', function () { - _this.$message.success(`复制成功,覆盖文件 src/config/config.js 然后重启项目即可生效`) - clipboard.destroy() - }) + return config }, ...mapMutations('setting', ['setTheme', 'setLayout', 'setMultiPage', 'setWeekMode', 'setFixedSideBar', 'setFixedHeader', 'setAnimate', 'setHideSetting', 'setPageWidth']) diff --git a/src/components/setting/SettingItem.vue b/src/components/setting/SettingItem.vue index 7734bcc..81df320 100644 --- a/src/components/setting/SettingItem.vue +++ b/src/components/setting/SettingItem.vue @@ -1,6 +1,6 @@ diff --git a/src/components/setting/i18n.js b/src/components/setting/i18n.js index 85fb98d..faa9640 100644 --- a/src/components/setting/i18n.js +++ b/src/components/setting/i18n.js @@ -34,7 +34,9 @@ module.exports = { direction: '动画方向' }, alert: '拷贝配置后,直接覆盖文件 src/config/config.js 中的全部内容,然后重启即可。(注意:仅会拷贝与默认配置不同的项)', - copy: '拷贝配置' + copy: '拷贝配置', + save: '保存配置', + reset: '重置配置', }, HK: { theme: { @@ -69,7 +71,9 @@ module.exports = { direction: '動畫方向' }, alert: '拷貝配置后,直接覆蓋文件 src/config/config.js 中的全部內容,然後重啟即可。(注意:僅會拷貝與默認配置不同的項)', - copy: '拷貝配置' + copy: '拷貝配置', + save: '保存配置', + reset: '重置配置', }, US: { theme: { @@ -105,7 +109,9 @@ module.exports = { direction: 'Direction' }, alert: 'After copying the configuration code, directly cover all contents in the file src/config/config.js, then restart the server. (Note: only items that are different from the default configuration will be copied)', - copy: 'Copy Setting' + copy: 'Copy Setting', + save: 'Save', + reset: 'Reset', } } } diff --git a/src/store/modules/setting.js b/src/store/modules/setting.js index 3e15a67..d79c401 100644 --- a/src/store/modules/setting.js +++ b/src/store/modules/setting.js @@ -2,6 +2,9 @@ import config from '@/config' import {ADMIN} from '@/config/default' import {formatFullPath} from '@/utils/i18n' import {filterMenu} from '@/utils/authority-utils' +import {getLocalSetting} from '@/utils/themeUtil' + +const localSetting = getLocalSetting(true) export default { namespaced: true, @@ -13,6 +16,7 @@ export default { menuData: [], activatedFirst: undefined, ...config, + ...localSetting }, getters: { menuData(state, getters, rootState) { diff --git a/src/utils/themeUtil.js b/src/utils/themeUtil.js index 2ef0d8c..22d8043 100644 --- a/src/utils/themeUtil.js +++ b/src/utils/themeUtil.js @@ -3,64 +3,101 @@ const {theme} = require('../config') const {getMenuColors, getAntdColors, getThemeToggleColors, getFunctionalColors} = require('../utils/colors') const {ANTD} = require('../config/default') -module.exports = { - getThemeColors(color, $theme) { - const _color = color || theme.color - const mode = $theme || theme.mode - const replaceColors = getThemeToggleColors(_color, mode) - const themeColors = [ - ...replaceColors.mainColors, - ...replaceColors.subColors, - ...replaceColors.menuColors, - ...replaceColors.contentColors, - ...replaceColors.rgbColors, - ...replaceColors.functionalColors.success, - ...replaceColors.functionalColors.warning, - ...replaceColors.functionalColors.error, - ] - return themeColors - }, - changeThemeColor (newColor, $theme) { - let promise = client.changer.changeColor({newColors: this.getThemeColors(newColor, $theme)}) - return promise - }, - modifyVars(color) { - let _color = color || theme.color - const palettes = getAntdColors(_color, theme.mode) - const menuColors = getMenuColors(_color, theme.mode) - const {success, warning, error} = getFunctionalColors(theme.mode) - const primary = palettes[5] - return { - 'primary-color': primary, - 'primary-1': palettes[0], - 'primary-2': palettes[1], - 'primary-3': palettes[2], - 'primary-4': palettes[3], - 'primary-5': palettes[4], - 'primary-6': palettes[5], - 'primary-7': palettes[6], - 'primary-8': palettes[7], - 'primary-9': palettes[8], - 'primary-10': palettes[9], - 'info-color': primary, - 'success-color': success[5], - 'warning-color': warning[5], - 'error-color': error[5], - 'alert-info-bg-color': palettes[0], - 'alert-info-border-color': palettes[2], - 'alert-success-bg-color': success[0], - 'alert-success-border-color': success[2], - 'alert-warning-bg-color': warning[0], - 'alert-warning-border-color': warning[2], - 'alert-error-bg-color': error[0], - 'alert-error-border-color': error[2], - 'processing-color': primary, - 'menu-dark-submenu-bg': menuColors[0], - 'layout-header-background': menuColors[1], - 'layout-trigger-background': menuColors[2], - 'btn-danger-bg': error[4], - 'btn-danger-border': error[4], - ...ANTD.theme[theme.mode] - } +function getThemeColors(color, $theme) { + const _color = color || theme.color + const mode = $theme || theme.mode + const replaceColors = getThemeToggleColors(_color, mode) + const themeColors = [ + ...replaceColors.mainColors, + ...replaceColors.subColors, + ...replaceColors.menuColors, + ...replaceColors.contentColors, + ...replaceColors.rgbColors, + ...replaceColors.functionalColors.success, + ...replaceColors.functionalColors.warning, + ...replaceColors.functionalColors.error, + ] + return themeColors +} + +function changeThemeColor(newColor, $theme) { + let promise = client.changer.changeColor({newColors: getThemeColors(newColor, $theme)}) + return promise +} + +function modifyVars(color) { + let _color = color || theme.color + const palettes = getAntdColors(_color, theme.mode) + const menuColors = getMenuColors(_color, theme.mode) + const {success, warning, error} = getFunctionalColors(theme.mode) + const primary = palettes[5] + return { + 'primary-color': primary, + 'primary-1': palettes[0], + 'primary-2': palettes[1], + 'primary-3': palettes[2], + 'primary-4': palettes[3], + 'primary-5': palettes[4], + 'primary-6': palettes[5], + 'primary-7': palettes[6], + 'primary-8': palettes[7], + 'primary-9': palettes[8], + 'primary-10': palettes[9], + 'info-color': primary, + 'success-color': success[5], + 'warning-color': warning[5], + 'error-color': error[5], + 'alert-info-bg-color': palettes[0], + 'alert-info-border-color': palettes[2], + 'alert-success-bg-color': success[0], + 'alert-success-border-color': success[2], + 'alert-warning-bg-color': warning[0], + 'alert-warning-border-color': warning[2], + 'alert-error-bg-color': error[0], + 'alert-error-border-color': error[2], + 'processing-color': primary, + 'menu-dark-submenu-bg': menuColors[0], + 'layout-header-background': menuColors[1], + 'layout-trigger-background': menuColors[2], + 'btn-danger-bg': error[4], + 'btn-danger-border': error[4], + ...ANTD.theme[theme.mode] } } + +function loadLocalTheme(localSetting) { + if (localSetting) { + let {color, mode} = localSetting.theme + color = color || theme.color + mode = mode || theme.mode + changeThemeColor(color, mode) + } +} + +/** + * 获取本地保存的配置 + * @param load {boolean} 是否加载配置中的主题 + * @returns {Object} + */ +function getLocalSetting(loadTheme) { + let localSetting = {} + try { + const localSettingStr = localStorage.getItem(process.env.VUE_APP_SETTING_KEY) + localSetting = JSON.parse(localSettingStr) + } catch (e) { + console.error(e) + } + if (loadTheme) { + console.log(localSetting) + loadLocalTheme(localSetting) + } + return localSetting +} + +module.exports = { + getThemeColors, + changeThemeColor, + modifyVars, + loadLocalTheme, + getLocalSetting +}