diff --git a/CHANGELOG.md b/CHANGELOG.md index dc414e7a..95eb0880 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # CHANGE LOG +## 4.2.7 + +主要是做了一些统一命名的事情,以前由于写的比较放浪形骸现在正在慢慢更改这个大问题。 + +### Feats + +- 优化顶部操作栏的渲染逻辑,现在将更加合理的管理数据渲染图标 +- 二次封装 useFullscreen 方法,如果当前环境不支持全屏则会自动弹出提示 +- 重命名 utils/hook 包名为 basic +- 移除 vuedraggable 插件 +- RequestCanceler 方法部分属性与方法变为私有 +- 重命名 layout 包下的一些组件 name +- 升级 echarts 至 5.4.3 版本 + ## 4.2.6 ### Feats diff --git a/package.json b/package.json index d285601f..9ecb21ee 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ray-template", "private": false, - "version": "4.2.6", + "version": "4.2.7", "type": "module", "engines": { "node": ">=16.0.0", @@ -31,7 +31,7 @@ "crypto-js": "^4.1.1", "currency.js": "^2.0.4", "dayjs": "^1.11.7", - "echarts": "^5.4.0", + "echarts": "^5.4.3", "lodash-es": "^4.17.21", "mockjs": "1.1.0", "naive-ui": "^2.35.0", @@ -42,7 +42,6 @@ "vue-hooks-plus": "1.8.5", "vue-i18n": "^9.2.2", "vue-router": "^4.2.4", - "vuedraggable": "^4.1.0", "xlsx": "^0.18.5" }, "devDependencies": { diff --git a/src/axios/helper/RequestCanceler.ts b/src/axios/helper/RequestCanceler.ts index 2e6f33d9..6555f4ce 100644 --- a/src/axios/helper/RequestCanceler.ts +++ b/src/axios/helper/RequestCanceler.ts @@ -19,14 +19,14 @@ import type { AppRawRequestConfig } from '@/axios/type' export default class RequestCanceler { - pendingRequest: Map + private pendingRequest: Map constructor() { this.pendingRequest = new Map() } /** 是否需要加入取消请求表中 */ - isApending(config: AppRawRequestConfig) { + private isApending(config: AppRawRequestConfig) { return config.cancelConfig?.needCancel ?? true } @@ -37,7 +37,7 @@ export default class RequestCanceler { * * @remark 将当前请求 config 生成 request key */ - generateRequestKey(config: AppRawRequestConfig) { + private generateRequestKey(config: AppRawRequestConfig) { const { method, url } = config return [ diff --git a/src/axios/helper/interceptor.ts b/src/axios/helper/interceptor.ts index a5f967cd..897059cd 100644 --- a/src/axios/helper/interceptor.ts +++ b/src/axios/helper/interceptor.ts @@ -21,7 +21,7 @@ */ import RequestCanceler from '@/axios/helper/RequestCanceler' -import { getAppEnvironment } from '@use-utils/hook' +import { getAppEnvironment } from '@/utils/basic' import type { RequestInterceptorConfig, diff --git a/src/components/RQRCode/src/index.tsx b/src/components/RQRCode/src/index.tsx index 532eee55..63b78f9f 100644 --- a/src/components/RQRCode/src/index.tsx +++ b/src/components/RQRCode/src/index.tsx @@ -16,7 +16,7 @@ import RIcon from '@/components/RIcon/index' import props from './props' import { AwesomeQR } from 'awesome-qr' -import { isValueType, downloadAnyFile } from '@use-utils/hook' +import { isValueType, downloadAnyFile } from '@/utils/basic' import { call } from '@/utils/vue/index' import type { QRCodeRenderResponse, GIFBuffer } from './type' diff --git a/src/components/RTable/src/Table.tsx b/src/components/RTable/src/Table.tsx index e4d169af..d0e6abcc 100644 --- a/src/components/RTable/src/Table.tsx +++ b/src/components/RTable/src/Table.tsx @@ -19,7 +19,7 @@ import Print from './components/Print' import props from './props' import { call } from '@/utils/vue/index' -import { uuid } from '@use-utils/hook' +import { uuid } from '@/utils/basic' import config from './config' import type { DropdownOption, DataTableInst } from 'naive-ui' diff --git a/src/components/RTable/src/components/Fullscreen.tsx b/src/components/RTable/src/components/Fullscreen.tsx index 5b645e18..7a6f843f 100644 --- a/src/components/RTable/src/components/Fullscreen.tsx +++ b/src/components/RTable/src/components/Fullscreen.tsx @@ -13,7 +13,7 @@ import { NPopover } from 'naive-ui' import RIcon from '@/components/RIcon/index' import config from '../config' -import { useFullscreen } from 'vue-hooks-plus' +import { useFullscreen } from '@/hooks/web/index' import type { TableProvider } from '../type' diff --git a/src/hooks/web/index.ts b/src/hooks/web/index.ts index 7e6a9ca5..ec406828 100644 --- a/src/hooks/web/index.ts +++ b/src/hooks/web/index.ts @@ -13,5 +13,6 @@ import { useI18n, t } from './useI18n' import { useVueRouter } from '../web/useVueRouter' import { useDayjs } from '../web/useDayjs' import { useDevice } from './useDevice' +import { useFullscreen } from './useFullscreen' -export { useI18n, useVueRouter, useDayjs, t, useDevice } +export { useI18n, useVueRouter, useDayjs, t, useDevice, useFullscreen } diff --git a/src/hooks/web/useFullscreen.ts b/src/hooks/web/useFullscreen.ts new file mode 100644 index 00000000..aa6fcbdf --- /dev/null +++ b/src/hooks/web/useFullscreen.ts @@ -0,0 +1,40 @@ +/** + * + * @author Ray + * + * @date 2023-10-25 + * + * @workspace ray-template + * + * @remark 今天也是元气满满撸代码的一天 + */ + +import { useFullscreen as hooksPlusUseFullscreen } from 'vue-hooks-plus' + +import type { useFullscreen as UseFullscreen } from 'vue-hooks-plus' + +type UseFullscreenParams = Parameters + +export function useFullscreen( + target: UseFullscreenParams[0], + options?: UseFullscreenParams[1], +) { + const [ + isFullscreen, + { enterFullscreen, exitFullscreen, toggleFullscreen, isEnabled }, + ] = hooksPlusUseFullscreen(target, options) + + if (!isEnabled) { + window.$message.warning('您当前环境不支持全屏模式') + } + + return [ + isFullscreen, + { + enterFullscreen, + exitFullscreen, + toggleFullscreen, + isEnabled, + }, + ] as const +} diff --git a/src/layout/components/Menu/index.tsx b/src/layout/components/Menu/index.tsx index b6ee0298..e5a62906 100644 --- a/src/layout/components/Menu/index.tsx +++ b/src/layout/components/Menu/index.tsx @@ -23,8 +23,8 @@ import type { MenuInst } from 'naive-ui' import type { NaiveMenuOptions } from '@/types/modules/component' import type { AppMenuOption } from '@/types/modules/app' -const LayoutMenu = defineComponent({ - name: 'LayoutMenu', +export default defineComponent({ + name: 'AppMenu', setup() { const menuRef = ref(null) @@ -114,5 +114,3 @@ const LayoutMenu = defineComponent({ ) }, }) - -export default LayoutMenu diff --git a/src/layout/components/MenuTag/index.tsx b/src/layout/components/MenuTag/index.tsx index e1016f9f..90deb2d2 100644 --- a/src/layout/components/MenuTag/index.tsx +++ b/src/layout/components/MenuTag/index.tsx @@ -30,7 +30,7 @@ import RIcon from '@/components/RIcon/index' import RMoreDropdown from '@/components/RMoreDropdown/index' import { useMenu, useSetting } from '@/store' -import { uuid } from '@/utils/hook' +import { uuid } from '@/utils/basic' import { hasClass } from '@/utils/element' import { redirectRouterToDashboard } from '@/router/helper/routerCopilot' import { ROOT_ROUTE } from '@/app-config/appConfig' @@ -40,7 +40,7 @@ import type { MenuOption, ScrollbarInst } from 'naive-ui' import type { MenuTagOptions, AppMenuOption } from '@/types/modules/app' export default defineComponent({ - name: 'MenuTag', + name: 'AppMenuTag', setup(_, { expose }) { const scrollRef = ref(null) @@ -269,7 +269,7 @@ export default defineComponent({ return } - const handleScrollX = (type: 'left' | 'right') => { + const scrollX = (type: 'left' | 'right') => { const el = getScrollElement() if (el) { @@ -438,7 +438,7 @@ export default defineComponent({ menuKey, handleTagClick, moreOptions, - handleScrollX, + scrollX, scrollRef, scrollBarUUID, actionDropdownSelect, @@ -480,7 +480,7 @@ export default defineComponent({ width="20" height="28" customClassName="menu-tag__left-arrow" - onClick={this.handleScrollX.bind(this, 'left')} + onClick={this.scrollX.bind(this, 'left')} /> { + setup(props, { emit }) { + const iconClick = (e?: MouseEvent) => { emit('click', e) } + + const Icon = () => ( + + ) + return { - handleClick, + iconClick, + Icon, } }, render() { - return ( + const { Icon } = this + + return this.tooltipText ? ( {{ - trigger: () => ( - - ), + trigger: () => , default: () => this.tooltipText, }} + ) : ( + ) }, }) - -export default TooltipIcon diff --git a/src/layout/components/SiderBar/hook.ts b/src/layout/components/SiderBar/hook.ts index de358624..4adfc155 100644 --- a/src/layout/components/SiderBar/hook.ts +++ b/src/layout/components/SiderBar/hook.ts @@ -1,6 +1,9 @@ import { useSetting, useSignin } from '@/store' +import { useI18n } from '@/hooks/web/index' -export const useAvatarOptions = () => [ +import type { IconOptionsFC, IconOptions } from './type' + +export const createAvatarOptions = () => [ { key: 'person', label: '个人信息', @@ -47,3 +50,71 @@ export const avatarDropdownClick = (key: string | number) => { action ? action() : window.$message.info('这个人很懒, 没做这个功能~') } + +export const createLeftIconOptions = (opts: IconOptionsFC) => { + const { isTabletOrSmaller, reloadRouteSwitch } = opts + const { t } = useI18n() + + const notTableOrSmallerOptions: IconOptions[] = [ + { + name: 'reload', + size: 18, + tooltip: t('headerTooltip.Reload'), + iconClass: !reloadRouteSwitch.value ? 'ray-icon__reload--loading' : '', + eventKey: 'reload', + }, + ] + const tableOrSmallerOptions: IconOptions[] = [ + { + name: 'menu', + size: 18, + eventKey: 'menu', + }, + ] + + return isTabletOrSmaller!.value + ? tableOrSmallerOptions + : notTableOrSmallerOptions +} + +export const createRightIconOptions = (opts: IconOptionsFC) => { + const { isFullscreen, isTabletOrSmaller } = opts + const { t } = useI18n() + + const basicOptions: IconOptions[] = [ + { + name: 'fullscreen', + size: 18, + tooltip: isFullscreen.value + ? t('headerTooltip.CancelFullScreen') + : t('headerTooltip.FullScreen'), + eventKey: 'screen', + }, + { + name: 'github', + size: 18, + tooltip: t('headerTooltip.Github'), + eventKey: 'github', + }, + { + name: 'setting', + size: 18, + tooltip: t('headerTooltip.Setting'), + eventKey: 'setting', + }, + ] + const notTableOrSmallerOptions: IconOptions[] = [ + { + name: 'search', + size: 18, + tooltip: t('headerTooltip.Search'), + eventKey: 'search', + }, + ...basicOptions, + ] + const tableOrSmallerOptions: IconOptions[] = [...basicOptions] + + return isTabletOrSmaller!.value + ? tableOrSmallerOptions + : notTableOrSmallerOptions +} diff --git a/src/layout/components/SiderBar/index.tsx b/src/layout/components/SiderBar/index.tsx index affd766c..b972bf6a 100644 --- a/src/layout/components/SiderBar/index.tsx +++ b/src/layout/components/SiderBar/index.tsx @@ -19,7 +19,7 @@ import './index.scss' -import { NLayoutHeader, NSpace, NTooltip, NDropdown } from 'naive-ui' +import { NLayoutHeader, NSpace, NDropdown } from 'naive-ui' import RIcon from '@/components/RIcon/index' import TootipIcon from '@/layout/components/SiderBar/components/TooltipIcon/index' import SettingDrawer from './components/SettingDrawer/index' @@ -29,20 +29,22 @@ import AppAvatar from '@/app-components/app/AppAvatar/index' import { useSetting } from '@/store' import { LOCAL_OPTIONS } from '@/app-config/localConfig' -import { useAvatarOptions, avatarDropdownClick } from './hook' -import { useI18n } from '@/hooks/web/index' -import { useFullscreen } from 'vue-hooks-plus' -import { useDevice } from '@/hooks/web/index' +import { + createAvatarOptions, + avatarDropdownClick, + createLeftIconOptions, + createRightIconOptions, +} from './hook' +import { useDevice, useFullscreen } from '@/hooks/web/index' import { globalVariableToRefs, setVariable } from '@/hooks/variable/index' -import type { LeftIconOptions, IconEventMapOptions, IconEventMap } from './type' +import type { IconEventMapOptions, IconEventMap } from './type' -const SiderBar = defineComponent({ - name: 'SiderBar', +export default defineComponent({ + name: 'AppSiderBar', setup() { const settingStore = useSetting() - const { t } = useI18n() const { updateLocale, changeSwitcher } = settingStore const [isFullscreen, { toggleFullscreen }] = useFullscreen( @@ -62,69 +64,24 @@ const SiderBar = defineComponent({ * * 顶部左边操作栏 */ - const leftIconOptions = computed(() => { - const options: LeftIconOptions[] = [ - { - name: 'reload', - size: 18, - tooltip: t('headerTooltip.Reload'), - iconClass: computed(() => - !reloadRouteSwitch.value ? 'ray-icon__reload--loading' : '', - ), - }, - ] - - if (isTabletOrSmaller.value) { - options[0] = { - name: 'menu', - size: 18, - } - } - - return options - }) + const leftIconOptions = computed(() => + createLeftIconOptions({ + isFullscreen, + isTabletOrSmaller, + reloadRouteSwitch, + }), + ) /** * * 顶部右边提示框操作栏 */ - const rightTooltipIconOptions = computed(() => { - const options = [ - { - name: 'search', - size: 18, - tooltip: t('headerTooltip.Search'), - eventKey: 'search', - }, - { - name: 'fullscreen', - size: 18, - tooltip: computed(() => - isFullscreen.value - ? t('headerTooltip.CancelFullScreen') - : t('headerTooltip.FullScreen'), - ), - eventKey: 'screen', - }, - { - name: 'github', - size: 18, - tooltip: t('headerTooltip.Github'), - eventKey: 'github', - }, - { - name: 'setting', - size: 18, - tooltip: t('headerTooltip.Setting'), - eventKey: 'setting', - }, - ] - - if (isTabletOrSmaller.value) { - options.shift() - } - - return options - }) + const rightTooltipIconOptions = computed(() => + createRightIconOptions({ + isFullscreen, + isTabletOrSmaller, + reloadRouteSwitch, + }), + ) const iconEventMap: IconEventMapOptions = { // 刷新组件重新加载,手动设置 800ms loading 时长 reload: () => { @@ -156,24 +113,9 @@ const SiderBar = defineComponent({ iconEventMap[key]?.() } - const LeftToolIcon = (props: (typeof leftIconOptions.value)[0]) => { - const { iconClass, name, size } = props - - return ( - - ) - } - return { leftIconOptions, rightTooltipIconOptions, - t, toolIconClick, showSettings, updateLocale, @@ -181,12 +123,9 @@ const SiderBar = defineComponent({ drawerPlacement, breadcrumbSwitch, globalSearchShown, - LeftToolIcon, } }, render() { - const { LeftToolIcon } = this - return ( @@ -200,18 +139,16 @@ const SiderBar = defineComponent({ wrapItem={false} itemStyle={this.spaceItemStyle} > - {this.leftIconOptions.map((curr) => - curr.tooltip ? ( - - {{ - trigger: () => , - default: () => curr.tooltip, - }} - - ) : ( - - ), - )} + {this.leftIconOptions.map((curr) => ( + + ))} {this.breadcrumbSwitch ? : null} ))} @@ -243,7 +181,7 @@ const SiderBar = defineComponent({ /> @@ -259,5 +197,3 @@ const SiderBar = defineComponent({ ) }, }) - -export default SiderBar diff --git a/src/layout/components/SiderBar/type.ts b/src/layout/components/SiderBar/type.ts index 565c8b57..1b413a55 100644 --- a/src/layout/components/SiderBar/type.ts +++ b/src/layout/components/SiderBar/type.ts @@ -1,5 +1,5 @@ import type { DropdownOption } from 'naive-ui' -import type { ComputedRef } from 'vue' +import type { ComputedRef, Ref } from 'vue' export interface IconEventMapOptions { [propName: string]: (...args: unknown[]) => unknown @@ -17,14 +17,14 @@ export interface IconDropdownOptions extends UnknownObjectKey { export interface IconOptions { name: string size?: number - tooltip?: string + tooltip?: ComputedRef | string eventKey?: string dropdown?: IconDropdownOptions + iconClass?: string } -export interface LeftIconOptions { - name: string - size: number - tooltip?: string - iconClass?: ComputedRef +export interface IconOptionsFC { + isTabletOrSmaller: Ref + isFullscreen: Ref + reloadRouteSwitch: Ref } diff --git a/src/layout/default/ContentWrapper/index.tsx b/src/layout/default/ContentWrapper/index.tsx index b245b82b..8e7efbda 100644 --- a/src/layout/default/ContentWrapper/index.tsx +++ b/src/layout/default/ContentWrapper/index.tsx @@ -26,7 +26,7 @@ import { useSetting } from '@/store' import type { GlobalThemeOverrides } from 'naive-ui' const ContentWrapper = defineComponent({ - name: 'ContentWrapper', + name: 'LayoutContentWrapper', setup() { const settingStore = useSetting() const router = useRouter() diff --git a/src/layout/default/FeatureWrapper/index.tsx b/src/layout/default/FeatureWrapper/index.tsx index 5c349eae..68faec18 100644 --- a/src/layout/default/FeatureWrapper/index.tsx +++ b/src/layout/default/FeatureWrapper/index.tsx @@ -12,7 +12,7 @@ import MenuTag from '@/layout/components/MenuTag/index' const FeatureWrapper = defineComponent({ - name: 'FeatureWrapper', + name: 'LayoutFeatureWrapper', setup() { return {} }, diff --git a/src/layout/default/FooterWrapper/index.tsx b/src/layout/default/FooterWrapper/index.tsx index 96eef486..c21a96a4 100644 --- a/src/layout/default/FooterWrapper/index.tsx +++ b/src/layout/default/FooterWrapper/index.tsx @@ -12,7 +12,7 @@ import './index.scss' const FooterWrapper = defineComponent({ - name: 'FooterWrapper', + name: 'LayoutFooterWrapper', setup() { const { layout: { copyright }, diff --git a/src/layout/default/HeaderWrapper/index.tsx b/src/layout/default/HeaderWrapper/index.tsx index 830f0535..7d0c3e3f 100644 --- a/src/layout/default/HeaderWrapper/index.tsx +++ b/src/layout/default/HeaderWrapper/index.tsx @@ -13,7 +13,7 @@ import { NSpace } from 'naive-ui' import SiderBar from '@/layout/components/SiderBar/index' const HeaderWrapper = defineComponent({ - name: 'HeaderWrapper', + name: 'LayoutHeaderWrapper', setup() { return {} }, diff --git a/src/layout/layoutResize.ts b/src/layout/layoutResize.ts index 2ea00b7d..0b230205 100644 --- a/src/layout/layoutResize.ts +++ b/src/layout/layoutResize.ts @@ -15,8 +15,8 @@ import type { Ref } from 'vue' /** * - * 动态获取 SiderBar 和 MenuTag 高度, 用于 LayoutConetent 高度实时获取与渲染 - * 可以动态更改 MenuTag 样式后, 使得 LayoutConetent 也可以准确的获取高度 + * 动态获取 SiderBar 和 MenuTag 高度, 用于 LayoutContent 高度实时获取与渲染 + * 可以动态更改 MenuTag 样式后, 使得 LayoutContent 也可以准确的获取高度 * * 基于 vueuse useElementSize 方法实现 * 不建议滥用该方法, 对页面渲染有一定的影响 diff --git a/src/locales/helper.ts b/src/locales/helper.ts index 56333ffa..4f0c2a3b 100644 --- a/src/locales/helper.ts +++ b/src/locales/helper.ts @@ -71,11 +71,11 @@ export const combineI18nMessages = (langs: I18nModules, prefix: string) => { /** 获取所有语言 */ export const getAppLocalMessages = async ( - LOCAL_OPTIONS: AppLocalesDropdownMixedOption[], + localOptions: AppLocalesDropdownMixedOption[], ) => { const message = {} as AppCurrentAppMessages - for (const curr of LOCAL_OPTIONS) { + for (const curr of localOptions) { const msg: AppLocalesModules = await import(`./lang/${curr.key}.ts`) const key = curr.key diff --git a/src/router/helper/permission.ts b/src/router/helper/permission.ts index 2f026413..ba04f9d0 100644 --- a/src/router/helper/permission.ts +++ b/src/router/helper/permission.ts @@ -25,7 +25,7 @@ import { APP_CATCH_KEY, ROOT_ROUTE } from '@/app-config/appConfig' import { redirectRouterToDashboard } from '@/router/helper/routerCopilot' import { WHITE_ROUTES } from '@/app-config/routerConfig' import { validRole } from '@/router/helper/routerCopilot' -import { isValueType } from '@/utils/hook' +import { isValueType } from '@/utils/basic' import type { Router, RouteLocationNormalized } from 'vue-router' import type { AppRouteMeta } from '@/router/type' diff --git a/src/router/helper/routerCopilot.ts b/src/router/helper/routerCopilot.ts index 5e2f53dc..fe540422 100644 --- a/src/router/helper/routerCopilot.ts +++ b/src/router/helper/routerCopilot.ts @@ -15,7 +15,7 @@ import { useSignin } from '@/store' import { useVueRouter } from '@/hooks/web/index' import { ROOT_ROUTE } from '@/app-config/appConfig' import { setStorage } from '@/utils/cache' -import { getAppEnvironment } from '@/utils/hook' +import { getAppEnvironment } from '@/utils/basic' import type { Router } from 'vue-router' import type { AppRouteMeta } from '@/router/type' diff --git a/src/store/modules/menu/helper.ts b/src/store/modules/menu/helper.ts index f244e0f4..87feaa68 100644 --- a/src/store/modules/menu/helper.ts +++ b/src/store/modules/menu/helper.ts @@ -13,10 +13,9 @@ import { APP_MENU_CONFIG, ROOT_ROUTE } from '@/app-config/appConfig' import RIcon from '@/components/RIcon/index' -import { isValueType } from '@/utils/hook' -import { getStorage, setStorage } from '@/utils/cache' +import { isValueType } from '@/utils/basic' +import { getStorage } from '@/utils/cache' -import type { VNode } from 'vue' import type { AppMenuOption, MenuTagOptions, diff --git a/src/utils/hook.ts b/src/utils/basic.ts similarity index 100% rename from src/utils/hook.ts rename to src/utils/basic.ts diff --git a/src/utils/element.ts b/src/utils/element.ts index 4816611a..3600509d 100644 --- a/src/utils/element.ts +++ b/src/utils/element.ts @@ -1,4 +1,4 @@ -import { isValueType } from '@use-utils/hook' +import { isValueType } from '@/utils/basic' import { APP_REGEX } from '@/app-config/regexConfig' import { unrefElement } from '@/utils/vue/index' diff --git a/vite.pliugin.config.ts b/vite.pliugin.config.ts index 60a30cfa..148ba2dc 100644 --- a/vite.pliugin.config.ts +++ b/vite.pliugin.config.ts @@ -170,7 +170,6 @@ export default function (mode: string): PluginOption[] { 'vue-i18n', 'dayjs', 'echarts', - 'vuedraggable', 'xlsx', 'axios', 'screenfull',