version: 4.6.2-beta1.1

This commit is contained in:
XiaoDaiGua-Ray 2024-01-26 23:32:53 +08:00
parent af1eeac035
commit 8ced024a94
19 changed files with 143 additions and 66 deletions

View File

@ -1,6 +1,37 @@
# CHANGE LOG # CHANGE LOG
## 4.6.2-beta ## 4.6.2-beta1.1
## Feats
- `cache` 工具包相关
- 优化 `removeStorage` 方法类型推导,当 `key` 为预留字关键字时,强制绑定 `storageType` 为对应的类型值
```ts
import { removeStorage } from '@/utils'
// 正确
removeStorage('__all__', 'all')
removeStorage('__all_sessionStorage__', 'sessionStorage')
removeStorage('__all_localStorage__', 'localStorage')
remove('your key', 'sessionStorage' || 'localStorage')
// 错误
removeStorage('__all__', 'sessionStorage')
removeStorage('__all_sessionStorage__', 'localStorage')
removeStorage('__all_localStorage__', 'all')
removeStorage('__all_localStorage__', 'sessionStorage')
remove('your key', 'all')
```
- 优化 `Layout` 布局样式,移除 `border` 边框,添加 `box-shadow` 阴影
## Fixes
- 修复 `copy` 指令复制的时候不能正确的提示的问题
- 修复 `AppVersionProvider` 组件不能正确的注入 `appVersion` 的问题
## 4.6.2-beta1.0
为了支持同域名下同时部署多套系统,重构了 `cache` 工具包支持前缀配置。并且暴露重构所有的缓存 `key` 配置项,为了便捷的进行私有数据缓存。 为了支持同域名下同时部署多套系统,重构了 `cache` 工具包支持前缀配置。并且暴露重构所有的缓存 `key` 配置项,为了便捷的进行私有数据缓存。

View File

@ -4,7 +4,7 @@
alt="Ray Template" alt="Ray Template"
width="200" width="200"
height="200" height="200"
src="https://r2chevereto.yka.moe/longmao.navigator.th.png" src="https://avatars.githubusercontent.com/u/51957438?v=4"
/> />
</a> </a>
<br /> <br />

View File

@ -4,7 +4,7 @@
alt="Ray Template" alt="Ray Template"
width="200" width="200"
height="200" height="200"
src="https://r2chevereto.yka.moe/longmao.navigator.th.png" src="https://avatars.githubusercontent.com/u/51957438?v=4"
/> />
</a> </a>
<br /> <br />

View File

@ -1,7 +1,7 @@
{ {
"name": "ray-template", "name": "ray-template",
"private": false, "private": false,
"version": "4.6.2-beta", "version": "4.6.2-beta1.1",
"type": "module", "type": "module",
"engines": { "engines": {
"node": "^18.0.0 || >=20.0.0", "node": "^18.0.0 || >=20.0.0",

View File

@ -63,22 +63,24 @@ const AppAvatar = defineComponent({
} }
}, },
render() { render() {
const { signing, cssVars, spaceSize, avatarSize, $props } = this
return ( return (
<NFlex <NFlex
class="app-avatar" class="app-avatar"
{...this.$props} {...this.$props}
style={this.cssVars} style={cssVars}
size={this.spaceSize} size={spaceSize}
> >
<NAvatar <NAvatar
// eslint-disable-next-line prettier/prettier, @typescript-eslint/no-explicit-any // eslint-disable-next-line prettier/prettier, @typescript-eslint/no-explicit-any
{...(this.$props as any)} {...($props as any)}
src={this.signing?.avatar} src={signing?.avatar}
objectFit="cover" objectFit="cover"
round round
size={this.avatarSize} size={avatarSize}
/> />
<div class="app-avatar__name">{this.signing?.name}</div> <div class="app-avatar__name">{signing?.name}</div>
</NFlex> </NFlex>
) )
}, },

View File

@ -16,41 +16,41 @@ export default defineComponent({
name: 'RayLink', name: 'RayLink',
setup() { setup() {
const avatarOptions: AvatarOptions[] = [ const avatarOptions: AvatarOptions[] = [
{ // {
key: 'yunhome', // key: 'yunhome',
src: 'https://yunkuangao.me/', // src: 'https://yunkuangao.me/',
tooltip: '云之家', // tooltip: '云之家',
icon: 'https://r2chevereto.yka.moe/avatar.jpeg', // icon: 'https://r2chevereto.yka.moe/avatar.jpeg',
}, // },
{ // {
key: 'yun-cloud-images', // key: 'yun-cloud-images',
src: 'https://yunkuangao.com/', // src: 'https://yunkuangao.com/',
tooltip: '云图床', // tooltip: '云图床',
icon: 'https://r2chevereto.yka.moe/avatar.jpeg', // icon: 'https://r2chevereto.yka.moe/avatar.jpeg',
}, // },
{ {
key: 'ray-js-note', key: 'ray-js-note',
src: 'https://note.youdao.com/s/ObWEe2BB', src: 'https://note.youdao.com/s/ObWEe2BB',
tooltip: 'Ray的前端学习笔记', tooltip: 'Ray的前端学习笔记',
icon: 'https://r2chevereto.yka.moe/longmao.navigator.png', icon: 'https://avatars.githubusercontent.com/u/51957438?v=4',
}, },
{ {
key: 'ray-js-cover', key: 'ray-js-cover',
src: 'https://note.youdao.com/s/IC8xKPdB', src: 'https://note.youdao.com/s/IC8xKPdB',
tooltip: 'Ray的面试题总结', tooltip: 'Ray的面试题总结',
icon: 'https://r2chevereto.yka.moe/longmao.navigator.png', icon: 'https://avatars.githubusercontent.com/u/51957438?v=4',
}, },
{ {
key: 'ray-template-doc', key: 'ray-template-doc',
src: 'https://xiaodaigua-ray.github.io/ray-template-doc/', src: 'https://xiaodaigua-ray.github.io/ray-template-doc/',
tooltip: 'Ray Template Doc', tooltip: 'Ray Template Doc',
icon: 'https://r2chevereto.yka.moe/longmao.navigator.png', icon: 'https://avatars.githubusercontent.com/u/51957438?v=4',
}, },
{ {
key: 'ray-template-doc-out', key: 'ray-template-doc-out',
src: 'https://ray-template.yunkuangao.com/', src: 'https://ray-template.yunkuangao.com/',
tooltip: 'Ray Template Doc (国内地址)', tooltip: 'Ray Template Doc (国内地址)',
icon: 'https://r2chevereto.yka.moe/longmao.navigator.png', icon: 'https://avatars.githubusercontent.com/u/51957438?v=4',
}, },
] ]

View File

@ -45,6 +45,12 @@ export default defineComponent({
'localStorage', 'localStorage',
) )
} }
} else {
setStorage<string>(
APP_CATCH_KEY.appVersionProvider,
version,
'localStorage',
)
} }
return { return {

View File

@ -19,29 +19,31 @@ import ClipboardJS from 'clipboard'
import type { CopyElement } from './type' import type { CopyElement } from './type'
import type { CustomDirectiveFC } from '@/directives/type' import type { CustomDirectiveFC } from '@/directives/type'
const copyDirective: CustomDirectiveFC<CopyElement, string> = () => { const createClipboard = (el: CopyElement, value: string) => {
return {
mounted: (el, { value }) => {
const clipboard = new ClipboardJS(el, { const clipboard = new ClipboardJS(el, {
text: () => String(value), text: () => value,
})
clipboard.on('success', () => {
window.$message.success('复制成功')
})
clipboard.on('error', () => {
window.$message.error('复制失败')
}) })
el.$$clipboard = clipboard el.$$clipboard = clipboard
el.$$clipboard.on('success', () => {
window.$message.success('复制成功')
})
el.$$clipboard.on('error', () => {
window.$message.error('复制失败')
})
}
const copyDirective: CustomDirectiveFC<CopyElement, string> = () => {
return {
mounted: (el, { value }) => {
createClipboard(el, value)
}, },
updated: (el, { value, oldValue }) => { updated: (el, { value, oldValue }) => {
if (value !== oldValue) { if (value !== oldValue) {
el.$$clipboard?.destroy() el.$$clipboard?.destroy()
el.$$clipboard = new ClipboardJS(el, { createClipboard(el, value)
text: () => String(value),
})
} }
}, },
beforeUnmount: (el: CopyElement) => { beforeUnmount: (el: CopyElement) => {

View File

@ -19,7 +19,6 @@
gap: 8px 12px; gap: 8px 12px;
font-weight: 600; font-weight: 600;
overflow: hidden; overflow: hidden;
border-right: solid 1px var(--n-border-color);
&.ray-menu__logo-url { &.ray-menu__logo-url {
position: sticky; position: sticky;

View File

@ -5,3 +5,11 @@
height: 100%; height: 100%;
} }
} }
.ray-template--light .app-menu__sider {
box-shadow: 2px 0 8px $layoutShadowColorLight;
}
.ray-template--dark .app-menu__sider {
box-shadow: 2px 0 8px $layoutShadowColorDark;
}

View File

@ -67,7 +67,7 @@ export default defineComponent({
const BasicMenu = () => ( const BasicMenu = () => (
<NLayoutSider <NLayoutSider
bordered class="app-menu__sider"
showTrigger={!isTabletOrSmaller.value} showTrigger={!isTabletOrSmaller.value}
collapseMode={APP_MENU_CONFIG.menuCollapsedMode} collapseMode={APP_MENU_CONFIG.menuCollapsedMode}
collapsedWidth={APP_MENU_CONFIG.menuCollapsedWidth} collapsedWidth={APP_MENU_CONFIG.menuCollapsedWidth}
@ -95,7 +95,7 @@ export default defineComponent({
return { return {
isTabletOrSmaller, isTabletOrSmaller,
BasicMenu: BasicMenu, BasicMenu,
modelGlobalDrawerValue, modelGlobalDrawerValue,
} }
}, },

View File

@ -3,7 +3,6 @@ $menuTagWrapperWidth: 76px;
.menu-tag { .menu-tag {
height: $layoutMenuHeight; height: $layoutMenuHeight;
border-bottom: solid 1px var(--n-border-color);
display: flex; display: flex;
align-items: center; align-items: center;
padding: 6px 0; padding: 6px 0;
@ -87,3 +86,11 @@ $menuTagWrapperWidth: 76px;
.menu-tag__right-setting--spinning { .menu-tag__right-setting--spinning {
animation: elementRotate 0.8s linear infinite; animation: elementRotate 0.8s linear infinite;
} }
.ray-template--light .menu-tag {
box-shadow: 0 2px 2px $layoutShadowColorLight;
}
.ray-template--dark .menu-tag {
box-shadow: 0 2px 2px $layoutShadowColorDark;
}

View File

@ -8,3 +8,11 @@
width: 100%; width: 100%;
} }
} }
.ray-template--light .layout-header {
box-shadow: 0 1px 2px $layoutShadowColorLight;
}
.ray-template--dark .layout-header {
box-shadow: 0 1px 2px $layoutShadowColorDark;
}

View File

@ -140,7 +140,7 @@ export default defineComponent({
const { toolIconClick, updateLocale, isRenderVNode } = this const { toolIconClick, updateLocale, isRenderVNode } = this
return ( return (
<NLayoutHeader class="layout-header" bordered> <NLayoutHeader class="layout-header">
<GlobalSearch v-model:show={this.globalSearchShown} /> <GlobalSearch v-model:show={this.globalSearchShown} />
<NFlex <NFlex
class="layout-header__method" class="layout-header__method"

View File

@ -21,3 +21,11 @@
} }
} }
} }
.ray-template--light .r-layout-full__viewer-content {
box-shadow: 0 -1px 2px $layoutShadowColorLight;
}
.ray-template--dark .r-layout-full__viewer-content {
box-shadow: 0 -1px 2px $layoutShadowColorDark;
}

View File

@ -54,7 +54,7 @@ export const piniaSigningStore = defineStore(
state.signingCallback = { state.signingCallback = {
role: 'admin', role: 'admin',
name: SigningForm.name, name: SigningForm.name,
avatar: 'https://r2chevereto.yka.moe/longmao.navigator.png', avatar: 'https://avatars.githubusercontent.com/u/51957438?v=4',
} }
resolve({ resolve({
@ -79,7 +79,7 @@ export const piniaSigningStore = defineStore(
*/ */
const logout = () => { const logout = () => {
window.$message.info('账号退出中...') window.$message.info('账号退出中...')
removeStorage('__all_sessionStorage__') removeStorage('__all_sessionStorage__', 'sessionStorage')
setTimeout(() => window.location.reload()) setTimeout(() => window.location.reload())
} }

View File

@ -9,3 +9,6 @@ $layoutContentBackgroundColorLight: #f7f9f8;
$layoutFooterBackgroundColorDark: rgba(24, 24, 28, 1); $layoutFooterBackgroundColorDark: rgba(24, 24, 28, 1);
// 底部区域背景色light // 底部区域背景色light
$layoutFooterBackgroundColorLight: rgba(255, 255, 255, 1); $layoutFooterBackgroundColorLight: rgba(255, 255, 255, 1);
// 区域阴影
$layoutShadowColorLight: #0000001f;
$layoutShadowColorDark: #000000b8;

View File

@ -9,7 +9,17 @@ export type RemoveStorageKey =
| '__all_sessionStorage__' | '__all_sessionStorage__'
| '__all_localStorage__' | '__all_localStorage__'
export type RemoveStorageType = StorageLike export type RemoveStorageFC = <T extends RemoveStorageKey>(
key: T,
storageType: T extends '__all__'
? 'all'
: T extends '__all_sessionStorage__'
? 'sessionStorage'
: T extends '__all_localStorage__'
? 'localStorage'
: StorageLike,
options?: StorageOptions,
) => void
export type ValidateValueType = export type ValidateValueType =
| 'BigUint64Array' | 'BigUint64Array'

View File

@ -11,12 +11,7 @@
import { APP_CATCH_KEY_PREFIX } from '@/app-config' import { APP_CATCH_KEY_PREFIX } from '@/app-config'
import type { import type { StorageLike, StorageOptions, RemoveStorageFC } from '@/types'
StorageLike,
RemoveStorageKey,
StorageOptions,
RemoveStorageType,
} from '@/types'
/** /**
* *
@ -24,6 +19,7 @@ import type {
* @param storageType * @param storageType
* @param options * @param options
* *
* @description
* key * key
* sessionStorage * sessionStorage
*/ */
@ -46,6 +42,7 @@ function hasStorage(
* @param type * @param type
* @param options * @param options
* *
* @description
* sessionStorage * sessionStorage
*/ */
function setStorage<T = unknown>( function setStorage<T = unknown>(
@ -97,6 +94,7 @@ function getStorage<T = unknown>(
* @param type * @param type
* @param options * @param options
* *
* @description
* sessionStorage * sessionStorage
*/ */
function getStorage<T = unknown>( function getStorage<T = unknown>(
@ -134,27 +132,23 @@ function getStorage<T = unknown>(
* @param type * @param type
* @param options * @param options
* *
* @description
* sessionStorage * sessionStorage
* *
* __all____all_sessionStorage____all_localStorage__ key * __all____all_sessionStorage____all_localStorage__ key
* sessionStorage localStorage * sessionStorage localStorage
* *
* @example * @example
* removeStorage('__all__') // 清空所有缓存 * removeStorage('__all__', 'all') // 清空所有缓存
* removeStorage('__all_sessionStorage__') // 清空 sessionStorage 缓存 * removeStorage('__all_sessionStorage__', 'sessionStorage') // 清空 sessionStorage 缓存
* removeStorage('__all_localStorage__') // 清空 localStorage 缓存 * removeStorage('__all_localStorage__', 'localStorage') // 清空 localStorage 缓存
* removeStorage('signing') // 清空 session 中 signing 缓存字段 * removeStorage('signing', 'sessionStorage' || 'localStorage') // 清空 session 中 signing 缓存字段
*/ */
function removeStorage( const removeStorage: RemoveStorageFC = (key, storageType, options) => {
key: RemoveStorageKey,
storageType: RemoveStorageType = 'sessionStorage',
options?: StorageOptions,
) {
if (!key) { if (!key) {
console.error( console.error(
`[removeStorage]: Failed to remove stored data: key ${key} is empty or undefined`, `[removeStorage]: Failed to remove stored data: key ${key} is empty or undefined`,
) )
return return
} }
@ -169,7 +163,6 @@ function removeStorage(
: removeType === 'localStorage' : removeType === 'localStorage'
? localStorageKeys ? localStorageKeys
: sessionStorageKeys : sessionStorageKeys
keys.forEach((curr) => { keys.forEach((curr) => {
if (key === '__all__') { if (key === '__all__') {
window.sessionStorage.removeItem(_prefix + curr) window.sessionStorage.removeItem(_prefix + curr)