version: v4.2.5

This commit is contained in:
XiaoDaiGua-Ray 2023-10-22 00:11:20 +08:00
parent e81bb3f9a5
commit 9e3f199d21
30 changed files with 209 additions and 56 deletions

View File

@ -13,6 +13,6 @@ visualizer.html
.env.* .env.*
src/locales/lang src/locales/lang
.depcheckrc .depcheckrc
src/components/RChart/theme src/echart-themes/**/*.json
*.md *.md
src/icons/*.svg src/icons/*.svg

View File

@ -1,5 +1,21 @@
# CHANGE LOG # CHANGE LOG
## 4.2.5
### Feats
- 同步更新 vue 版本至 v3.3.6
- RChart 组件相关改动
- RChart 主题配置提取至 src/echart-themes 包中管理。添加方式和规则不变
- 调整 RChart setupChartTheme 运行时机,现在不会重复运行该方法获取主题
- 新增 AppWatermarkProvider 组件与 appConifg APP_WATERMARK_CONFIG 相关配置项
- 新增 AppMenu 激活、hover 样式
- 新增 RMoreDropdown 组件,基于 NDropDown默认以 `...` 展示下拉,允许自定义图标
### Fixes
- 紧急修复构建 cdn vue-demi 依赖丢失问题
## 4.2.4 ## 4.2.4
### Feats ### Feats

View File

@ -41,8 +41,9 @@
#pre-loading-animation #pre-loading-animation
.pre-loading-animation__wrapper .pre-loading-animation__wrapper
.pre-loading-animation__wrapper-title { .pre-loading-animation__wrapper-title {
font-size: 30px; font-size: 32px;
padding-bottom: 48px; padding-bottom: 48px;
font-weight: 500;
} }
.pre-loading-animation__wrapper-loading { .pre-loading-animation__wrapper-loading {

View File

@ -1,7 +1,7 @@
{ {
"name": "ray-template", "name": "ray-template",
"private": false, "private": false,
"version": "4.2.4", "version": "4.2.5",
"type": "module", "type": "module",
"engines": { "engines": {
"node": ">=16.0.0", "node": ">=16.0.0",
@ -38,7 +38,7 @@
"pinia": "^2.1.4", "pinia": "^2.1.4",
"pinia-plugin-persistedstate": "^3.1.0", "pinia-plugin-persistedstate": "^3.1.0",
"print-js": "^1.6.0", "print-js": "^1.6.0",
"vue": "^3.3.4", "vue": "^3.3.6",
"vue-hooks-plus": "1.8.5", "vue-hooks-plus": "1.8.5",
"vue-i18n": "^9.2.2", "vue-i18n": "^9.2.2",
"vue-router": "^4.2.4", "vue-router": "^4.2.4",

View File

@ -2,16 +2,17 @@ import { RouterView } from 'vue-router'
import AppNaiveGlobalProvider from '@/app-components/provider/AppNaiveGlobalProvider/index' import AppNaiveGlobalProvider from '@/app-components/provider/AppNaiveGlobalProvider/index'
import AppStyleProvider from '@/app-components/provider/AppStyleProvider/index' import AppStyleProvider from '@/app-components/provider/AppStyleProvider/index'
import AppLockScreen from '@/app-components/app/AppLockScreen/index' import AppLockScreen from '@/app-components/app/AppLockScreen/index'
import AppWatermarkProvider from '@/app-components/provider/AppWatermarkProvider/index'
import AppGlobalSpin from '@/spin/index' import AppGlobalSpin from '@/spin/index'
const App = defineComponent({ export default defineComponent({
name: 'App', name: 'App',
render() { render() {
return ( return (
<AppNaiveGlobalProvider> <AppNaiveGlobalProvider>
<AppLockScreen /> <AppLockScreen />
<AppStyleProvider /> <AppStyleProvider />
<AppWatermarkProvider />
<AppGlobalSpin> <AppGlobalSpin>
{{ {{
default: () => <RouterView />, default: () => <RouterView />,
@ -22,5 +23,3 @@ const App = defineComponent({
) )
}, },
}) })
export default App

View File

@ -0,0 +1,31 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-10-21
*
* @workspace ray-template
*
* @remark
*/
import { NWatermark } from 'naive-ui'
import { APP_WATERMARK_CONFIG } from '@/app-config/appConfig'
import { useSetting } from '@/store'
export default defineComponent({
name: 'AppWatermarkProvider',
setup() {
const { watermarkSwitch } = storeToRefs(useSetting())
return {
watermarkSwitch,
}
},
render() {
return this.watermarkSwitch ? (
<NWatermark cross fullscreen {...APP_WATERMARK_CONFIG} />
) : null
},
})

View File

@ -108,3 +108,19 @@ export const APP_CATCH_KEY = {
localeLanguage: 'localeLanguage', localeLanguage: 'localeLanguage',
token: 'token', token: 'token',
} as const } as const
/**
*
*
* 具体配置信息查看官网: https://www.naiveui.com/zh-CN/dark/components/watermark#API
*/
export const APP_WATERMARK_CONFIG = {
content: 'Tring be better~',
fontSize: 16,
lineHeight: 16,
width: 384,
height: 384,
xOffset: 12,
yOffset: 60,
rotate: -15,
} as const

View File

@ -45,6 +45,10 @@ export const APP_THEME: AppTheme = {
* - APP_PRIMARY_COLOR common * - APP_PRIMARY_COLOR common
* *
* , * ,
* , 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>
*
* @example
* ``` * ```
* const themeOverrides: GlobalThemeOverrides = { * const themeOverrides: GlobalThemeOverrides = {
* common: { * common: {
@ -55,9 +59,6 @@ export const APP_THEME: AppTheme = {
* }, * },
* } * }
* ``` * ```
*
* , 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>
*/ */
APP_NAIVE_UI_THEME_OVERRIDES: {}, APP_NAIVE_UI_THEME_OVERRIDES: {},
/** /**

View File

@ -26,12 +26,12 @@ import type {
* 1. * 1.
* 2. * 2.
* 3. json * 3. json
* 4. @/components/RChart/theme json * 4. @/echart-themes json
*/ */
export const setupChartTheme = () => { export const setupChartTheme = () => {
// 获取所有主题 // 获取所有主题
const themeRawModules: Record<string, ChartThemeRawModules> = const themeRawModules: Record<string, ChartThemeRawModules> =
import.meta.glob('@/components/RChart/theme/**/*.json', { import.meta.glob('@/echart-themes/**/*.json', {
eager: true, eager: true,
}) })
const regx = /\/([^/]+)\.json$/ const regx = /\/([^/]+)\.json$/

View File

@ -52,7 +52,7 @@ import type { AnyFC } from '@/types/modules/utils'
import type { DebouncedFunc } from 'lodash-es' import type { DebouncedFunc } from 'lodash-es'
import type { ChartTheme } from '@/components/RChart/type' import type { ChartTheme } from '@/components/RChart/type'
import type { UseResizeObserverReturn } from '@vueuse/core' import type { UseResizeObserverReturn } from '@vueuse/core'
import type { ECharts, EChartsCoreOption, SetOptionOpts } from 'echarts/core' import type { ECharts, EChartsCoreOption } from 'echarts/core'
export type { RayChartInst, EChartsExtensionInstallRegisters } from './type' export type { RayChartInst, EChartsExtensionInstallRegisters } from './type'
@ -62,6 +62,7 @@ const defaultChartOptions = {
silent: false, silent: false,
replaceMerge: [], replaceMerge: [],
} }
const echartThemes = setupChartTheme()
export default defineComponent({ export default defineComponent({
name: 'RChart', name: 'RChart',
@ -181,7 +182,7 @@ export default defineComponent({
try { try {
/** 注册主题 */ /** 注册主题 */
setupChartTheme().forEach((curr) => { echartThemes.forEach((curr) => {
echarts.registerTheme(curr.name, curr.theme) echarts.registerTheme(curr.name, curr.theme)
}) })

View File

@ -1,3 +1,5 @@
import RCollapseGrid from './src/index' import RCollapseGrid from './src/index'
import props from './src/props'
export default RCollapseGrid export default RCollapseGrid
export { props }

View File

@ -21,16 +21,15 @@
import './index.scss' import './index.scss'
import { collapseGridProps } from './props'
import { NCard, NGrid, NGridItem, NSpace } from 'naive-ui' import { NCard, NGrid, NGridItem, NSpace } from 'naive-ui'
import RIcon from '@/components/RIcon' import RIcon from '@/components/RIcon'
import { call } from '@/utils/vue/index' import { call } from '@/utils/vue/index'
import props from './props'
const RCollapseGrid = defineComponent({ const RCollapseGrid = defineComponent({
name: 'RCollapseGrid', name: 'RCollapseGrid',
props: collapseGridProps, props,
setup(props) { setup(props) {
const modelCollapsed = ref(!props.open) const modelCollapsed = ref(!props.open)

View File

@ -4,7 +4,7 @@ import type { PropType } from 'vue'
import type { CollapseToggleText } from './type' import type { CollapseToggleText } from './type'
import type { AnyFC, MaybeArray } from '@/types/modules/utils' import type { AnyFC, MaybeArray } from '@/types/modules/utils'
export const collapseGridProps = { const props = {
open: { open: {
/** /**
* *
@ -50,13 +50,4 @@ export const collapseGridProps = {
...gridProps, ...gridProps,
} as const } as const
/** export default props
*
* `NGird`
*
* , <https://www.naiveui.com/zh-CN/dark/components/grid>
*
* `xGap` `12`
*
* `yGap` `18`
*/

View File

@ -0,0 +1,5 @@
import RMoreDropdown from './src/index'
import props from './src/props'
export default RMoreDropdown
export { props }

View File

@ -0,0 +1,33 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-10-21
*
* @workspace ray-template
*
* @remark
*/
import { NDropdown } from 'naive-ui'
import RIcon from '@/components/RIcon/index'
import props from './props'
export default defineComponent({
name: 'RMoreDropdown',
props,
render() {
const { iconSize } = this
return (
<NDropdown {...this.$props} {...this.$attrs}>
{this.$slots.default ? (
this.$slots.default()
) : (
<RIcon name="more" size={iconSize} />
)}
</NDropdown>
)
},
})

View File

@ -0,0 +1,22 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-10-21
*
* @workspace ray-template
*
* @remark
*/
import { dropdownProps } from 'naive-ui'
const props = {
...dropdownProps,
iconSize: {
type: Number,
default: 14,
},
}
export default props

View File

@ -21,13 +21,8 @@ import props from './props'
import { call } from '@/utils/vue/index' import { call } from '@/utils/vue/index'
import { uuid } from '@use-utils/hook' import { uuid } from '@use-utils/hook'
import config from './config' import config from './config'
import { throttle } from 'lodash-es'
import type { import type { DropdownOption, DataTableInst } from 'naive-ui'
DropdownOption,
DataTableInst,
DataTableCreateRowProps,
} from 'naive-ui'
import type { ComponentSize } from '@/types/modules/component' import type { ComponentSize } from '@/types/modules/component'
import type { C as CType } from './type' import type { C as CType } from './type'
@ -113,9 +108,9 @@ export default defineComponent({
const renderToolOptions = () => { const renderToolOptions = () => {
const { toolOptions } = props const { toolOptions } = props
return toolOptions?.map((curr) => return toolOptions
typeof curr === 'function' ? curr() : curr, ?.filter(() => Boolean)
) .map((curr) => (typeof curr === 'function' ? curr() : curr))
} }
const tool = (p: typeof props) => { const tool = (p: typeof props) => {

View File

@ -0,0 +1,10 @@
## Echart Theme 编辑器
官网地址: https://echarts.apache.org/zh/theme-builder.html
## 流程
1. 配置、选择主题
2. 点击下载主题
3. 选择 json 类型,然后复制
4. 在 @/echart-themes 包中创建对应的 json 文件,文件名为主题名称

View File

@ -71,6 +71,7 @@ const LayoutMenu = defineComponent({
<SiderBarLogo collapsed={this.modelCollapsed} /> <SiderBarLogo collapsed={this.modelCollapsed} />
<NMenu <NMenu
ref="menuRef" ref="menuRef"
class="r-menu--app"
v-model:value={this.modelMenuKey} v-model:value={this.modelMenuKey}
options={this.modelMenuOptions as NaiveMenuOptions[]} options={this.modelMenuOptions as NaiveMenuOptions[]}
indent={APP_MENU_CONFIG.MENU_COLLAPSED_INDENT} indent={APP_MENU_CONFIG.MENU_COLLAPSED_INDENT}

View File

@ -27,6 +27,7 @@ import './index.scss'
import { NScrollbar, NTag, NSpace, NLayoutHeader, NDropdown } from 'naive-ui' import { NScrollbar, NTag, NSpace, NLayoutHeader, NDropdown } from 'naive-ui'
import RIcon from '@/components/RIcon/index' import RIcon from '@/components/RIcon/index'
import RMoreDropdown from '@/components/RMoreDropdown/index'
import { useMenu, useSetting } from '@/store' import { useMenu, useSetting } from '@/store'
import { uuid } from '@/utils/hook' import { uuid } from '@/utils/hook'
@ -38,7 +39,7 @@ import { queryElements } from '@use-utils/element'
import type { MenuOption, ScrollbarInst } from 'naive-ui' import type { MenuOption, ScrollbarInst } from 'naive-ui'
import type { MenuTagOptions, AppMenuOption } from '@/types/modules/app' import type { MenuTagOptions, AppMenuOption } from '@/types/modules/app'
const MenuTag = defineComponent({ export default defineComponent({
name: 'MenuTag', name: 'MenuTag',
setup(_, { expose }) { setup(_, { expose }) {
const scrollRef = ref<ScrollbarInst | null>(null) const scrollRef = ref<ScrollbarInst | null>(null)
@ -525,10 +526,11 @@ const MenuTag = defineComponent({
customClassName="menu-tag__right-arrow" customClassName="menu-tag__right-arrow"
onClick={this.handleScrollX.bind(this, 'right')} onClick={this.handleScrollX.bind(this, 'right')}
/> />
<NDropdown <RMoreDropdown
options={this.moreOptions} options={this.moreOptions}
trigger="click" trigger="click"
onSelect={this.actionDropdownSelect.bind(this)} onSelect={this.actionDropdownSelect.bind(this)}
iconSize={20}
> >
<RIcon <RIcon
name="more" name="more"
@ -537,7 +539,7 @@ const MenuTag = defineComponent({
customClassName="menu-tag__right-setting" customClassName="menu-tag__right-setting"
onClick={this.setCurrentContentmenuIndex.bind(this)} onClick={this.setCurrentContentmenuIndex.bind(this)}
/> />
</NDropdown> </RMoreDropdown>
</div> </div>
</NSpace> </NSpace>
</div> </div>
@ -545,5 +547,3 @@ const MenuTag = defineComponent({
) )
}, },
}) })
export default MenuTag

View File

@ -50,6 +50,7 @@ const SettingDrawer = defineComponent({
breadcrumbSwitch, breadcrumbSwitch,
footerSwitch, footerSwitch,
contentTransition, contentTransition,
watermarkSwitch,
} = storeToRefs(settingStore) } = storeToRefs(settingStore)
const modelShow = computed({ const modelShow = computed({
@ -90,6 +91,7 @@ const SettingDrawer = defineComponent({
contentTransitionOptions, contentTransitionOptions,
contentTransition, contentTransition,
updateContentTransition, updateContentTransition,
watermarkSwitch,
} }
}, },
render() { render() {
@ -145,6 +147,14 @@ const SettingDrawer = defineComponent({
} }
/> />
</NDescriptionsItem> </NDescriptionsItem>
<NDescriptionsItem label="水印">
<NSwitch
v-model:value={this.watermarkSwitch}
onUpdateValue={(bool: boolean) =>
this.changeSwitcher(bool, 'watermarkSwitch')
}
/>
</NDescriptionsItem>
<NDescriptionsItem label="版权信息"> <NDescriptionsItem label="版权信息">
<NSwitch <NSwitch
v-model:value={this.footerSwitch} v-model:value={this.footerSwitch}

View File

@ -177,7 +177,7 @@ const SiderBar = defineComponent({
}} }}
</NTooltip> </NTooltip>
))} ))}
{this.breadcrumbSwitch ? <Breadcrumb /> : ''} {this.breadcrumbSwitch ? <Breadcrumb /> : null}
</NSpace> </NSpace>
<NSpace <NSpace
align="center" align="center"

View File

@ -23,7 +23,7 @@ import { LAYOUT_CONTENT_REF } from '@/app-config/routerConfig'
import { layoutHeaderCssVars } from '@/layout/layoutResize' import { layoutHeaderCssVars } from '@/layout/layoutResize'
import useAppLockScreen from '@/app-components/app/AppLockScreen/appLockVar' import useAppLockScreen from '@/app-components/app/AppLockScreen/appLockVar'
const RLayout = defineComponent({ export default defineComponent({
name: 'RLayout', name: 'RLayout',
setup() { setup() {
const layoutSiderBarRef = ref<HTMLElement>() const layoutSiderBarRef = ref<HTMLElement>()
@ -68,11 +68,9 @@ const RLayout = defineComponent({
> >
<ContentWrapper /> <ContentWrapper />
</NLayoutContent> </NLayoutContent>
{this.footerSwitch ? <FooterWrapper ref="layoutFooterRef" /> : ''} {this.footerSwitch ? <FooterWrapper ref="layoutFooterRef" /> : null}
</NLayoutContent> </NLayoutContent>
</NLayout> </NLayout>
) : null ) : null
}, },
}) })
export default RLayout

View File

@ -38,6 +38,7 @@ export const useSetting = defineStore(
lockScreenInputSwitch: false, // 锁屏输入状态开关(预留该字段是为了方便拓展用, 但是舍弃了该字段, 改为使用 useAppLockScreen 方法) lockScreenInputSwitch: false, // 锁屏输入状态开关(预留该字段是为了方便拓展用, 但是舍弃了该字段, 改为使用 useAppLockScreen 方法)
footerSwitch: true, // 底部区域开关 footerSwitch: true, // 底部区域开关
contentTransition: 'scale', // 切换过渡效果 contentTransition: 'scale', // 切换过渡效果
watermarkSwitch: false, // 水印开关,
}) })
/** 更新过渡效果 */ /** 更新过渡效果 */

View File

@ -12,6 +12,7 @@ export interface SettingState {
localeLanguage: string localeLanguage: string
lockScreenSwitch: boolean lockScreenSwitch: boolean
lockScreenInputSwitch: boolean lockScreenInputSwitch: boolean
watermarkSwitch: boolean
footerSwitch: boolean footerSwitch: boolean
contentTransition: string contentTransition: string
} }

View File

@ -3,3 +3,8 @@
width: 100%; width: 100%;
height: 100%; height: 100%;
} }
.r-menu--app:not(.n-menu--collapsed) .n-menu-item-content.n-menu-item-content--selected:before,
.r-menu--app:not(.n-menu--collapsed) .n-menu-item-content:hover:before {
border-left: 4px solid var(--ray-theme-primary-color);
}

View File

@ -24,6 +24,7 @@ import {
import RCollapseGrid from '@/components/RCollapseGrid/index' import RCollapseGrid from '@/components/RCollapseGrid/index'
import RTable from '@/components/RTable/index' import RTable from '@/components/RTable/index'
import RIcon from '@/components/RIcon/index' import RIcon from '@/components/RIcon/index'
import RMoreDropdown from '@/components/RMoreDropdown/index'
import type { DataTableColumns } from 'naive-ui' import type { DataTableColumns } from 'naive-ui'
import type { TableInst } from '@/components/RTable/index' import type { TableInst } from '@/components/RTable/index'
@ -83,14 +84,26 @@ const TableView = defineComponent({
{ {
title: 'Action', title: 'Action',
key: 'actions', key: 'actions',
render: (row: RowData) => render: (row: RowData) => (
h( <NSpace wrapItem={false} align="center">
NButton, <NButton size="tiny"></NButton>
{ <RMoreDropdown
size: 'small', options={[
}, {
{ default: () => 'Send Email' }, label: '编辑',
), key: 'edit',
},
{
label: '新增',
key: 'add',
},
]}
onSelect={(key) => {
window.$message.info(`当前选择: ${key}`)
}}
/>
</NSpace>
),
}, },
] ]
const actionColumns = ref<DataTableColumns<RowData>>( const actionColumns = ref<DataTableColumns<RowData>>(

View File

@ -163,6 +163,7 @@ export default function (mode: string): PluginOption[] {
viteCDNPlugin({ viteCDNPlugin({
modules: [ modules: [
'vue', 'vue',
'vue-demi',
'pinia', 'pinia',
'naive-ui', 'naive-ui',
'vue-router', 'vue-router',
@ -172,6 +173,7 @@ export default function (mode: string): PluginOption[] {
'vuedraggable', 'vuedraggable',
'xlsx', 'xlsx',
'axios', 'axios',
'screenfull',
'print-js', 'print-js',
'clipboard', 'clipboard',
'lodash-es', 'lodash-es',