fixed: 一些小的细节改动

This commit is contained in:
ray_wuhao 2023-06-21 14:17:50 +08:00
parent 2845796e38
commit a82c042fe9
13 changed files with 61 additions and 58 deletions

View File

@ -56,7 +56,6 @@ module.exports = {
], ],
'accessor-pairs': 2, // 强制同时存在 `get` 与 `set` 'accessor-pairs': 2, // 强制同时存在 `get` 与 `set`
'constructor-super': 0, // 强制子类构造函数中使用 `super` 调用父类的构造函数 'constructor-super': 0, // 强制子类构造函数中使用 `super` 调用父类的构造函数
curly: [2, 'all'], // `if`、`else` 强制使用 `{}` 包裹
'default-case': 2, // `switch` 中强制含有 `default` 'default-case': 2, // `switch` 中强制含有 `default`
eqeqeq: [2, 'allow-null'], // 强制使用严格判断 `===` eqeqeq: [2, 'allow-null'], // 强制使用严格判断 `===`
'no-alert': 0, // 禁止使用 `alert`、`confirm` 'no-alert': 0, // 禁止使用 `alert`、`confirm`
@ -113,6 +112,7 @@ module.exports = {
'use-isnan': 2, // 强制使用 isNaN 判断 NaN 'use-isnan': 2, // 强制使用 isNaN 判断 NaN
'no-multi-assign': 2, // 禁止连续声明变量 'no-multi-assign': 2, // 禁止连续声明变量
'prefer-arrow-callback': 2, // 强制使用箭头函数作为回调 'prefer-arrow-callback': 2, // 强制使用箭头函数作为回调
curly: ['error', 'all'],
'vue/multi-word-component-names': [ 'vue/multi-word-component-names': [
'error', 'error',
{ {
@ -166,5 +166,21 @@ module.exports = {
}, },
], ],
'vue/no-unused-refs': ['error'], 'vue/no-unused-refs': ['error'],
'vue/prop-name-casing': ['error', 'camelCase'],
'vue/component-options-name-casing': ['error', 'camelCase'],
'vue/attribute-hyphenation': [
'error',
'never',
{
ignore: [],
},
],
'vue/no-restricted-static-attribute': [
'error',
{
key: 'key',
message: 'Disallow using key as a custom attribute',
},
],
}, },
} }

View File

@ -84,8 +84,6 @@ const UnlockScreen = defineComponent({
}) })
} }
autoFouceInput(inputInstRef)
onBeforeUnmount(() => { onBeforeUnmount(() => {
clearInterval(dayInterval) clearInterval(dayInterval)
clearInterval(yearInterval) clearInterval(yearInterval)

View File

@ -41,7 +41,7 @@ const AppLockScreen = defineComponent({
return ( return (
<NModal <NModal
v-model:show={this.lockScreenSwitch} v-model:show={this.lockScreenSwitch}
transform-origin="center" transformOrigin="center"
show show
maskClosable={false} maskClosable={false}
closeOnEsc={false} closeOnEsc={false}

View File

@ -11,8 +11,9 @@
fill: currentColor; fill: currentColor;
transform: translateZ(0); transform: translateZ(0);
opacity: var(--ray-icon-depth); opacity: var(--ray-icon-depth);
cursor: var(--ray-icon-cursor);
& svg[rayIconAttribute="ray-icon"] { & svg[RayIconAttribute="ray-icon"] {
width: var(--ray-icon-width); width: var(--ray-icon-width);
height: var(--ray-icon-height); height: var(--ray-icon-height);
} }

View File

@ -48,10 +48,10 @@ const RayIcon = defineComponent({
type: Number, type: Number,
default: 1, default: 1,
}, },
cursorPointer: { cursor: {
/** 是否启用小手鼠标类型 */ /** 鼠标指针样式 */
type: Boolean, type: String,
default: false, default: 'default',
}, },
}, },
emits: ['click'], emits: ['click'],
@ -69,10 +69,7 @@ const RayIcon = defineComponent({
? props.height + 'px' ? props.height + 'px'
: props.size + 'px', : props.size + 'px',
'--ray-icon-depth': props.depth, '--ray-icon-depth': props.depth,
} '--ray-icon-cursor': props.cursor,
if (props.cursorPointer) {
cssVar['cursor'] = 'pointer'
} }
return cssVar return cssVar
@ -97,7 +94,7 @@ const RayIcon = defineComponent({
onClick={this.handleClick.bind(this)} onClick={this.handleClick.bind(this)}
> >
<svg <svg
{...({ rayIconAttribute: 'ray-icon', ariaHidden: true } as object)} {...({ RayIconAttribute: 'ray-icon', ariaHidden: true } as object)}
> >
<use {...{ 'xlink:href': this.symbolId }} fill={this.modelColor} /> <use {...{ 'xlink:href': this.symbolId }} fill={this.modelColor} />
</svg> </svg>

View File

@ -1,4 +1,4 @@
.ray-tooltip-text__icon { .tooltip-text__icon {
cursor: pointer; cursor: pointer;
outline: none; outline: none;
border: none; border: none;

View File

@ -16,8 +16,8 @@ import RayIcon from '@/components/RayIcon/index'
import { tooltipProps } from 'naive-ui' import { tooltipProps } from 'naive-ui'
const RayTooltipIcon = defineComponent({ const TooltipIcon = defineComponent({
name: 'RayTooltipIcon', name: 'TooltipIcon',
props: { props: {
...tooltipProps, ...tooltipProps,
iconName: { iconName: {
@ -38,7 +38,6 @@ const RayTooltipIcon = defineComponent({
const handleClick = (e?: MouseEvent) => { const handleClick = (e?: MouseEvent) => {
emit('click', e) emit('click', e)
} }
return { return {
handleClick, handleClick,
} }
@ -51,7 +50,7 @@ const RayTooltipIcon = defineComponent({
<RayIcon <RayIcon
name={this.iconName} name={this.iconName}
size="18" size="18"
customClassName={`ray-tooltip-text__icon ${this.customClassName}`} customClassName={`tooltip-text__icon ${this.customClassName}`}
onClick={this.handleClick.bind(this)} onClick={this.handleClick.bind(this)}
/> />
), ),
@ -62,4 +61,4 @@ const RayTooltipIcon = defineComponent({
}, },
}) })
export default RayTooltipIcon export default TooltipIcon

View File

@ -11,15 +11,16 @@
/** /**
* *
* 使 RayTooltipIcon , * , ...
* *
* ,
*/ */
import './index.scss' import './index.scss'
import { NLayoutHeader, NSpace, NTooltip, NDropdown } from 'naive-ui' import { NLayoutHeader, NSpace, NTooltip, NDropdown } from 'naive-ui'
import RayIcon from '@/components/RayIcon/index' import RayIcon from '@/components/RayIcon/index'
import RayTooltipIcon from '@/components/RayTooltipIcon/index' import TootipIcon from '@/layout/components/SiderBar/components/TooltipIcon/index'
import SettingDrawer from './components/SettingDrawer/index' import SettingDrawer from './components/SettingDrawer/index'
import Breadcrumb from './components/Breadcrumb/index' import Breadcrumb from './components/Breadcrumb/index'
import GlobalSeach from './components/GlobalSeach/index' import GlobalSeach from './components/GlobalSeach/index'
@ -35,13 +36,6 @@ import { APP_CATCH_KEY } from '@/appConfig/appConfig'
import type { IconEventMapOptions, IconEventMap } from './type' import type { IconEventMapOptions, IconEventMap } from './type'
/**
*
* , ...
*
* ,
*/
const SiderBar = defineComponent({ const SiderBar = defineComponent({
name: 'SiderBar', name: 'SiderBar',
setup() { setup() {
@ -130,8 +124,6 @@ const SiderBar = defineComponent({
iconEventMap[key]?.() iconEventMap[key]?.()
} }
// expose({})
return { return {
leftIconOptions, leftIconOptions,
rightTooltipIconOptions, rightTooltipIconOptions,
@ -183,7 +175,7 @@ const SiderBar = defineComponent({
itemStyle={this.spaceItemStyle} itemStyle={this.spaceItemStyle}
> >
{this.rightTooltipIconOptions.map((curr) => ( {this.rightTooltipIconOptions.map((curr) => (
<RayTooltipIcon <TootipIcon
iconName={curr.name} iconName={curr.name}
tooltipText={curr.tooltip} tooltipText={curr.tooltip}
onClick={this.handleIconClick.bind(this, curr.name)} onClick={this.handleIconClick.bind(this, curr.name)}

View File

@ -12,7 +12,7 @@
#### 注意 #### 注意
> 该项目语言包使用 json 格式作为语言包管理格式 > 该项目语言包使用 json 格式作为语言包管理格式,为了配合 `@intlify/unplugin-vue-i18n/vite` 插件,故而采用 json。
#### 拓展方法 #### 拓展方法
@ -22,7 +22,7 @@
### helper 文件说明 ### helper 文件说明
- `getAppLocales` 获取系统所有语言包 - `getAppLocales` 获取系统所有语言包(该方法强制依赖 LOCAL_OPTIONS key 配置意味着你在配置语言包的时候key 必须与 `src/locales/lang/xxx.ts` 一一对应匹配)
- `naiveLocales` 获取 `naive-ui` 组件库对应语言包文件 - `naiveLocales` 获取 `naive-ui` 组件库对应语言包文件
- `getDefaultLocal` 获取系统当前默认语言包 - `getDefaultLocal` 获取系统当前默认语言包

View File

@ -16,11 +16,11 @@ export const useSetting = defineStore(
const { const {
appPrimaryColor: { primaryColor }, appPrimaryColor: { primaryColor },
} = __APP_CFG__ // 默认主题色 } = __APP_CFG__ // 默认主题色
const { t, locale } = useI18n() const { locale } = useI18n()
const { locale: dayjsLocal } = useDayjs() const { locale: dayjsLocal } = useDayjs()
const settingState = reactive<SettingState>({ const settingState = reactive<SettingState>({
drawerPlacement: 'right' as NaiveDrawerPlacement, drawerPlacement: 'right',
primaryColorOverride: { primaryColorOverride: {
...APP_NAIVE_UI_THEME_OVERRIDES, ...APP_NAIVE_UI_THEME_OVERRIDES,
common: { common: {

View File

@ -67,7 +67,7 @@ const SSOSignin = defineComponent({
<RayIcon <RayIcon
name={curr.icon} name={curr.icon}
size="24" size="24"
cursorPointer cursor="pointer"
onClick={this.handleSSOSigninClick.bind(this, curr)} onClick={this.handleSSOSigninClick.bind(this, curr)}
/> />
), ),

View File

@ -16,7 +16,7 @@ import type { ViteSvgIconsPlugin } from 'vite-plugin-svg-icons'
* *
* 使 `svg` * 使 `svg`
*/ */
export const useSVGIcon = (options?: ViteSvgIconsPlugin) => { export const viteSVGIcon = (options?: ViteSvgIconsPlugin) => {
const defaultOptions = { const defaultOptions = {
iconDirs: [path.resolve(process.cwd(), 'src/icons')], iconDirs: [path.resolve(process.cwd(), 'src/icons')],
symbolId: 'icon-[dir]-[name]', symbolId: 'icon-[dir]-[name]',
@ -34,7 +34,7 @@ export const useSVGIcon = (options?: ViteSvgIconsPlugin) => {
* *
* *
*/ */
export const useAutoImport = async (imp: (ImportsMap | PresetName)[] = []) => export const viteAutoImport = async (imp: (ImportsMap | PresetName)[] = []) =>
autoImport({ autoImport({
include: [ include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx /\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
@ -53,7 +53,7 @@ export const useAutoImport = async (imp: (ImportsMap | PresetName)[] = []) =>
* *
* *
*/ */
export const useViteComponents = async ( export const viteComponents = async (
resolvers: (ComponentResolver | ComponentResolver[])[] = [], resolvers: (ComponentResolver | ComponentResolver[])[] = [],
types: TypeImport[] = [], types: TypeImport[] = [],
) => ) =>
@ -69,7 +69,7 @@ export const useViteComponents = async (
], ],
}) })
export const useVueI18nPlugin = () => export const viteVueI18nPlugin = () =>
vueI18nPlugin({ vueI18nPlugin({
runtimeOnly: true, runtimeOnly: true,
compositionOnly: true, compositionOnly: true,

View File

@ -2,21 +2,21 @@ import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue' import vue from '@vitejs/plugin-vue'
import { import {
useAutoImport, viteAutoImport,
useViteComponents, viteComponents,
useVueI18nPlugin, viteVueI18nPlugin,
useSVGIcon, viteSVGIcon,
} from './vite-plugin/index' } from './vite-plugin/index'
import ViteVueJSX from '@vitejs/plugin-vue-jsx' import viteVueJSX from '@vitejs/plugin-vue-jsx'
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite' import viteVeI18nPlugin from '@intlify/unplugin-vue-i18n/vite'
import ViteInspect from 'vite-plugin-inspect' import viteInspect from 'vite-plugin-inspect'
import viteSvgLoader from 'vite-svg-loader' import viteSvgLoader from 'vite-svg-loader'
import viteEslintPlugin from 'vite-plugin-eslint' import viteEslintPlugin from 'vite-plugin-eslint'
import vitePluginImp from 'vite-plugin-imp' // 按需打包工具 import vitePluginImp from 'vite-plugin-imp' // 按需打包工具
import { visualizer } from 'rollup-plugin-visualizer' // 打包体积分析工具 import { visualizer } from 'rollup-plugin-visualizer' // 打包体积分析工具
import viteCompression from 'vite-plugin-compression' // 压缩打包 import viteCompression from 'vite-plugin-compression' // 压缩打包
import { ViteEjsPlugin } from 'vite-plugin-ejs' import { ViteEjsPlugin as viteEjsPlugin } from 'vite-plugin-ejs'
import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' // 模板自动导入组件并且按需打包 import { NaiveUiResolver } from 'unplugin-vue-components/resolvers' // 模板自动导入组件并且按需打包
@ -68,11 +68,11 @@ export default defineConfig(async ({ mode }) => {
}, },
plugins: [ plugins: [
vue({ reactivityTransform: true }), vue({ reactivityTransform: true }),
ViteVueJSX(), viteVueJSX(),
title, title,
ViteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态) viteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态)
VueI18nPlugin(), viteVeI18nPlugin(),
await useAutoImport([ await viteAutoImport([
{ {
'naive-ui': [ 'naive-ui': [
'useDialog', 'useDialog',
@ -82,13 +82,13 @@ export default defineConfig(async ({ mode }) => {
], ],
}, },
]), ]),
await useViteComponents([NaiveUiResolver()]), await viteComponents([NaiveUiResolver()]),
viteCompression(), viteCompression(),
useVueI18nPlugin(), viteVueI18nPlugin(),
viteSvgLoader({ viteSvgLoader({
defaultImport: 'component', // 默认以 `componetn` 形式导入 `svg` defaultImport: 'component', // 默认以 `componetn` 形式导入 `svg`
}), }),
useSVGIcon(), viteSVGIcon(),
viteEslintPlugin({ viteEslintPlugin({
lintOnStart: true, // 构建时自动检查 lintOnStart: true, // 构建时自动检查
failOnWarning: true, // 如果含有警告则构建失败 failOnWarning: true, // 如果含有警告则构建失败
@ -128,7 +128,7 @@ export default defineConfig(async ({ mode }) => {
filename: 'visualizer.html', filename: 'visualizer.html',
open: mode === 'report' ? true : false, // 以默认服务器代理打开文件 open: mode === 'report' ? true : false, // 以默认服务器代理打开文件
}), }),
ViteEjsPlugin({ viteEjsPlugin({
preloadingConfig, preloadingConfig,
appPrimaryColor, appPrimaryColor,
}), }),