feat: adapt vue3.5 feat

This commit is contained in:
chenxin 2024-09-05 17:05:55 +08:00
parent c14ebc2343
commit e450a029ac
20 changed files with 87 additions and 99 deletions

View File

@ -11,6 +11,7 @@ export default antfu(
}, },
vue: { vue: {
overrides: { overrides: {
'vue/no-unused-refs': 'off', // 暂时关闭等待vue-lint的分支合并
'vue/no-reserved-component-names': 'off', 'vue/no-reserved-component-names': 'off',
'vue/component-definition-name-casing': 'off', 'vue/component-definition-name-casing': 'off',
}, },

View File

@ -3,7 +3,7 @@ interface Props {
message: string message: string
} }
const props = defineProps<Props>() const { message } = defineProps<Props>()
</script> </script>
<template> <template>
@ -11,6 +11,6 @@ const props = defineProps<Props>()
<template #trigger> <template #trigger>
<icon-park-outline-help class="op-50 cursor-help" /> <icon-park-outline-help class="op-50 cursor-help" />
</template> </template>
{{ props.message }} {{ message }}
</n-tooltip> </n-tooltip>
</template> </template>

View File

@ -5,9 +5,9 @@ interface Props {
disabled?: boolean disabled?: boolean
} }
const props = withDefaults(defineProps<Props>(), { const {
disabled: false, disabled = false,
}) } = defineProps<Props>()
interface IconList { interface IconList {
prefix: string prefix: string
@ -125,13 +125,13 @@ function clearIcon() {
<template> <template>
<n-input-group disabled> <n-input-group disabled>
<n-button v-if="value" :disabled="props.disabled" type="primary"> <n-button v-if="value" :disabled="disabled" type="primary">
<template #icon> <template #icon>
<nova-icon :icon="value" /> <nova-icon :icon="value" />
</template> </template>
</n-button> </n-button>
<n-input :value="value" readonly :placeholder="$t('components.iconSelector.inputPlaceholder')" /> <n-input :value="value" readonly :placeholder="$t('components.iconSelector.inputPlaceholder')" />
<n-button type="primary" ghost :disabled="props.disabled" @click="showModal = true"> <n-button type="primary" ghost :disabled="disabled" @click="showModal = true">
{{ $t('common.choose') }} {{ $t('common.choose') }}
</n-button> </n-button>
</n-input-group> </n-input-group>

View File

@ -11,12 +11,10 @@ interface iconPorps {
/* 图标深度 */ /* 图标深度 */
depth?: 1 | 2 | 3 | 4 | 5 depth?: 1 | 2 | 3 | 4 | 5
} }
const props = withDefaults(defineProps<iconPorps>(), { const { size = 18, icon } = defineProps<iconPorps>()
size: 18,
})
const isLocal = computed(() => { const isLocal = computed(() => {
return props.icon && props.icon.startsWith('local:') return icon && icon.startsWith('local:')
}) })
function getLocalIcon(icon: string) { function getLocalIcon(icon: string) {

View File

@ -1,10 +1,10 @@
<script setup lang="ts"> <script setup lang="ts">
const props = defineProps({ interface Props {
count: { count?: number
type: Number, }
default: 0, const {
}, count = 0,
}) } = defineProps<Props>()
const emit = defineEmits<{ const emit = defineEmits<{
change: [page: number, pageSize: number] // change: [page: number, pageSize: number] //
@ -21,11 +21,11 @@ function changePage() {
<template> <template>
<n-pagination <n-pagination
v-if="props.count > 0" v-if="count > 0"
v-model:page="page" v-model:page="page"
v-model:page-size="pageSize" v-model:page-size="pageSize"
:page-sizes="[10, 20, 30, 50]" :page-sizes="[10, 20, 30, 50]"
:item-count="props.count" :item-count="count"
:display-order="displayOrder" :display-order="displayOrder"
show-size-picker show-size-picker
@update-page="changePage" @update-page="changePage"

View File

@ -3,16 +3,15 @@ interface Props {
showWatermark: boolean showWatermark: boolean
text?: string text?: string
} }
const props = withDefaults(defineProps<Props>(), { const {
showWatermark: false, text = 'Watermark',
text: 'Watermark', } = defineProps<Props>()
})
</script> </script>
<template> <template>
<n-watermark <n-watermark
v-if="props.showWatermark" v-if="showWatermark"
:content="props.text" :content="text"
cross cross
fullscreen fullscreen
:font-size="16" :font-size="16"

View File

@ -1,13 +1,14 @@
<script setup lang="ts"> <script setup lang="ts">
const props = defineProps<{ interface Props {
maxLength?: string maxLength?: string
}>() }
const { maxLength } = defineProps<Props>()
const modelValue = defineModel<string>('value') const modelValue = defineModel<string>('value')
</script> </script>
<template> <template>
<div v-if="modelValue" class="inline-flex items-center gap-0.5em"> <div v-if="modelValue" class="inline-flex items-center gap-0.5em">
<n-ellipsis :style="{ 'max-width': props.maxLength || '12em' }"> <n-ellipsis :style="{ 'max-width': maxLength || '12em' }">
{{ modelValue }} {{ modelValue }}
</n-ellipsis> </n-ellipsis>
<n-tooltip trigger="hover"> <n-tooltip trigger="hover">

View File

@ -7,20 +7,10 @@ import { MdEditor } from 'md-editor-v3'
import 'md-editor-v3/lib/style.css' import 'md-editor-v3/lib/style.css'
import { useAppStore } from '@/store' import { useAppStore } from '@/store'
const props = defineProps<{ const model = defineModel<string>()
modelValue: string
}>()
const emit = defineEmits(['update:modelValue'])
const appStore = useAppStore() const appStore = useAppStore()
const data = useVModel(props, 'modelValue', emit)
const theme = computed(() => {
return appStore.colorMode ? 'dark' : 'light'
})
const toolbarsExclude: ToolbarNames[] = [ const toolbarsExclude: ToolbarNames[] = [
'mermaid', 'mermaid',
'katex', 'katex',
@ -32,7 +22,7 @@ const toolbarsExclude: ToolbarNames[] = [
<template> <template>
<MdEditor <MdEditor
v-model="data" :theme="theme" :toolbars-exclude="toolbarsExclude" v-model="model" :theme="appStore.colorMode" :toolbars-exclude="toolbarsExclude"
/> />
</template> </template>

View File

@ -1,15 +1,16 @@
<script setup lang="ts"> <script setup lang="ts">
import Quill from 'quill' import Quill from 'quill'
import 'quill/dist/quill.snow.css' import 'quill/dist/quill.snow.css'
import { useTemplateRef } from 'vue'
defineOptions({ defineOptions({
name: 'RichTextEditor', name: 'RichTextEditor',
}) })
const props = defineProps<{ const { disabled } = defineProps<Props>()
interface Props {
disabled?: boolean disabled?: boolean
}>() }
const model = defineModel<string>() const model = defineModel<string>()
let editorInst = null let editorInst = null
@ -20,7 +21,7 @@ onMounted(() => {
initEditor() initEditor()
}) })
const editorRef = ref() const editorRef = useTemplateRef<HTMLInputElement>('editorRef')
function initEditor() { function initEditor() {
const options = { const options = {
modules: { modules: {
@ -52,13 +53,13 @@ function initEditor() {
placeholder: 'Insert text here ...', placeholder: 'Insert text here ...',
theme: 'snow', theme: 'snow',
} }
const quill = new Quill(editorRef.value, options) const quill = new Quill(editorRef.value!, options)
quill.on('text-change', (_delta, _oldDelta, _source) => { quill.on('text-change', (_delta, _oldDelta, _source) => {
editorModel.value = quill.getSemanticHTML() editorModel.value = quill.getSemanticHTML()
}) })
if (props.disabled) if (disabled)
quill.enable(false) quill.enable(false)
editorInst = quill editorInst = quill
@ -92,7 +93,7 @@ watch(editorModel, (newValue, oldValue) => {
}) })
watch( watch(
() => props.disabled, () => disabled,
(newValue, _oldValue) => { (newValue, _oldValue) => {
editorInst!.enable(!newValue) editorInst!.enable(!newValue)
}, },

View File

@ -1,6 +1,6 @@
import * as echarts from 'echarts/core' import * as echarts from 'echarts/core'
import { BarChart, LineChart, PieChart, RadarChart } from 'echarts/charts' import { BarChart, LineChart, PieChart, RadarChart } from 'echarts/charts'
import { useTemplateRef } from 'vue'
// 系列类型的定义后缀都为 SeriesOption // 系列类型的定义后缀都为 SeriesOption
import type { import type {
BarSeriesOption, BarSeriesOption,
@ -68,7 +68,9 @@ echarts.use([
* Echarts hooks函数 * Echarts hooks函数
* @description * @description
*/ */
export function useEcharts(el: Ref<HTMLElement | null>, chartOptions: Ref<ECOption>) { export function useEcharts(ref: string, chartOptions: Ref<ECOption>) {
const el = useTemplateRef<HTMLLIElement>(ref)
const appStore = useAppStore() const appStore = useAppStore()
let chart: echarts.ECharts | null = null let chart: echarts.ECharts | null = null

View File

@ -2,7 +2,7 @@
interface Props { interface Props {
list?: Entity.Message[] list?: Entity.Message[]
} }
const props = defineProps<Props>() const { list } = defineProps<Props>()
const emit = defineEmits<Emits>() const emit = defineEmits<Emits>()
interface Emits { interface Emits {
@ -13,7 +13,7 @@ interface Emits {
<template> <template>
<n-scrollbar style="height: 400px"> <n-scrollbar style="height: 400px">
<n-list hoverable clickable> <n-list hoverable clickable>
<n-list-item v-for="(item) in props.list" :key="item.id" @click="emit('read', item.id)"> <n-list-item v-for="(item) in list" :key="item.id" @click="emit('read', item.id)">
<n-thing content-indented :class="{ 'opacity-30': item.isRead }"> <n-thing content-indented :class="{ 'opacity-30': item.isRead }">
<template #header> <template #header>
<n-ellipsis :line-clamp="1"> <n-ellipsis :line-clamp="1">

View File

@ -114,8 +114,7 @@ const lineOptions = ref<ECOption>({
}], }],
}) as Ref<ECOption> }) as Ref<ECOption>
const lineRef = ref<HTMLElement | null>(null) useEcharts('lineRef', lineOptions)
useEcharts(lineRef, lineOptions)
</script> </script>
<template> <template>

View File

@ -91,8 +91,7 @@ const option = ref<ECOption>({
}], }],
}) as Ref<ECOption> }) as Ref<ECOption>
const lineRef = ref<HTMLElement | null>(null) useEcharts('lineRef', option)
useEcharts(lineRef, option)
</script> </script>
<template> <template>

View File

@ -50,8 +50,7 @@ const option = ref<ECOption>({
}, },
], ],
}) as Ref<ECOption> }) as Ref<ECOption>
const lineRef = ref<HTMLElement | null>(null) useEcharts('lineRef', option)
useEcharts(lineRef, option)
</script> </script>
<template> <template>

View File

@ -99,8 +99,7 @@ const lineOptions = ref<ECOption>({
}, },
], ],
}) as Ref<ECOption> }) as Ref<ECOption>
const lineRef = ref<HTMLElement | null>(null) useEcharts('lineRef', lineOptions)
useEcharts(lineRef, lineOptions)
</script> </script>
<template> <template>

View File

@ -54,8 +54,7 @@ const pieOptions = ref<ECOption>({
}, },
], ],
}) })
const pieRef = ref<HTMLElement | null>(null) const { update } = useEcharts('pieRef', pieOptions)
const { update } = useEcharts(pieRef, pieOptions)
const randomValue = () => Math.round(Math.random() * 100) const randomValue = () => Math.round(Math.random() * 100)
function updatePieChart() { function updatePieChart() {
@ -266,8 +265,7 @@ const lineOptions = ref<ECOption>({
}, },
], ],
}) })
const lineRef = ref<HTMLElement | null>(null) useEcharts('lineRef', lineOptions)
useEcharts(lineRef, lineOptions)
// //
const barOptions = ref<ECOption>({ const barOptions = ref<ECOption>({
@ -407,8 +405,7 @@ const barOptions = ref<ECOption>({
}, },
], ],
}) })
const barRef = ref<HTMLElement | null>(null) useEcharts('barRef', barOptions)
useEcharts(barRef, barOptions)
// //
const radarOptions = ref<ECOption>({ const radarOptions = ref<ECOption>({
@ -501,8 +498,7 @@ const radarOptions = ref<ECOption>({
}, },
], ],
}) })
const radarRef = ref<HTMLElement | null>(null) useEcharts('radarRef', radarOptions)
useEcharts(radarRef, radarOptions)
</script> </script>
<template> <template>

View File

@ -1,8 +1,15 @@
<script setup lang="ts"> <script setup lang="ts">
const props = withDefaults(defineProps<Props>(), { interface Props {
type: 'add', visible: boolean
modalData: null, type?: ModalType
}) modalData?: any
}
const {
visible,
type = 'add',
modalData = null,
} = defineProps<Props>()
const emit = defineEmits<Emits>() const emit = defineEmits<Emits>()
const defaultFormModal: Entity.User = { const defaultFormModal: Entity.User = {
userName: '', userName: '',
@ -12,18 +19,13 @@ const defaultFormModal: Entity.User = {
} }
const formModel = ref({ ...defaultFormModal }) const formModel = ref({ ...defaultFormModal })
interface Props {
visible: boolean
type?: ModalType
modalData?: any
}
interface Emits { interface Emits {
(e: 'update:visible', visible: boolean): void (e: 'update:visible', visible: boolean): void
} }
const modalVisible = computed({ const modalVisible = computed({
get() { get() {
return props.visible return visible
}, },
set(visible) { set(visible) {
closeModal(visible) closeModal(visible)
@ -38,7 +40,7 @@ const title = computed(() => {
add: '添加用户', add: '添加用户',
edit: '编辑用户', edit: '编辑用户',
} }
return titles[props.type] return titles[type]
}) })
function UpdateFormModelByModalType() { function UpdateFormModelByModalType() {
@ -47,14 +49,14 @@ function UpdateFormModelByModalType() {
formModel.value = { ...defaultFormModal } formModel.value = { ...defaultFormModal }
}, },
edit: () => { edit: () => {
if (props.modalData) if (modalData)
formModel.value = { ...props.modalData } formModel.value = { ...modalData }
}, },
} }
handlers[props.type]() handlers[type]()
} }
watch( watch(
() => props.visible, () => visible,
(newValue) => { (newValue) => {
if (newValue) if (newValue)
UpdateFormModelByModalType() UpdateFormModelByModalType()

View File

@ -6,9 +6,9 @@ interface Props {
modalName?: string modalName?: string
} }
const props = withDefaults(defineProps<Props>(), { const {
modalName: '', modalName = '',
}) } = defineProps<Props>()
const emit = defineEmits<{ const emit = defineEmits<{
open: [] open: []
@ -36,7 +36,7 @@ const modalTitle = computed(() => {
view: '查看', view: '查看',
edit: '编辑', edit: '编辑',
} }
return `${titleMap[modalType.value]}${props.modalName}` return `${titleMap[modalType.value]}${modalName}`
}) })
async function openModal(type: ModalType = 'add', data: any) { async function openModal(type: ModalType = 'add', data: any) {

View File

@ -8,10 +8,11 @@ interface Props {
isRoot?: boolean isRoot?: boolean
} }
const props = withDefaults(defineProps<Props>(), { const {
modalName: '', modalName = '',
isRoot: false, dictCode,
}) isRoot = false,
} = defineProps<Props>()
const emit = defineEmits<{ const emit = defineEmits<{
open: [] open: []
@ -36,7 +37,7 @@ const modalTitle = computed(() => {
view: '查看', view: '查看',
edit: '编辑', edit: '编辑',
} }
return `${titleMap[modalType.value]}${props.modalName}` return `${titleMap[modalType.value]}${modalName}`
}) })
async function openModal(type: ModalType = 'add', data?: any) { async function openModal(type: ModalType = 'add', data?: any) {
@ -47,9 +48,9 @@ async function openModal(type: ModalType = 'add', data?: any) {
async add() { async add() {
formModel.value = { ...formDefault } formModel.value = { ...formDefault }
formModel.value.isRoot = props.isRoot ? 1 : 0 formModel.value.isRoot = isRoot ? 1 : 0
if (props.dictCode) { if (dictCode) {
formModel.value.code = props.dictCode formModel.value.code = dictCode
} }
}, },
async view() { async view() {

View File

@ -12,9 +12,10 @@ interface Props {
allRoutes: AppRoute.RowRoute[] allRoutes: AppRoute.RowRoute[]
} }
const props = withDefaults(defineProps<Props>(), { const {
modalName: '', modalName = '',
}) allRoutes,
} = defineProps<Props>()
const emit = defineEmits<{ const emit = defineEmits<{
open: [] open: []
@ -47,7 +48,7 @@ const modalTitle = computed(() => {
view: '查看', view: '查看',
edit: '编辑', edit: '编辑',
} }
return `${titleMap[modalType.value]}${props.modalName}` return `${titleMap[modalType.value]}${modalName}`
}) })
async function openModal(type: ModalType = 'add', data: AppRoute.RowRoute) { async function openModal(type: ModalType = 'add', data: AppRoute.RowRoute) {
@ -112,7 +113,7 @@ async function submitModal() {
} }
const dirTreeOptions = computed(() => { const dirTreeOptions = computed(() => {
return filterDirectory(JSON.parse(JSON.stringify(props.allRoutes))) return filterDirectory(JSON.parse(JSON.stringify(allRoutes)))
}) })
function filterDirectory(node: any[]) { function filterDirectory(node: any[]) {