wip(VForm): VForm coding

This commit is contained in:
陈凯龙
2021-12-14 17:42:43 +08:00
parent 7528fe6da6
commit d7d0ada558
11 changed files with 221 additions and 51 deletions

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import { ref, onMounted, unref } from 'vue'
import { ref, onMounted, unref, reactive } from 'vue'
import { ElConfigProvider } from 'element-plus'
import zhCn from 'element-plus/lib/locale/lang/zh-cn'
// import en from 'element-plus/lib/locale/lang/en'
@@ -9,21 +9,29 @@ const formRef = ref<ComponentRef<typeof VFrom> & VFormExpose>()
onMounted(() => {
const form = unref(formRef.value)
console.log(form?.$el)
const schema: VFormSchema = [
{
field: '1',
colProps: {}
}
]
console.log(schema)
})
const schema = reactive<VFormSchema[]>([
{
field: 'field1',
label: '字段1',
component: 'Input'
}
])
// setTimeout(() => {
// schema.push({
// field: '2'
// })
// }, 3000)
</script>
<template>
<ElConfigProvider :locale="zhCn">
<VFrom ref="formRef" />
<Component :is="VFrom" />
<!-- <VFrom ref="formRef" is-custom>
<template #default> hahahah </template>
</VFrom> -->
<VFrom :schema="schema" />
<!-- <VFrom :is-col="false" :schema="schema" /> -->
<!-- <Component :is="VFrom" /> -->
<!-- <RouterView class="app" /> -->
</ElConfigProvider>
</template>

View File

@@ -1,8 +1,10 @@
<script lang="tsx">
import { PropType, defineComponent, onMounted, ref, unref } from 'vue'
import { ElForm } from 'element-plus'
// import { COMPONENT_MAP } from './componentMap'
import { PropType, defineComponent, ref, computed, unref, watch } from 'vue'
import { ElForm, ElFormItem, ElRow, ElCol } from 'element-plus'
import { COMPONENT_MAP } from './componentMap'
import { propTypes } from '@/utils/propTypes'
import { getSlot } from '@/utils/tsxHelper'
import { setTextPlaceholder } from './helper'
export default defineComponent({
name: 'VForm',
@@ -25,17 +27,77 @@ export default defineComponent({
// 是否自定义内容
isCustom: propTypes.bool.def(false)
},
setup() {
setup(props, { slots }) {
const formRef = ref<ComponentRef<typeof ElForm>>()
onMounted(() => {
console.log(unref(formRef)?.clearValidate)
})
const getProps = computed(() => props)
const { schema, isCol, isCustom, autoSetPlaceholder } = unref(getProps)
const test = ref('')
// function renderWrap() {}
watch(
() => test.value,
(val) => {
console.log(val)
}
)
// function renderFormItem() {}
// 渲染包裹标签,是否使用栅格布局
function renderWrap() {
const content = isCol ? (
<ElRow gutter={20}>
<ElCol>{renderFormItem()}</ElCol>
</ElRow>
) : (
renderFormItem()
)
console.log(content)
return content
}
return () => <ElForm ref={formRef}></ElForm>
// 渲染formItem
function renderFormItem() {
// hidden属性表示隐藏
return schema
.filter((v) => !v.hidden)
.map((item) => {
return (
<ElFormItem {...(item.formItemProps || {})} prop={item.field} label={item.label}>
{() => {
const Com = COMPONENT_MAP[item.component as string] as ReturnType<
typeof defineComponent
>
return (
<Com
v-model={test.value}
{...(autoSetPlaceholder && setTextPlaceholder(item))}
></Com>
)
}}
</ElFormItem>
)
})
// return <div>{schema[0]?.field}</div>
}
// 过滤传入Form组件的属性
function getFormBindValue() {
// 避免在标签上出现多余的属性
const delKeys = ['schema', 'isCol', 'autoSetPlaceholder', 'isCustom']
const props = { ...unref(getProps) }
for (const key in props) {
if (delKeys.indexOf(key) !== -1) {
delete props[key]
}
}
return props
}
return () => (
<ElForm ref={formRef} {...getFormBindValue()}>
{{
default: () => (isCustom ? getSlot(slots, 'default') : renderWrap())
}}
</ElForm>
)
}
})
</script>

View File

@@ -1,8 +1,39 @@
// import { useI18n } from '@/hooks/web/useI18n'
// const { t } = useI18n()
/**
*
* @param schema 对应组件数据
* @description 用于自动设置placeholder
*/
export function setTextPlaceholder(schema: VFormSchema) {
export function setTextPlaceholder(schema: VFormSchema): {
placeholder?: string
startPlaceholder?: string
endPlaceholder?: string
} {
console.log(schema)
// const textMap = ['Input', 'Autocomplete', 'InputNumber']
// const selectMap = ['Select', 'TimePicker', 'DatePicker', 'TimeSelect', 'TimeSelect']
// if (textMap.includes(schema?.component as string)) {
// return {
// placeholder: t('common.inputText')
// }
// }
// if (selectMap.includes(schema?.component as string)) {
// // 一些范围选择器
// const twoTextMap = ['datetimerange', 'daterange', 'monthrange', 'datetimerange', 'daterange']
// if (
// twoTextMap.includes(schema?.componentProps?.type || schema?.componentProps?.isRange) as string
// ) {
// return {
// startPlaceholder: t('common.startTimeText'),
// endPlaceholder: t('common.endTimeText'),
// rangeSeparator: '-'
// }
// } else {
// return {
// placeholder: t('common.selectText')
// }
// }
// }
return {}
}

50
src/hooks/web/useI18n.ts Normal file
View File

@@ -0,0 +1,50 @@
// // import { i18n } from '@/plugins/i18n'
// type I18nGlobalTranslation = {
// (key: string): string
// (key: string, locale: string): string
// (key: string, locale: string, list: unknown[]): string
// (key: string, locale: string, named: Record<string, unknown>): string
// (key: string, list: unknown[]): string
// (key: string, named: Record<string, unknown>): string
// }
// type I18nTranslationRestParameters = [string, any]
// function getKey(namespace: string | undefined, key: string) {
// if (!namespace) {
// return key
// }
// if (key.startsWith(namespace)) {
// return key
// }
// return `${namespace}.${key}`
// }
// export function useI18n(namespace?: string): {
// t: I18nGlobalTranslation
// } {
// const normalFn = {
// t: (key: string) => {
// return getKey(namespace, key)
// }
// }
// if (!i18n) {
// return normalFn
// }
// const { t, ...methods } = i18n.global
// const tFn: I18nGlobalTranslation = (key: string, ...arg: any[]) => {
// if (!key) return ''
// if (!key.includes('.') && !namespace) return key
// return t(getKey(namespace, key), ...(arg as I18nTranslationRestParameters))
// }
// return {
// ...methods,
// t: tFn
// }
// }
// export const t = (key: string) => key

View File

@@ -1,18 +1,16 @@
import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
// 引入windi css
import '@/plugins/windicss'
import { createApp } from 'vue'
import App from './App.vue'
const app = createApp(App)
// 引入多语言
import { setupI18n } from '@/plugins/i18n'
setupI18n(app)
// 引入状态管理
import { setupStore } from '@/store'
setupStore(app)
;(async () => {
await setupI18n(app)
app.mount('#app')
setupStore(app)
app.mount('#app')
})()

View File

@@ -1,13 +1,15 @@
import { createI18n } from 'vue-i18n'
import type { App } from 'vue'
// export let i18n: ReturnType<typeof createI18n>
const messages = Object.fromEntries(
Object.entries(import.meta.globEager('../../locales/*.ts')).map(([key, value]) => {
return [key.slice(14, -3), value.default]
})
)
export function setupI18n(app: App<Element>): void {
export function setupI18n(app: App): void {
const i18n = createI18n({
legacy: false,
locale: 'zh-CN',

View File

@@ -1,4 +1,5 @@
import type { Component, RendererNode, VNode, CSSProperties } from 'vue'
import type { RuleItem } from 'async-validator'
declare global {
// BfForm types start
@@ -33,18 +34,18 @@ declare global {
declare type FormValueTypes = string | number | string[] | number[] | boolean | undefined
declare type FormRules = {
required?: boolean
message?: string
type?: string
trigger?: 'blur' | 'change' | ['change', 'blur']
validator?: (rule: any, value: FormValueTypes, callback: Fn) => void | boolean
declare interface FormItemRule extends RuleItem {
trigger?: string
}
declare type FormRulesMap<T extends string = string> = Partial<
Record<T, FormItemRule | FormItemRule[]>
>
declare type FormItemProps = {
labelWidth?: string | number
required?: boolean
rules?: FormRules | FormRules[]
rules?: FormRulesMap
error?: string
showMessage?: boolean
inlineMessage?: boolean
@@ -471,7 +472,7 @@ declare global {
}
}
declare type FormSchema = {
declare type VFormSchema = {
field: string
label?: string
colProps?: ColProps
@@ -502,5 +503,4 @@ declare global {
}
// VForm types end
declare type VFormSchema = FormSchema[]
}

16
src/utils/tsxHelper.ts Normal file
View File

@@ -0,0 +1,16 @@
import { Slots } from 'vue'
import { isFunction } from '@/utils/is'
export function getSlot(slots: Slots, slot = 'default', data?: Recordable) {
// Reflect.has 判断一个对象是否存在某个属性
if (!slots || !Reflect.has(slots, slot)) {
return null
}
if (!isFunction(slots[slot])) {
console.error(`${slot} is not a function!`)
return null
}
const slotFn = slots[slot]
if (!slotFn) return null
return slotFn(data)
}