This commit is contained in:
ray_wuhao 2023-05-30 16:54:31 +08:00
parent d52f1de7a6
commit 55feba2052
23 changed files with 225 additions and 116 deletions

View File

@ -1,5 +1,12 @@
# CHANGE LOG
## 3.2.2
### 特征
- 移除 amfe-flexible 插件,改用为 postcss-px-to-viewport 作为适配插件
- 支持更多 appConfig 配置
## 3.2.1
### 特征

View File

@ -21,7 +21,6 @@
},
"dependencies": {
"@vueuse/core": "^9.1.0",
"amfe-flexible": "^2.2.1",
"axios": "^1.2.0",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.7",

View File

@ -15,7 +15,8 @@ import type {
LayoutSideBarLogo,
PreloadingConfig,
RootRoute,
} from '../types/cfg'
} from '@/types/cfg'
import type { MenuCollapsedConfig } from '@/types/appConfig'
/** 首屏加载信息配置 */
export const PRE_LOADING_CONFIG: PreloadingConfig = {
@ -51,3 +52,27 @@ export const SIDE_BAR_LOGO: LayoutSideBarLogo = {
url: '/dashboard',
jumpType: 'station',
}
/**
*
*
*
* MENU_COLLAPSED_WIDTH MENU_COLLAPSED_MODE width
*
* MENU_COLLAPSED_MODE:
* - transform: 边栏将只会移动它的位置而不会改变宽度
* - width: Sider
*
* MENU_COLLAPSED_ICON_SIZE
*
* MENU_COLLAPSED_INDENT
*/
export const MENU_COLLAPSED_CONFIG: MenuCollapsedConfig = {
MENU_COLLAPSED_WIDTH: 64,
MENU_COLLAPSED_MODE: 'width',
MENU_COLLAPSED_ICON_SIZE: 22,
MENU_COLLAPSED_INDENT: 24,
}
/** 是否启用菜单手风琴模式 */
export const MENU_ACCORDION = false

View File

@ -11,7 +11,8 @@
/** 系统颜色风格配置入口 */
import type { AppPrimaryColor } from '../types/cfg'
import type { AppPrimaryColor } from '@/types/cfg'
import type { GlobalThemeOverrides } from 'naive-ui'
/**
*
@ -36,3 +37,28 @@ export const APP_PRIMARY_COLOR: AppPrimaryColor = {
/** 主题辅助色(用于整体 hover、active 等之类颜色) */
primaryFadeColor: 'rgba(45, 140, 240, 0.3)',
}
/**
*
* naive-ui
* : <https://www.naiveui.com/zh-CN/dark/docs/customize-theme>
*
* :
* - APP_PRIMARY_COLOR common
*
* ,
* ```
* const themeOverrides: GlobalThemeOverrides = {
* common: {
* primaryColor: '#FF0000',
* },
* Button: {
* textColor: '#FF0000',
* },
* }
* ```
*
* , peers
* : <https://www.naiveui.com/zh-CN/dark/docs/customize-theme#%E4%BD%BF%E7%94%A8-peers-%E4%B8%BB%E9%A2%98%E5%8F%98%E9%87%8F>
*/
export const APP_NAIVE_UI_THEME_OVERRIDES: GlobalThemeOverrides = {}

View File

@ -11,14 +11,12 @@
/** 国际化相关配置 */
import { zhCN, dateZhCN } from 'naive-ui' // 导入 `naive ui` 中文包
/**
*
* ,
* key naiveLocales ,
*/
export const localOptions = [
export const LOCAL_OPTIONS = [
{
key: 'zh-CN',
label: '中文(简体)',
@ -31,32 +29,8 @@ export const localOptions = [
/**
*
* @param key
* @returns
*
*
* @remark . , (https://www.naiveui.com/zh-CN/dark/docs/i18n)
* @remark naive ui
*
* key localOptions
* LOCAL_OPTIONS key
*/
export const naiveLocales = (key: string) => {
switch (key) {
case 'zh-CN':
return {
locale: zhCN,
dateLocal: dateZhCN,
}
case 'en-US':
return {
locale: null,
dateLocal: null,
}
default:
return {
locale: zhCN,
dateLocal: dateZhCN,
}
}
}
export const SYSTEM_DEFAULT_LOCAL = 'zh-CN'

View File

@ -10,7 +10,7 @@ import {
} from 'naive-ui'
import { useSetting } from '@/store'
import { naiveLocales } from '@/appConfig/localConfig'
import { naiveLocales } from '@/locales/helper'
const GlobalProvider = defineComponent({
name: 'GlobalProvider',

View File

@ -4,6 +4,7 @@ import { NMenu, NLayoutSider, NEllipsis } from 'naive-ui'
import RayIcon from '@/components/RayIcon/index'
import { useMenu } from '@/store'
import { MENU_COLLAPSED_CONFIG, MENU_ACCORDION } from '@/appConfig/appConfig'
const LayoutMenu = defineComponent({
name: 'LayoutMenu',
@ -19,7 +20,6 @@ const LayoutMenu = defineComponent({
})
const modelMenuOptions = computed(() => menuStore.options)
const modelCollapsed = computed(() => menuStore.collapsed)
const collapsedWidth = 64
const {
layout: { sideBarLogo },
} = __APP_CFG__
@ -40,7 +40,6 @@ const LayoutMenu = defineComponent({
modelMenuOptions,
modelCollapsed,
collapsedMenu,
collapsedWidth,
sideBarLogo,
handleSideBarLogoClick,
}
@ -50,8 +49,8 @@ const LayoutMenu = defineComponent({
<NLayoutSider
bordered
showTrigger
collapseMode="width"
collapsedWidth={this.collapsedWidth}
collapseMode={MENU_COLLAPSED_CONFIG.MENU_COLLAPSED_MODE}
collapsedWidth={MENU_COLLAPSED_CONFIG.MENU_COLLAPSED_WIDTH}
onUpdateCollapsed={this.collapsedMenu.bind(this)}
nativeScrollbar={false}
>
@ -83,11 +82,12 @@ const LayoutMenu = defineComponent({
<NMenu
v-model:value={this.modelMenuKey}
options={this.modelMenuOptions as NaiveMenuOptions[]}
indent={24}
indent={MENU_COLLAPSED_CONFIG.MENU_COLLAPSED_INDENT}
collapsed={this.modelCollapsed}
collapsedIconSize={22}
collapsedWidth={this.collapsedWidth}
collapsedIconSize={MENU_COLLAPSED_CONFIG.MENU_COLLAPSED_ICON_SIZE}
collapsedWidth={MENU_COLLAPSED_CONFIG.MENU_COLLAPSED_WIDTH}
onUpdateValue={this.menuModelValueChange.bind(this)}
accordion={MENU_ACCORDION}
/>
</NLayoutSider>
)

View File

@ -69,7 +69,14 @@ const LockScreen = defineComponent({
/>
</NFormItem>
<NFormItem>
<NButton type="primary"></NButton>
<NButton
type="primary"
onClick={() => {
window.$message.info('功能开发中...')
}}
>
</NButton>
</NFormItem>
</NForm>
</div>

View File

@ -20,7 +20,7 @@ import GlobalSeach from './components/GlobalSeach/index'
import LockScreen from './components/LockScreen/index'
import { useSetting, useSignin } from '@/store'
import { localOptions } from '@/appConfig/localConfig'
import { LOCAL_OPTIONS } from '@/appConfig/localConfig'
import { useAvatarOptions } from './hook'
import { getCache } from '@/utils/cache'
import screenfull from 'screenfull'
@ -207,7 +207,7 @@ const SiderBar = defineComponent({
/>
))}
<NDropdown
options={localOptions}
options={LOCAL_OPTIONS}
onSelect={(key: string | number) =>
this.updateLocale(String(key))
}

34
src/locales/README.md Normal file
View File

@ -0,0 +1,34 @@
## 国际化入口
### 说明
- 该文件入口为整个项目的入口文件
- 二次封装 useI18n 方法、国际化文件入口、辅助方法等
- 国际化配置文件格式都应该按照当前已约定格式进行拓展与使用
### lang 文件入口说明
> 项目默认包含英文包与中文包,如果需要拓展应该按照当前格式进行拓展。每个文件识别为一个国际包语言包(会自动导入所有 json 文件作为语言包)。
#### 注意
> 该项目语言包使用 json 格式作为语言包管理格式
#### 拓展方法
- 配置语言包文件(文件名为语言包名称)
- 配置文件入口(使用 `mergeMessage` 方法进行自动合并处理)
- 语言包名称应该全局唯一
### helper 文件说明
- `getAppLocales` 获取系统所有语言包
- `naiveLocales` 获取 `naive-ui` 组件库对应语言包文件
- `getDefaultLocal` 获取系统当前默认语言包
### useI18n 文件说明
> 二次封装 `i18n`,应该避免使用自带 `useI18n` 方法,使用系统提供方法。
- 支持 setup 环境外使用 `t``value` 方法
- 其行为与官方方法一致

View File

@ -18,6 +18,9 @@
/* eslint-disable @typescript-eslint/no-explicit-any */
import { set } from 'lodash-es'
import { zhCN, dateZhCN } from 'naive-ui' // 导入 `naive ui` 中文包
import { getCache } from '@use-utils/cache'
import { SYSTEM_DEFAULT_LOCAL } from '@/appConfig/localConfig'
import type { Recordable } from '@/types/type-utils'
@ -51,14 +54,14 @@ export const mergeMessage = (langs: Record<string, any>, prefix = 'lang') => {
/** 获取所有语言 */
export const getAppLocales = async (
localOptions: {
LOCAL_OPTIONS: {
key: string
label: string
}[],
) => {
const message = {}
for (const curr of localOptions) {
for (const curr of LOCAL_OPTIONS) {
const msg = await import(`./lang/${curr.key}.ts`)
message[curr.key] = msg.default?.message ?? {}
@ -66,3 +69,50 @@ export const getAppLocales = async (
return message
}
/**
*
* @param key
* @returns
*
* @remark . , (https://www.naiveui.com/zh-CN/dark/docs/i18n)
* @remark naive ui
*
* key LOCAL_OPTIONS
*/
export const naiveLocales = (key: string) => {
switch (key) {
case 'zh-CN':
return {
locale: zhCN,
dateLocal: dateZhCN,
}
case 'en-US':
return {
locale: null,
dateLocal: null,
}
default:
return {
locale: zhCN,
dateLocal: dateZhCN,
}
}
}
/**
*
* @returns
*
* @remak , `main.ts` , `i18n`
*/
export const getDefaultLocal = () => {
const catchLanguage = getCache('localeLanguage', 'localStorage')
const locale: string =
catchLanguage !== 'no' ? catchLanguage : SYSTEM_DEFAULT_LOCAL
return locale
}

View File

@ -25,9 +25,9 @@
*/
import { createI18n } from 'vue-i18n'
import { localOptions } from '@/appConfig/localConfig'
import { LOCAL_OPTIONS } from '@/appConfig/localConfig'
import { getDefaultLocal } from '@/locales/helper'
import { getCache } from '@use-utils/cache'
import { getAppLocales } from '@/locales/helper'
import type { App } from 'vue'
@ -36,24 +36,10 @@ import type { I18n } from 'vue-i18n'
/** i18n 实例 */
export let i18n: I18n
/**
*
* @returns
*
* @remak , `main.ts` , `i18n`
*/
export const getDefaultLocal = () => {
const catchLanguage = getCache('localeLanguage', 'localStorage')
const locale: string = catchLanguage !== 'no' ? catchLanguage : 'zh-CN'
return locale
}
/** 创建 i18n 实例 */
const createI18nOptions = async () => {
const locale = getDefaultLocal()
const message = await getAppLocales(localOptions)
const message = await getAppLocales(LOCAL_OPTIONS)
const i18nInstance = createI18n({
legacy: false,

View File

@ -4,7 +4,6 @@ import type { App as AppType } from 'vue'
import '@/styles/base.scss'
// import 'amfe-flexible' // 如果为移动端项目, 解开该注释即可
import 'virtual:svg-icons-register' // `vite-plugin-svg-icons` 脚本, 如果不使用此插件注释即可
import App from './App'
@ -71,6 +70,7 @@ const setupWujieTemplate = async () => {
/**
*
* 使, `setupTemplate`
* ,
*
*
* ----------------------------------------------------------------
@ -83,5 +83,4 @@ const setupWujieTemplate = async () => {
* setupTemplate()
* ----------------------------------------------------------------
*/
window.__POWERED_BY_WUJIE__ ? setupWujieTemplate() : setupTemplate()

View File

@ -18,9 +18,9 @@
*/
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
export { useSetting } from './modules/setting' // import { useSetting } from '@/store' 即可使用
export { useSetting } from './modules/setting/index' // import { useSetting } from '@/store' 即可使用
export { useMenu } from './modules/menu/index'
export { useSignin } from './modules/signin'
export { useSignin } from './modules/signin/index'
import type { App } from 'vue'

View File

@ -29,6 +29,7 @@ import { getCache, setCache } from '@/utils/cache'
import { validRole } from '@/router/basic'
import { parse, matchMenuOption, updateDocumentTitle } from './helper'
import { useI18n } from '@/locales/useI18n'
import { MENU_COLLAPSED_CONFIG } from '@/appConfig/appConfig'
import type { MenuOption } from 'naive-ui'
import type { RouteMeta } from 'vue-router'
@ -192,7 +193,7 @@ export const useMenu = defineStore(
RayIcon,
{
name: meta!.icon as string,
size: 20,
size: MENU_COLLAPSED_CONFIG.MENU_COLLAPSED_ICON_SIZE,
},
{},
),

View File

@ -1,25 +1,12 @@
import { getDefaultLocal } from '@/locales/index'
import { getDefaultLocal } from '@/locales/helper'
import { setCache } from '@use-utils/cache'
import { set } from 'lodash-es'
import { addClass, removeClass, colorToRgba } from '@/utils/element'
import { useI18n } from '@/locales/useI18n'
import { APP_NAIVE_UI_THEME_OVERRIDES } from '@/appConfig/designConfig'
import type { ConditionalPick } from '@/types/type-utils'
import type { GlobalThemeOverrides } from 'naive-ui'
interface SettingState {
drawerPlacement: NaiveDrawerPlacement
primaryColorOverride: GlobalThemeOverrides
themeValue: boolean
reloadRouteSwitch: boolean
menuTagSwitch: boolean
spinSwitch: boolean
breadcrumbSwitch: boolean
localeLanguage: string
invertSwitch: boolean
lockScreenSwitch: boolean
lockScreenInputSwitch: boolean
}
import type { SettingState } from '@/store/modules/setting/type'
export const useSetting = defineStore(
'setting',
@ -32,6 +19,7 @@ export const useSetting = defineStore(
const settingState = reactive<SettingState>({
drawerPlacement: 'right' as NaiveDrawerPlacement,
primaryColorOverride: {
...APP_NAIVE_UI_THEME_OVERRIDES,
common: {
primaryColor: primaryColor, // 主题色
primaryColorHover: primaryColor,

View File

@ -0,0 +1,15 @@
import type { GlobalThemeOverrides } from 'naive-ui'
export interface SettingState {
drawerPlacement: NaiveDrawerPlacement
primaryColorOverride: GlobalThemeOverrides
themeValue: boolean
reloadRouteSwitch: boolean
menuTagSwitch: boolean
spinSwitch: boolean
breadcrumbSwitch: boolean
localeLanguage: string
invertSwitch: boolean
lockScreenSwitch: boolean
lockScreenInputSwitch: boolean
}

View File

@ -22,15 +22,7 @@
import { isEmpty } from 'lodash-es'
import { removeCache } from '@/utils/cache'
export interface SigninForm extends IUnknownObjectKey {
name: string
pwd: string
}
export interface SigninCallback extends IUnknownObjectKey {
role: string
name: string
}
import type { SigninForm, SigninCallback } from '@/store/modules/signin/type'
export const useSignin = defineStore(
'signin',

View File

@ -0,0 +1,9 @@
export interface SigninForm extends IUnknownObjectKey {
name: string
pwd: string
}
export interface SigninCallback extends IUnknownObjectKey {
role: string
name: string
}

8
src/types/appConfig.ts Normal file
View File

@ -0,0 +1,8 @@
export type CollapsedMode = 'transform' | 'width'
export interface MenuCollapsedConfig {
MENU_COLLAPSED_WIDTH: number
MENU_COLLAPSED_MODE: CollapsedMode
MENU_COLLAPSED_ICON_SIZE: number
MENU_COLLAPSED_INDENT: number
}

View File

@ -20,7 +20,7 @@ import RayLink from '@/components/RayLink/index'
import ThemeSwitch from '@/layout/components/SiderBar/components/SettingDrawer/components/ThemeSwitch/index'
import { useSetting } from '@/store'
import { localOptions } from '@/appConfig/localConfig'
import { LOCAL_OPTIONS } from '@/appConfig/localConfig'
import { useI18n } from '@/locales/useI18n'
const Login = defineComponent({
@ -81,7 +81,7 @@ const Login = defineComponent({
>
<ThemeSwitch />
<NDropdown
options={localOptions}
options={LOCAL_OPTIONS}
onSelect={(key) => this.updateLocale(key)}
>
<RayIcon

View File

@ -13,6 +13,7 @@
"lib": ["ESNext", "DOM", "es5", "es6", "dom.iterable", "es2022"],
"skipLibCheck": true,
"baseUrl": "./",
"rootDir": "./",
"paths": {
"@": ["src"],
"@/*": ["src/*"],
@ -29,6 +30,14 @@
"ignoreDeprecations": "5.0"
},
"include": [
"vite.config.ts",
"vite-plugin/index.ts",
"vite-plugin/type.ts",
"cfg.ts",
"package.json",
"vite-env.d.ts",
"src/appConfig/*.ts",
"src/types/cfg.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
@ -39,6 +48,5 @@
"src/*",
"components.d.ts",
"auto-imports.d.ts"
],
"references": [{ "path": "./tsconfig.node.json" }]
]
}

View File

@ -1,19 +0,0 @@
{
"compilerOptions": {
"composite": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true
},
"include": [
"vite.config.ts",
"vite-plugin/index.ts",
"vite-plugin/type.ts",
"cfg.ts",
"package.json",
"vite-env.d.ts",
"src/appConfig/*.ts",
"src/types/cfg.ts"
]
}