v3.0.7,新增全屏加载动画,修复一些小问题

This commit is contained in:
ray_wuhao 2023-01-22 22:18:34 +08:00
parent 0daa891e11
commit 61fdc3ff95
11 changed files with 131 additions and 21 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "ray-template", "name": "ray-template",
"private": true, "private": true,
"version": "3.0.6", "version": "3.0.7",
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",

View File

@ -1,12 +1,18 @@
import RayGlobalProvider from '@/components/RayGlobalProvider/index' import RayGlobalProvider from '@/components/RayGlobalProvider/index'
import { RouterView } from 'vue-router' import { RouterView } from 'vue-router'
import GlobalSpin from '@/spin/index'
const App = defineComponent({ const App = defineComponent({
name: 'App', name: 'App',
render() { render() {
return ( return (
<RayGlobalProvider> <RayGlobalProvider>
<RouterView /> <GlobalSpin>
{{
default: () => <RouterView />,
description: () => 'lodaing...',
}}
</GlobalSpin>
</RayGlobalProvider> </RayGlobalProvider>
) )
}, },

View File

@ -11,14 +11,18 @@ import { useSetting } from '@/store'
const Layout = defineComponent({ const Layout = defineComponent({
name: 'Layout', name: 'Layout',
setup() { setup() {
const menuStore = useSetting() const settingStore = useSetting()
const { height: windowHeight } = useWindowSize() const { height: windowHeight } = useWindowSize()
const modelReloadRoute = computed(() => menuStore.reloadRouteSwitch) const {
const modelMenuTagSwitch = computed(() => menuStore.menuTagSwitch) themeValue,
reloadRouteSwitch: modelReloadRoute,
menuTagSwitch: modelMenuTagSwitch,
} = storeToRefs(settingStore)
const cssVarsRef = computed(() => { const cssVarsRef = computed(() => {
let cssVar = {} let cssVar = {}
if (menuStore.menuTagSwitch) { if (settingStore.menuTagSwitch) {
cssVar = { cssVar = {
'--layout-content-height': 'calc(100% - 110px)', '--layout-content-height': 'calc(100% - 110px)',
} }
@ -40,12 +44,13 @@ const Layout = defineComponent({
modelMenuTagSwitch, modelMenuTagSwitch,
cssVarsRef, cssVarsRef,
copyright, copyright,
themeValue,
} }
}, },
render() { render() {
return ( return (
<div <div
class="layout" class={['layout', this.themeValue ? 'layout--dark' : '']}
style={[`height: ${this.windowHeight}px`, this.cssVarsRef]} style={[`height: ${this.windowHeight}px`, this.cssVarsRef]}
> >
<NLayout class="layout-full" hasSider> <NLayout class="layout-full" hasSider>

9
src/spin/hook.ts Normal file
View File

@ -0,0 +1,9 @@
export const spinValue = ref(false)
/**
*
* @param bool has spin
*
* @remark 使 spin
*/
export const useSpin = (bool: boolean) => (spinValue.value = bool)

67
src/spin/index.tsx Normal file
View File

@ -0,0 +1,67 @@
/**
*
* @author Ray <https://github.com/XiaoDaiGua-Ray>
*
* @date 2023-01-18
*
* @workspace ray-template
*
* @remark
*/
import { NSpin } from 'naive-ui'
import { spinProps } from 'naive-ui'
import { spinValue } from './hook'
export { useSpin } from './hook'
const GlobalSpin = defineComponent({
name: 'GlobalSpin',
props: {
...spinProps,
},
setup() {
const overrides = {
opacitySpinning: '0',
}
return {
spinValue,
overrides,
}
},
render() {
return (
<NSpin
{...this.$props}
show={this.spinValue}
themeOverrides={this.overrides}
>
{{
default: () => this.$slots.default?.(),
description: () => this.$slots.description?.(),
}}
</NSpin>
)
},
})
export default GlobalSpin
/**
*
*
*
* Naive UI Spin
*
* 使
* 1. import { useSpin } from '@/spin'
* 2. useSpin(true) | useSpin(false)
*
*
*
*
* 1. ,
* 2. 使
*/

View File

@ -14,6 +14,7 @@ export const useSetting = defineStore(
reloadRouteSwitch: true, // 刷新路由开关 reloadRouteSwitch: true, // 刷新路由开关
menuTagSwitch: true, // 多标签页开关 menuTagSwitch: true, // 多标签页开关
naiveLocal: getDefaultNaiveLocal(), // `naive ui` 语言包 naiveLocal: getDefaultNaiveLocal(), // `naive ui` 语言包
spinSwitch: false, // 全屏加载
}) })
const { locale } = useI18n() const { locale } = useI18n()
@ -33,9 +34,15 @@ export const useSetting = defineStore(
* @param key `settingState` * @param key `settingState`
* *
* @remark `boolean` * @remark `boolean`
* @remark 不知道如何写: 返回属性中所有指定类型值...
*/ */
const changeSwitcher = (bool: boolean, key: keyof typeof settingState) => { const changeSwitcher = (bool: boolean, key: keyof typeof settingState) => {
;(settingState[key] as unknown) = bool if (
Object.hasOwn(settingState, key) &&
typeof settingState[key] === 'boolean'
) {
;(settingState[key] as unknown) = bool
}
} }
return { return {

5
src/types/component.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
export {}
declare global {
declare type ComponentSize = 'small' | 'medium' | 'large'
}

View File

@ -1,5 +1,6 @@
import { NForm, NFormItem, NInput, NButton } from 'naive-ui' import { NForm, NFormItem, NInput, NButton } from 'naive-ui'
import { setCache } from '@/utils/cache' import { setCache } from '@/utils/cache'
import { useSpin } from '@/spin'
import type { FormInst } from 'naive-ui' import type { FormInst } from 'naive-ui'
@ -16,7 +17,6 @@ const Signin = defineComponent({
const router = useRouter() const router = useRouter()
const signinForm = ref(useSigninForm()) const signinForm = ref(useSigninForm())
const loginFormRef = ref<FormInst>() const loginFormRef = ref<FormInst>()
const loading = ref(false)
const rules = { const rules = {
name: { name: {
@ -33,13 +33,15 @@ const Signin = defineComponent({
const handleLogin = () => { const handleLogin = () => {
loginFormRef.value?.validate((valid) => { loginFormRef.value?.validate((valid) => {
if (!valid) { if (!valid) {
window.$message.info('登陆中...') useSpin(true)
loading.value = true
setTimeout(() => { setTimeout(() => {
router.push('/dashboard') router.push('/dashboard')
useSpin(false)
window.$message.success(`欢迎${signinForm.value.name}登陆~`)
setCache('token', 'tokenValue') setCache('token', 'tokenValue')
setCache('person', signinForm.value) setCache('person', signinForm.value)
}, 2 * 1000) }, 2 * 1000)
@ -54,7 +56,6 @@ const Signin = defineComponent({
loginFormRef, loginFormRef,
handleLogin, handleLogin,
rules, rules,
loading,
t, t,
} }
}, },
@ -78,7 +79,6 @@ const Signin = defineComponent({
style={['width: 100%', 'margin-to: 18px']} style={['width: 100%', 'margin-to: 18px']}
type="primary" type="primary"
onClick={this.handleLogin.bind(this)} onClick={this.handleLogin.bind(this)}
loading={this.loading}
> >
{this.t('LoginModule.Login')} {this.t('LoginModule.Login')}
</NButton> </NButton>

View File

@ -25,6 +25,7 @@ const Login = defineComponent({
const { height: windowHeight } = useWindowSize() const { height: windowHeight } = useWindowSize()
const settingStore = useSetting() const settingStore = useSetting()
const { updateLocale } = settingStore const { updateLocale } = settingStore
return { return {
...toRefs(state), ...toRefs(state),
windowHeight, windowHeight,

View File

@ -20,6 +20,7 @@ import {
NDatePicker, NDatePicker,
NInputNumber, NInputNumber,
NSpace, NSpace,
NSwitch,
} from 'naive-ui' } from 'naive-ui'
import RayTable from '@/components/RayTable/index' import RayTable from '@/components/RayTable/index'
import RayCollapseGrid from '@/components/RayCollapseGrid/index' import RayCollapseGrid from '@/components/RayCollapseGrid/index'
@ -122,8 +123,11 @@ const TableView = defineComponent({
key: 'delete', key: 'delete',
}, },
] ]
const gridItemCount = ref(4) const state = reactive({
const gridCollapsedRows = ref(1) gridItemCount: 4,
gridCollapsedRows: 1,
tableLoading: false,
})
const handleMenuSelect = (key: string | number, idx: number) => { const handleMenuSelect = (key: string | number, idx: number) => {
if (key === 'delete') { if (key === 'delete') {
@ -132,13 +136,12 @@ const TableView = defineComponent({
} }
return { return {
...toRefs(state),
tableData, tableData,
actionColumns, actionColumns,
baseColumns, baseColumns,
tableMenuOptions, tableMenuOptions,
handleMenuSelect, handleMenuSelect,
gridItemCount,
gridCollapsedRows,
} }
}, },
render() { render() {
@ -218,13 +221,20 @@ const TableView = defineComponent({
</NCard> </NCard>
<NCard title="基础使用" style={['margin-top: 18px']}> <NCard title="基础使用" style={['margin-top: 18px']}>
<RayTable <RayTable
title="基础使用" title={h(
NSwitch,
{
onUpdateValue: (value: boolean) => (this.tableLoading = value),
},
{},
)}
data={this.tableData} data={this.tableData}
columns={this.baseColumns} columns={this.baseColumns}
action={false} action={false}
pagination={{ pagination={{
pageSize: 10, pageSize: 10,
}} }}
loading={this.tableLoading}
> >
{{ {{
tableFooter: () => '表格的底部内容区域,有时候你可能会用上', tableFooter: () => '表格的底部内容区域,有时候你可能会用上',

View File

@ -8,7 +8,7 @@ import {
useSVGIcon, useSVGIcon,
} from './vite-plugin/index' } from './vite-plugin/index'
import vueJsx from '@vitejs/plugin-vue-jsx' import ViteVueJSX from '@vitejs/plugin-vue-jsx'
import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite' import VueI18nPlugin 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'
@ -54,7 +54,7 @@ export default defineConfig(async ({ mode }) => {
}, },
plugins: [ plugins: [
vue({ reactivityTransform: true }), vue({ reactivityTransform: true }),
vueJsx(), ViteVueJSX(),
title, title,
ViteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态) ViteInspect(), // 仅适用于开发模式(检查 `Vite` 插件的中间状态)
VueI18nPlugin(), VueI18nPlugin(),