mirror of
https://github.com/chansee97/nova-admin.git
synced 2025-04-06 03:57:54 +08:00
feat: add useDefault
This commit is contained in:
parent
448f3ba494
commit
4aa3a66ce9
@ -1,4 +1,4 @@
|
|||||||
export * from './useBoolean'
|
export * from './useBoolean'
|
||||||
export * from './useEcharts'
|
export * from './useEcharts'
|
||||||
export * from './usePermission'
|
export * from './usePermission'
|
||||||
export * from './refForm'
|
export * from './useDefault'
|
||||||
|
@ -1,15 +0,0 @@
|
|||||||
export function refForm<T>(initValue: T) {
|
|
||||||
function jsonClone(value: T) {
|
|
||||||
return JSON.parse(JSON.stringify(value))
|
|
||||||
}
|
|
||||||
const target = ref<T>(initValue)
|
|
||||||
|
|
||||||
function setDefault() {
|
|
||||||
target.value = jsonClone(initValue)
|
|
||||||
}
|
|
||||||
|
|
||||||
return {
|
|
||||||
target,
|
|
||||||
setDefault,
|
|
||||||
}
|
|
||||||
}
|
|
15
src/hooks/useDefault.ts
Normal file
15
src/hooks/useDefault.ts
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
/**
|
||||||
|
* Apply default value to a ref.
|
||||||
|
*/
|
||||||
|
export function useDefault<T>(defaultValue: T): Ref<T> {
|
||||||
|
const source: Ref<T | undefined | null> = ref()
|
||||||
|
|
||||||
|
return computed({
|
||||||
|
get() {
|
||||||
|
return source.value ?? defaultValue
|
||||||
|
},
|
||||||
|
set(value) {
|
||||||
|
source.value = value
|
||||||
|
},
|
||||||
|
})
|
||||||
|
}
|
@ -1,5 +1,5 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { refForm, useBoolean } from '@/hooks'
|
import { useBoolean, useDefault } from '@/hooks'
|
||||||
import { fetchRoleList } from '@/service'
|
import { fetchRoleList } from '@/service'
|
||||||
|
|
||||||
interface Props {
|
interface Props {
|
||||||
@ -19,7 +19,7 @@ const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoo
|
|||||||
|
|
||||||
const { bool: submitLoading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
const { bool: submitLoading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
||||||
|
|
||||||
const { target: formModel, setDefault } = refForm<Entity.User>({
|
const formModel = useDefault<Entity.User>({
|
||||||
userName: '',
|
userName: '',
|
||||||
gender: undefined,
|
gender: undefined,
|
||||||
email: '',
|
email: '',
|
||||||
@ -46,7 +46,8 @@ async function openModal(type: ModalType = 'add', data: any) {
|
|||||||
getRoleList()
|
getRoleList()
|
||||||
const handlers = {
|
const handlers = {
|
||||||
async add() {
|
async add() {
|
||||||
setDefault()
|
// @ts-expect-error undefined is safe
|
||||||
|
formModel.value = undefined
|
||||||
},
|
},
|
||||||
async view() {
|
async view() {
|
||||||
if (!data)
|
if (!data)
|
||||||
|
@ -3,7 +3,7 @@ import type {
|
|||||||
FormItemRule,
|
FormItemRule,
|
||||||
} from 'naive-ui'
|
} from 'naive-ui'
|
||||||
import HelpInfo from '@/components/common/HelpInfo.vue'
|
import HelpInfo from '@/components/common/HelpInfo.vue'
|
||||||
import { refForm, useBoolean } from '@/hooks'
|
import { useBoolean, useDefault } from '@/hooks'
|
||||||
import { Regex } from '@/constants'
|
import { Regex } from '@/constants'
|
||||||
import { fetchRoleList } from '@/service'
|
import { fetchRoleList } from '@/service'
|
||||||
|
|
||||||
@ -24,7 +24,7 @@ const emit = defineEmits<{
|
|||||||
const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoolean(false)
|
const { bool: modalVisible, setTrue: showModal, setFalse: hiddenModal } = useBoolean(false)
|
||||||
const { bool: submitLoading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
const { bool: submitLoading, setTrue: startLoading, setFalse: endLoading } = useBoolean(false)
|
||||||
|
|
||||||
const { target: formModel, setDefault } = refForm<AppRoute.RowRoute>({
|
const formModel = useDefault<AppRoute.RowRoute>({
|
||||||
'name': '',
|
'name': '',
|
||||||
'path': '',
|
'path': '',
|
||||||
'id': -1,
|
'id': -1,
|
||||||
@ -61,7 +61,8 @@ async function openModal(type: ModalType = 'add', data: AppRoute.RowRoute) {
|
|||||||
showModal()
|
showModal()
|
||||||
const handlers = {
|
const handlers = {
|
||||||
async add() {
|
async add() {
|
||||||
setDefault()
|
// @ts-expect-error undefined is safe
|
||||||
|
formModel.value = undefined
|
||||||
},
|
},
|
||||||
async view() {
|
async view() {
|
||||||
if (!data)
|
if (!data)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user