@finema/core 1.4.85 → 1.4.86
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +63 -63
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/Alert.vue +48 -48
- package/dist/runtime/components/Avatar.vue +27 -27
- package/dist/runtime/components/Badge.vue +53 -53
- package/dist/runtime/components/Breadcrumb.vue +44 -44
- package/dist/runtime/components/Button/Group.vue +37 -37
- package/dist/runtime/components/Button/index.vue +76 -76
- package/dist/runtime/components/Card.vue +38 -38
- package/dist/runtime/components/Core.vue +13 -13
- package/dist/runtime/components/Dialog/index.vue +108 -108
- package/dist/runtime/components/Dropdown/index.vue +70 -70
- package/dist/runtime/components/FlexDeck/Base.vue +77 -77
- package/dist/runtime/components/FlexDeck/index.vue +59 -59
- package/dist/runtime/components/Form/FieldWrapper.vue +23 -23
- package/dist/runtime/components/Form/Fields.vue +160 -160
- package/dist/runtime/components/Form/InputCheckbox/index.vue +21 -21
- package/dist/runtime/components/Form/InputDateTime/index.vue +60 -60
- package/dist/runtime/components/Form/InputNumber/index.vue +27 -27
- package/dist/runtime/components/Form/InputRadio/index.vue +27 -27
- package/dist/runtime/components/Form/InputSelect/index.vue +36 -36
- package/dist/runtime/components/Form/InputStatic/index.vue +16 -16
- package/dist/runtime/components/Form/InputText/index.vue +67 -67
- package/dist/runtime/components/Form/InputTextarea/index.vue +25 -25
- package/dist/runtime/components/Form/InputToggle/index.vue +14 -14
- package/dist/runtime/components/Form/InputUploadDropzone/index.vue +158 -158
- package/dist/runtime/components/Form/InputUploadDropzoneAuto/index.vue +243 -243
- package/dist/runtime/components/Form/InputUploadFileClassic/index.vue +101 -101
- package/dist/runtime/components/Form/InputUploadFileClassicAuto/index.vue +174 -174
- package/dist/runtime/components/Form/index.vue +6 -6
- package/dist/runtime/components/Icon.vue +23 -23
- package/dist/runtime/components/Image.vue +36 -36
- package/dist/runtime/components/Loader.vue +29 -14
- package/dist/runtime/components/Modal/index.vue +146 -146
- package/dist/runtime/components/SimplePagination.vue +96 -96
- package/dist/runtime/components/Slideover/index.vue +110 -110
- package/dist/runtime/components/Table/Base.vue +139 -139
- package/dist/runtime/components/Table/ColumnDate.vue +16 -16
- package/dist/runtime/components/Table/ColumnDateTime.vue +18 -18
- package/dist/runtime/components/Table/ColumnImage.vue +15 -15
- package/dist/runtime/components/Table/ColumnNumber.vue +14 -14
- package/dist/runtime/components/Table/ColumnText.vue +25 -25
- package/dist/runtime/components/Table/Simple.vue +64 -64
- package/dist/runtime/components/Table/index.vue +60 -60
- package/dist/runtime/components/Tabs/index.vue +64 -64
- package/dist/runtime/ui.css +32 -32
- package/package.json +84 -84
|
@@ -1,77 +1,77 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<!-- TODO -->
|
|
3
|
-
<div v-if="pageOptions" class="mt-4 flex justify-between px-3">
|
|
4
|
-
<p class="text-xs text-gray-500">
|
|
5
|
-
ผลลัพธ์ {{ pageBetween }} ของ {{ totalCountWithComma }} รายการ
|
|
6
|
-
</p>
|
|
7
|
-
<UPagination
|
|
8
|
-
v-if="pageOptions.totalPage > 1 && !isSimplePagination && !isHideBottomPagination"
|
|
9
|
-
v-model="page"
|
|
10
|
-
:page-count="pageOptions.limit"
|
|
11
|
-
:total="pageOptions.totalCount"
|
|
12
|
-
/>
|
|
13
|
-
<SimplePagination
|
|
14
|
-
v-if="pageOptions.totalPage > 1 && isSimplePagination"
|
|
15
|
-
v-model="page"
|
|
16
|
-
:page-count="pageOptions.limit"
|
|
17
|
-
:total="pageOptions.totalCount"
|
|
18
|
-
/>
|
|
19
|
-
</div>
|
|
20
|
-
</template>
|
|
21
|
-
|
|
22
|
-
<script lang="ts" setup>
|
|
23
|
-
import { computed, type PropType } from 'vue'
|
|
24
|
-
import { StringHelper } from '#core/utils/StringHelper'
|
|
25
|
-
import { ref, watch } from '#imports'
|
|
26
|
-
import type { IFlexDeckOptions } from '#core/components/FlexDeck/types'
|
|
27
|
-
|
|
28
|
-
const emits = defineEmits(['pageChange'])
|
|
29
|
-
|
|
30
|
-
const props = defineProps({
|
|
31
|
-
status: {
|
|
32
|
-
type: Object as PropType<IFlexDeckOptions['status']>,
|
|
33
|
-
required: true,
|
|
34
|
-
},
|
|
35
|
-
pageOptions: {
|
|
36
|
-
type: Object as PropType<IFlexDeckOptions['pageOptions']>,
|
|
37
|
-
required: false,
|
|
38
|
-
},
|
|
39
|
-
rawData: {
|
|
40
|
-
type: Array as PropType<IFlexDeckOptions['rawData']>,
|
|
41
|
-
required: true,
|
|
42
|
-
},
|
|
43
|
-
isSimplePagination: {
|
|
44
|
-
type: Boolean as PropType<IFlexDeckOptions['isSimplePagination']>,
|
|
45
|
-
default: false,
|
|
46
|
-
},
|
|
47
|
-
isHideBottomPagination: {
|
|
48
|
-
type: Boolean as PropType<IFlexDeckOptions['isHideBottomPagination']>,
|
|
49
|
-
default: false,
|
|
50
|
-
},
|
|
51
|
-
})
|
|
52
|
-
|
|
53
|
-
const page = ref(props.pageOptions?.currentPage || 1)
|
|
54
|
-
|
|
55
|
-
const pageBetween = computed((): string => {
|
|
56
|
-
const length = props.rawData?.length
|
|
57
|
-
|
|
58
|
-
if (length === 0) {
|
|
59
|
-
return '0'
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
const start = (props.pageOptions!.currentPage - 1) * props.pageOptions!.limit + 1
|
|
63
|
-
const end = start + length - 1
|
|
64
|
-
|
|
65
|
-
return `${start} - ${end}`
|
|
66
|
-
})
|
|
67
|
-
|
|
68
|
-
const totalCountWithComma = computed((): string => {
|
|
69
|
-
return !props.pageOptions!.totalCount
|
|
70
|
-
? '0'
|
|
71
|
-
: StringHelper.withComma(props.pageOptions!.totalCount)
|
|
72
|
-
})
|
|
73
|
-
|
|
74
|
-
watch(page, () => {
|
|
75
|
-
emits('pageChange', page.value)
|
|
76
|
-
})
|
|
77
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<!-- TODO -->
|
|
3
|
+
<div v-if="pageOptions" class="mt-4 flex justify-between px-3">
|
|
4
|
+
<p class="text-xs text-gray-500">
|
|
5
|
+
ผลลัพธ์ {{ pageBetween }} ของ {{ totalCountWithComma }} รายการ
|
|
6
|
+
</p>
|
|
7
|
+
<UPagination
|
|
8
|
+
v-if="pageOptions.totalPage > 1 && !isSimplePagination && !isHideBottomPagination"
|
|
9
|
+
v-model="page"
|
|
10
|
+
:page-count="pageOptions.limit"
|
|
11
|
+
:total="pageOptions.totalCount"
|
|
12
|
+
/>
|
|
13
|
+
<SimplePagination
|
|
14
|
+
v-if="pageOptions.totalPage > 1 && isSimplePagination"
|
|
15
|
+
v-model="page"
|
|
16
|
+
:page-count="pageOptions.limit"
|
|
17
|
+
:total="pageOptions.totalCount"
|
|
18
|
+
/>
|
|
19
|
+
</div>
|
|
20
|
+
</template>
|
|
21
|
+
|
|
22
|
+
<script lang="ts" setup>
|
|
23
|
+
import { computed, type PropType } from 'vue'
|
|
24
|
+
import { StringHelper } from '#core/utils/StringHelper'
|
|
25
|
+
import { ref, watch } from '#imports'
|
|
26
|
+
import type { IFlexDeckOptions } from '#core/components/FlexDeck/types'
|
|
27
|
+
|
|
28
|
+
const emits = defineEmits(['pageChange'])
|
|
29
|
+
|
|
30
|
+
const props = defineProps({
|
|
31
|
+
status: {
|
|
32
|
+
type: Object as PropType<IFlexDeckOptions['status']>,
|
|
33
|
+
required: true,
|
|
34
|
+
},
|
|
35
|
+
pageOptions: {
|
|
36
|
+
type: Object as PropType<IFlexDeckOptions['pageOptions']>,
|
|
37
|
+
required: false,
|
|
38
|
+
},
|
|
39
|
+
rawData: {
|
|
40
|
+
type: Array as PropType<IFlexDeckOptions['rawData']>,
|
|
41
|
+
required: true,
|
|
42
|
+
},
|
|
43
|
+
isSimplePagination: {
|
|
44
|
+
type: Boolean as PropType<IFlexDeckOptions['isSimplePagination']>,
|
|
45
|
+
default: false,
|
|
46
|
+
},
|
|
47
|
+
isHideBottomPagination: {
|
|
48
|
+
type: Boolean as PropType<IFlexDeckOptions['isHideBottomPagination']>,
|
|
49
|
+
default: false,
|
|
50
|
+
},
|
|
51
|
+
})
|
|
52
|
+
|
|
53
|
+
const page = ref(props.pageOptions?.currentPage || 1)
|
|
54
|
+
|
|
55
|
+
const pageBetween = computed((): string => {
|
|
56
|
+
const length = props.rawData?.length
|
|
57
|
+
|
|
58
|
+
if (length === 0) {
|
|
59
|
+
return '0'
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
const start = (props.pageOptions!.currentPage - 1) * props.pageOptions!.limit + 1
|
|
63
|
+
const end = start + length - 1
|
|
64
|
+
|
|
65
|
+
return `${start} - ${end}`
|
|
66
|
+
})
|
|
67
|
+
|
|
68
|
+
const totalCountWithComma = computed((): string => {
|
|
69
|
+
return !props.pageOptions!.totalCount
|
|
70
|
+
? '0'
|
|
71
|
+
: StringHelper.withComma(props.pageOptions!.totalCount)
|
|
72
|
+
})
|
|
73
|
+
|
|
74
|
+
watch(page, () => {
|
|
75
|
+
emits('pageChange', page.value)
|
|
76
|
+
})
|
|
77
|
+
</script>
|
|
@@ -1,59 +1,59 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div>
|
|
3
|
-
<div v-if="options.isEnabledSearch" class="mb-4 flex justify-end">
|
|
4
|
-
<UInput
|
|
5
|
-
v-model="q"
|
|
6
|
-
icon="i-heroicons-magnifying-glass"
|
|
7
|
-
:placeholder="options.searchPlaceholder || 'ค้นหา...'"
|
|
8
|
-
/>
|
|
9
|
-
</div>
|
|
10
|
-
<Base
|
|
11
|
-
v-bind="$attrs"
|
|
12
|
-
:raw-data="options.rawData"
|
|
13
|
-
:status="options.status"
|
|
14
|
-
:page-options="options.pageOptions"
|
|
15
|
-
:is-simple-pagination="isShowSimplePagination"
|
|
16
|
-
:is-hide-bottom-pagination="options.isHideBottomPagination"
|
|
17
|
-
@page-change="onPageChange"
|
|
18
|
-
>
|
|
19
|
-
<template v-for="(_, slot) of $slots" #[slot]="slotProps">
|
|
20
|
-
<slot :name="slot" v-bind="slotProps || {}" />
|
|
21
|
-
</template>
|
|
22
|
-
</Base>
|
|
23
|
-
</div>
|
|
24
|
-
</template>
|
|
25
|
-
<script lang="ts" setup>
|
|
26
|
-
import { type PropType } from 'vue'
|
|
27
|
-
import { _debounce, computed, ref, watch } from '#imports'
|
|
28
|
-
import { useCoreConfig } from '#core/composables/useConfig'
|
|
29
|
-
import Base from '#core/components/FlexDeck/Base.vue'
|
|
30
|
-
import type { IFlexDeckOptions } from '#core/components/FlexDeck/types'
|
|
31
|
-
|
|
32
|
-
const emits = defineEmits<{
|
|
33
|
-
(event: 'pageChange', page: number): void
|
|
34
|
-
(event: 'search', q: string): void
|
|
35
|
-
}>()
|
|
36
|
-
|
|
37
|
-
const props = defineProps({
|
|
38
|
-
options: { type: Object as PropType<IFlexDeckOptions>, required: true },
|
|
39
|
-
})
|
|
40
|
-
|
|
41
|
-
const coreConfig = useCoreConfig()
|
|
42
|
-
|
|
43
|
-
const q = ref(props.options?.pageOptions.search ?? '')
|
|
44
|
-
|
|
45
|
-
const isShowSimplePagination = computed(
|
|
46
|
-
(): boolean => props.options.isSimplePagination ?? coreConfig.is_simple_pagination
|
|
47
|
-
)
|
|
48
|
-
|
|
49
|
-
watch(
|
|
50
|
-
q,
|
|
51
|
-
_debounce((value) => {
|
|
52
|
-
emits('search', value)
|
|
53
|
-
}, 500)
|
|
54
|
-
)
|
|
55
|
-
|
|
56
|
-
const onPageChange = (page: number) => {
|
|
57
|
-
emits('pageChange', page)
|
|
58
|
-
}
|
|
59
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div>
|
|
3
|
+
<div v-if="options.isEnabledSearch" class="mb-4 flex justify-end">
|
|
4
|
+
<UInput
|
|
5
|
+
v-model="q"
|
|
6
|
+
icon="i-heroicons-magnifying-glass"
|
|
7
|
+
:placeholder="options.searchPlaceholder || 'ค้นหา...'"
|
|
8
|
+
/>
|
|
9
|
+
</div>
|
|
10
|
+
<Base
|
|
11
|
+
v-bind="$attrs"
|
|
12
|
+
:raw-data="options.rawData"
|
|
13
|
+
:status="options.status"
|
|
14
|
+
:page-options="options.pageOptions"
|
|
15
|
+
:is-simple-pagination="isShowSimplePagination"
|
|
16
|
+
:is-hide-bottom-pagination="options.isHideBottomPagination"
|
|
17
|
+
@page-change="onPageChange"
|
|
18
|
+
>
|
|
19
|
+
<template v-for="(_, slot) of $slots" #[slot]="slotProps">
|
|
20
|
+
<slot :name="slot" v-bind="slotProps || {}" />
|
|
21
|
+
</template>
|
|
22
|
+
</Base>
|
|
23
|
+
</div>
|
|
24
|
+
</template>
|
|
25
|
+
<script lang="ts" setup>
|
|
26
|
+
import { type PropType } from 'vue'
|
|
27
|
+
import { _debounce, computed, ref, watch } from '#imports'
|
|
28
|
+
import { useCoreConfig } from '#core/composables/useConfig'
|
|
29
|
+
import Base from '#core/components/FlexDeck/Base.vue'
|
|
30
|
+
import type { IFlexDeckOptions } from '#core/components/FlexDeck/types'
|
|
31
|
+
|
|
32
|
+
const emits = defineEmits<{
|
|
33
|
+
(event: 'pageChange', page: number): void
|
|
34
|
+
(event: 'search', q: string): void
|
|
35
|
+
}>()
|
|
36
|
+
|
|
37
|
+
const props = defineProps({
|
|
38
|
+
options: { type: Object as PropType<IFlexDeckOptions>, required: true },
|
|
39
|
+
})
|
|
40
|
+
|
|
41
|
+
const coreConfig = useCoreConfig()
|
|
42
|
+
|
|
43
|
+
const q = ref(props.options?.pageOptions.search ?? '')
|
|
44
|
+
|
|
45
|
+
const isShowSimplePagination = computed(
|
|
46
|
+
(): boolean => props.options.isSimplePagination ?? coreConfig.is_simple_pagination
|
|
47
|
+
)
|
|
48
|
+
|
|
49
|
+
watch(
|
|
50
|
+
q,
|
|
51
|
+
_debounce((value) => {
|
|
52
|
+
emits('search', value)
|
|
53
|
+
}, 500)
|
|
54
|
+
)
|
|
55
|
+
|
|
56
|
+
const onPageChange = (page: number) => {
|
|
57
|
+
emits('pageChange', page)
|
|
58
|
+
}
|
|
59
|
+
</script>
|
|
@@ -1,23 +1,23 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<UFormGroup
|
|
3
|
-
:label="label"
|
|
4
|
-
:name="name"
|
|
5
|
-
:description="description"
|
|
6
|
-
:hint="hint"
|
|
7
|
-
:size="size as FormGroupSize"
|
|
8
|
-
:data-testid="name"
|
|
9
|
-
:help="help"
|
|
10
|
-
:error="errorMessage"
|
|
11
|
-
:required="!!isRequired"
|
|
12
|
-
:ui="containerUi"
|
|
13
|
-
>
|
|
14
|
-
<slot />
|
|
15
|
-
</UFormGroup>
|
|
16
|
-
</template>
|
|
17
|
-
|
|
18
|
-
<script lang="ts" setup>
|
|
19
|
-
import { type IFieldProps } from '#core/components/Form/types'
|
|
20
|
-
import type { FormGroupSize } from '#ui/types'
|
|
21
|
-
|
|
22
|
-
defineProps<IFieldProps>()
|
|
23
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<UFormGroup
|
|
3
|
+
:label="label"
|
|
4
|
+
:name="name"
|
|
5
|
+
:description="description"
|
|
6
|
+
:hint="hint"
|
|
7
|
+
:size="size as FormGroupSize"
|
|
8
|
+
:data-testid="name"
|
|
9
|
+
:help="help"
|
|
10
|
+
:error="errorMessage"
|
|
11
|
+
:required="!!isRequired"
|
|
12
|
+
:ui="containerUi"
|
|
13
|
+
>
|
|
14
|
+
<slot />
|
|
15
|
+
</UFormGroup>
|
|
16
|
+
</template>
|
|
17
|
+
|
|
18
|
+
<script lang="ts" setup>
|
|
19
|
+
import { type IFieldProps } from '#core/components/Form/types'
|
|
20
|
+
import type { FormGroupSize } from '#ui/types'
|
|
21
|
+
|
|
22
|
+
defineProps<IFieldProps>()
|
|
23
|
+
</script>
|
|
@@ -1,160 +1,160 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div :class="['fields', $props.class]">
|
|
3
|
-
<template
|
|
4
|
-
v-for="(option, index) in options.filter((item) => !item.isHide)"
|
|
5
|
-
:key="option.props.name + index + option.type"
|
|
6
|
-
>
|
|
7
|
-
<FormInputStatic
|
|
8
|
-
v-if="option.type === INPUT_TYPES.STATIC"
|
|
9
|
-
:class="option.class"
|
|
10
|
-
:form="form"
|
|
11
|
-
v-bind="getFieldBinding(option)"
|
|
12
|
-
v-on="option.on ?? {}"
|
|
13
|
-
/>
|
|
14
|
-
<FormInputText
|
|
15
|
-
v-else-if="option.type === INPUT_TYPES.TEXT"
|
|
16
|
-
:class="option.class"
|
|
17
|
-
:form="form"
|
|
18
|
-
v-bind="getFieldBinding(option)"
|
|
19
|
-
v-on="option.on ?? {}"
|
|
20
|
-
/>
|
|
21
|
-
<FormInputNumber
|
|
22
|
-
v-else-if="option.type === INPUT_TYPES.NUMBER"
|
|
23
|
-
:class="option.class"
|
|
24
|
-
:form="form"
|
|
25
|
-
v-bind="getFieldBinding(option)"
|
|
26
|
-
v-on="option.on ?? {}"
|
|
27
|
-
/>
|
|
28
|
-
<FormInputText
|
|
29
|
-
v-else-if="option.type === INPUT_TYPES.PASSWORD"
|
|
30
|
-
:class="option.class"
|
|
31
|
-
type="password"
|
|
32
|
-
:form="form"
|
|
33
|
-
v-bind="getFieldBinding(option)"
|
|
34
|
-
v-on="option.on ?? {}"
|
|
35
|
-
/>
|
|
36
|
-
<FormInputText
|
|
37
|
-
v-else-if="option.type === INPUT_TYPES.EMAIL"
|
|
38
|
-
:class="option.class"
|
|
39
|
-
type="email"
|
|
40
|
-
:form="form"
|
|
41
|
-
v-bind="getFieldBinding(option)"
|
|
42
|
-
v-on="option.on ?? {}"
|
|
43
|
-
/>
|
|
44
|
-
<FormInputTextarea
|
|
45
|
-
v-else-if="option.type === INPUT_TYPES.TEXTAREA"
|
|
46
|
-
:class="option.class"
|
|
47
|
-
:form="form"
|
|
48
|
-
v-bind="getFieldBinding(option)"
|
|
49
|
-
v-on="option.on ?? {}"
|
|
50
|
-
/>
|
|
51
|
-
<FormInputToggle
|
|
52
|
-
v-else-if="option.type === INPUT_TYPES.TOGGLE"
|
|
53
|
-
:class="option.class"
|
|
54
|
-
:form="form"
|
|
55
|
-
v-bind="getFieldBinding(option)"
|
|
56
|
-
v-on="option.on ?? {}"
|
|
57
|
-
/>
|
|
58
|
-
<FormInputSelect
|
|
59
|
-
v-else-if="option.type === INPUT_TYPES.SELECT"
|
|
60
|
-
:class="option.class"
|
|
61
|
-
:form="form"
|
|
62
|
-
:options="option.props.options"
|
|
63
|
-
v-bind="getFieldBinding(option)"
|
|
64
|
-
v-on="option.on ?? {}"
|
|
65
|
-
/>
|
|
66
|
-
<FormInputRadio
|
|
67
|
-
v-else-if="option.type === INPUT_TYPES.RADIO"
|
|
68
|
-
:class="option.class"
|
|
69
|
-
:form="form"
|
|
70
|
-
:options="option.props.options"
|
|
71
|
-
v-bind="getFieldBinding(option)"
|
|
72
|
-
v-on="option.on ?? {}"
|
|
73
|
-
/>
|
|
74
|
-
<FormInputCheckbox
|
|
75
|
-
v-else-if="option.type === INPUT_TYPES.CHECKBOX"
|
|
76
|
-
:class="option.class"
|
|
77
|
-
:form="form"
|
|
78
|
-
v-bind="getFieldBinding(option)"
|
|
79
|
-
v-on="option.on ?? {}"
|
|
80
|
-
/>
|
|
81
|
-
<FormInputDateTime
|
|
82
|
-
v-else-if="option.type === INPUT_TYPES.DATE_TIME"
|
|
83
|
-
:class="option.class"
|
|
84
|
-
:form="form"
|
|
85
|
-
v-bind="getFieldBinding(option)"
|
|
86
|
-
v-on="option.on ?? {}"
|
|
87
|
-
/>
|
|
88
|
-
<FormInputDateTime
|
|
89
|
-
v-else-if="option.type === INPUT_TYPES.DATE"
|
|
90
|
-
:class="option.class"
|
|
91
|
-
:form="form"
|
|
92
|
-
v-bind="getFieldBinding(option)"
|
|
93
|
-
:disabled-time="true"
|
|
94
|
-
v-on="option.on ?? {}"
|
|
95
|
-
/>
|
|
96
|
-
<FormInputUploadFileClassic
|
|
97
|
-
v-else-if="option.type === INPUT_TYPES.UPLOAD_FILE_CLASSIC"
|
|
98
|
-
:class="option.class"
|
|
99
|
-
:form="form"
|
|
100
|
-
v-bind="getFieldBinding(option)"
|
|
101
|
-
v-on="option.on ?? {}"
|
|
102
|
-
/>
|
|
103
|
-
<FormInputUploadFileClassicAuto
|
|
104
|
-
v-else-if="option.type === INPUT_TYPES.UPLOAD_FILE_CLASSIC_AUTO"
|
|
105
|
-
:class="option.class"
|
|
106
|
-
:form="form"
|
|
107
|
-
v-bind="getFieldBinding(option)"
|
|
108
|
-
v-on="option.on ?? {}"
|
|
109
|
-
/>
|
|
110
|
-
<FormInputUploadDropzone
|
|
111
|
-
v-else-if="option.type === INPUT_TYPES.UPLOAD_DROPZONE"
|
|
112
|
-
:class="option.class"
|
|
113
|
-
:form="form"
|
|
114
|
-
v-bind="getFieldBinding(option)"
|
|
115
|
-
v-on="option.on ?? {}"
|
|
116
|
-
/>
|
|
117
|
-
<FormInputUploadDropzoneAuto
|
|
118
|
-
v-else-if="option.type === INPUT_TYPES.UPLOAD_DROPZONE_AUTO"
|
|
119
|
-
:class="option.class"
|
|
120
|
-
:form="form"
|
|
121
|
-
:request-options="option.props.requestOptions"
|
|
122
|
-
v-bind="getFieldBinding(option)"
|
|
123
|
-
v-on="option.on ?? {}"
|
|
124
|
-
/>
|
|
125
|
-
</template>
|
|
126
|
-
</div>
|
|
127
|
-
</template>
|
|
128
|
-
<script lang="ts" setup>
|
|
129
|
-
import { type FormContext } from 'vee-validate'
|
|
130
|
-
import { type IFormField, INPUT_TYPES } from '#core/components/Form/types'
|
|
131
|
-
|
|
132
|
-
const props = withDefaults(
|
|
133
|
-
defineProps<{
|
|
134
|
-
form?: FormContext
|
|
135
|
-
options: IFormField[]
|
|
136
|
-
orientation?: 'horizontal' | 'vertical'
|
|
137
|
-
class?: any
|
|
138
|
-
}>(),
|
|
139
|
-
{
|
|
140
|
-
class: 'space-y-4',
|
|
141
|
-
orientation: 'vertical',
|
|
142
|
-
}
|
|
143
|
-
)
|
|
144
|
-
|
|
145
|
-
const getFieldBinding = (field: IFormField) => {
|
|
146
|
-
if (props.orientation === 'horizontal') {
|
|
147
|
-
return {
|
|
148
|
-
...field.props,
|
|
149
|
-
containerUi: {
|
|
150
|
-
...field.props.containerUi,
|
|
151
|
-
wrapper:
|
|
152
|
-
'lg:grid lg:grid-cols-3 lg:gap-4 lg:items-start ' + field.props.containerUi?.wrapper,
|
|
153
|
-
container: 'lg:col-span-2 ' + field.props.containerUi?.container,
|
|
154
|
-
},
|
|
155
|
-
}
|
|
156
|
-
}
|
|
157
|
-
|
|
158
|
-
return field.props
|
|
159
|
-
}
|
|
160
|
-
</script>
|
|
1
|
+
<template>
|
|
2
|
+
<div :class="['fields', $props.class]">
|
|
3
|
+
<template
|
|
4
|
+
v-for="(option, index) in options.filter((item) => !item.isHide)"
|
|
5
|
+
:key="option.props.name + index + option.type"
|
|
6
|
+
>
|
|
7
|
+
<FormInputStatic
|
|
8
|
+
v-if="option.type === INPUT_TYPES.STATIC"
|
|
9
|
+
:class="option.class"
|
|
10
|
+
:form="form"
|
|
11
|
+
v-bind="getFieldBinding(option)"
|
|
12
|
+
v-on="option.on ?? {}"
|
|
13
|
+
/>
|
|
14
|
+
<FormInputText
|
|
15
|
+
v-else-if="option.type === INPUT_TYPES.TEXT"
|
|
16
|
+
:class="option.class"
|
|
17
|
+
:form="form"
|
|
18
|
+
v-bind="getFieldBinding(option)"
|
|
19
|
+
v-on="option.on ?? {}"
|
|
20
|
+
/>
|
|
21
|
+
<FormInputNumber
|
|
22
|
+
v-else-if="option.type === INPUT_TYPES.NUMBER"
|
|
23
|
+
:class="option.class"
|
|
24
|
+
:form="form"
|
|
25
|
+
v-bind="getFieldBinding(option)"
|
|
26
|
+
v-on="option.on ?? {}"
|
|
27
|
+
/>
|
|
28
|
+
<FormInputText
|
|
29
|
+
v-else-if="option.type === INPUT_TYPES.PASSWORD"
|
|
30
|
+
:class="option.class"
|
|
31
|
+
type="password"
|
|
32
|
+
:form="form"
|
|
33
|
+
v-bind="getFieldBinding(option)"
|
|
34
|
+
v-on="option.on ?? {}"
|
|
35
|
+
/>
|
|
36
|
+
<FormInputText
|
|
37
|
+
v-else-if="option.type === INPUT_TYPES.EMAIL"
|
|
38
|
+
:class="option.class"
|
|
39
|
+
type="email"
|
|
40
|
+
:form="form"
|
|
41
|
+
v-bind="getFieldBinding(option)"
|
|
42
|
+
v-on="option.on ?? {}"
|
|
43
|
+
/>
|
|
44
|
+
<FormInputTextarea
|
|
45
|
+
v-else-if="option.type === INPUT_TYPES.TEXTAREA"
|
|
46
|
+
:class="option.class"
|
|
47
|
+
:form="form"
|
|
48
|
+
v-bind="getFieldBinding(option)"
|
|
49
|
+
v-on="option.on ?? {}"
|
|
50
|
+
/>
|
|
51
|
+
<FormInputToggle
|
|
52
|
+
v-else-if="option.type === INPUT_TYPES.TOGGLE"
|
|
53
|
+
:class="option.class"
|
|
54
|
+
:form="form"
|
|
55
|
+
v-bind="getFieldBinding(option)"
|
|
56
|
+
v-on="option.on ?? {}"
|
|
57
|
+
/>
|
|
58
|
+
<FormInputSelect
|
|
59
|
+
v-else-if="option.type === INPUT_TYPES.SELECT"
|
|
60
|
+
:class="option.class"
|
|
61
|
+
:form="form"
|
|
62
|
+
:options="option.props.options"
|
|
63
|
+
v-bind="getFieldBinding(option)"
|
|
64
|
+
v-on="option.on ?? {}"
|
|
65
|
+
/>
|
|
66
|
+
<FormInputRadio
|
|
67
|
+
v-else-if="option.type === INPUT_TYPES.RADIO"
|
|
68
|
+
:class="option.class"
|
|
69
|
+
:form="form"
|
|
70
|
+
:options="option.props.options"
|
|
71
|
+
v-bind="getFieldBinding(option)"
|
|
72
|
+
v-on="option.on ?? {}"
|
|
73
|
+
/>
|
|
74
|
+
<FormInputCheckbox
|
|
75
|
+
v-else-if="option.type === INPUT_TYPES.CHECKBOX"
|
|
76
|
+
:class="option.class"
|
|
77
|
+
:form="form"
|
|
78
|
+
v-bind="getFieldBinding(option)"
|
|
79
|
+
v-on="option.on ?? {}"
|
|
80
|
+
/>
|
|
81
|
+
<FormInputDateTime
|
|
82
|
+
v-else-if="option.type === INPUT_TYPES.DATE_TIME"
|
|
83
|
+
:class="option.class"
|
|
84
|
+
:form="form"
|
|
85
|
+
v-bind="getFieldBinding(option)"
|
|
86
|
+
v-on="option.on ?? {}"
|
|
87
|
+
/>
|
|
88
|
+
<FormInputDateTime
|
|
89
|
+
v-else-if="option.type === INPUT_TYPES.DATE"
|
|
90
|
+
:class="option.class"
|
|
91
|
+
:form="form"
|
|
92
|
+
v-bind="getFieldBinding(option)"
|
|
93
|
+
:disabled-time="true"
|
|
94
|
+
v-on="option.on ?? {}"
|
|
95
|
+
/>
|
|
96
|
+
<FormInputUploadFileClassic
|
|
97
|
+
v-else-if="option.type === INPUT_TYPES.UPLOAD_FILE_CLASSIC"
|
|
98
|
+
:class="option.class"
|
|
99
|
+
:form="form"
|
|
100
|
+
v-bind="getFieldBinding(option)"
|
|
101
|
+
v-on="option.on ?? {}"
|
|
102
|
+
/>
|
|
103
|
+
<FormInputUploadFileClassicAuto
|
|
104
|
+
v-else-if="option.type === INPUT_TYPES.UPLOAD_FILE_CLASSIC_AUTO"
|
|
105
|
+
:class="option.class"
|
|
106
|
+
:form="form"
|
|
107
|
+
v-bind="getFieldBinding(option)"
|
|
108
|
+
v-on="option.on ?? {}"
|
|
109
|
+
/>
|
|
110
|
+
<FormInputUploadDropzone
|
|
111
|
+
v-else-if="option.type === INPUT_TYPES.UPLOAD_DROPZONE"
|
|
112
|
+
:class="option.class"
|
|
113
|
+
:form="form"
|
|
114
|
+
v-bind="getFieldBinding(option)"
|
|
115
|
+
v-on="option.on ?? {}"
|
|
116
|
+
/>
|
|
117
|
+
<FormInputUploadDropzoneAuto
|
|
118
|
+
v-else-if="option.type === INPUT_TYPES.UPLOAD_DROPZONE_AUTO"
|
|
119
|
+
:class="option.class"
|
|
120
|
+
:form="form"
|
|
121
|
+
:request-options="option.props.requestOptions"
|
|
122
|
+
v-bind="getFieldBinding(option)"
|
|
123
|
+
v-on="option.on ?? {}"
|
|
124
|
+
/>
|
|
125
|
+
</template>
|
|
126
|
+
</div>
|
|
127
|
+
</template>
|
|
128
|
+
<script lang="ts" setup>
|
|
129
|
+
import { type FormContext } from 'vee-validate'
|
|
130
|
+
import { type IFormField, INPUT_TYPES } from '#core/components/Form/types'
|
|
131
|
+
|
|
132
|
+
const props = withDefaults(
|
|
133
|
+
defineProps<{
|
|
134
|
+
form?: FormContext
|
|
135
|
+
options: IFormField[]
|
|
136
|
+
orientation?: 'horizontal' | 'vertical'
|
|
137
|
+
class?: any
|
|
138
|
+
}>(),
|
|
139
|
+
{
|
|
140
|
+
class: 'space-y-4',
|
|
141
|
+
orientation: 'vertical',
|
|
142
|
+
}
|
|
143
|
+
)
|
|
144
|
+
|
|
145
|
+
const getFieldBinding = (field: IFormField) => {
|
|
146
|
+
if (props.orientation === 'horizontal') {
|
|
147
|
+
return {
|
|
148
|
+
...field.props,
|
|
149
|
+
containerUi: {
|
|
150
|
+
...field.props.containerUi,
|
|
151
|
+
wrapper:
|
|
152
|
+
'lg:grid lg:grid-cols-3 lg:gap-4 lg:items-start ' + field.props.containerUi?.wrapper,
|
|
153
|
+
container: 'lg:col-span-2 ' + field.props.containerUi?.container,
|
|
154
|
+
},
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
return field.props
|
|
159
|
+
}
|
|
160
|
+
</script>
|