support toggle field option

This commit is contained in:
lightling 2025-03-04 21:35:01 -05:00
parent 994b61a454
commit 8b191a93b8
Signed by: lightling
GPG key ID: F1F29650D537C773

View file

@ -2,6 +2,7 @@
import { computed, ref } from 'vue' import { computed, ref } from 'vue'
import { v7 as uuidv7 } from 'uuid' import { v7 as uuidv7 } from 'uuid'
import Button from 'primevue/button' import Button from 'primevue/button'
import Checkbox from 'primevue/checkbox'
import DataTable from 'primevue/datatable' import DataTable from 'primevue/datatable'
import Column from 'primevue/column' import Column from 'primevue/column'
import Image from 'primevue/image' import Image from 'primevue/image'
@ -130,6 +131,15 @@ DataTable.data-editor(
span( span(
v-else v-else
) No image ) No image
div(
v-else-if='col.type === "toggle"'
)
Checkbox(
v-model='slotProps.data[col.name]'
:name='`${slotProps.data._id} ${col.name}`'
binary
disabled
)
div( div(
v-else v-else
) )
@ -150,6 +160,14 @@ DataTable.data-editor(
:disabled='!slotProps.data[col.name]' :disabled='!slotProps.data[col.name]'
:onClick='(e) => onRemoveImage(e, slotProps)' :onClick='(e) => onRemoveImage(e, slotProps)'
) )
div(
v-else-if='col.type === "toggle"'
)
Checkbox(
v-model='slotProps.data[col.name]'
:name='`toggle for ${slotProps.data.name || slotProps.data._id} ${col.name}`'
binary
)
div( div(
v-else v-else
) )