import { defineComponent, h, provide, PropType, computed, inject } from 'vue' import GlobalConfig from '../../v-x-e-table/src/conf' import XEUtils from 'xe-utils' import { useSize } from '../../hooks/size' import { VxeCheckboxGroupConstructor, VxeCheckboxGroupEmits, VxeCheckboxGroupPrivateMethods, CheckboxGroupPrivateMethods, CheckboxPrivateComputed, CheckboxGroupMethods, VxeCheckboxGroupPropTypes, VxeFormConstructor, VxeFormPrivateMethods, VxeFormDefines } from '../../../types/all' export default defineComponent({ name: 'VxeCheckboxGroup', props: { modelValue: Array as PropType, disabled: Boolean as PropType, max: { type: [String, Number] as PropType, default: null }, size: { type: String as PropType, default: () => GlobalConfig.checkbox.size || GlobalConfig.size } }, emits: [ 'update:modelValue', 'change' ] as VxeCheckboxGroupEmits, setup (props, context) { const { slots, emit } = context const $xeform = inject('$xeform', null) const $xeformiteminfo = inject('$xeformiteminfo', null) const xID = XEUtils.uniqueId() const computeIsMaximize = computed(() => { const { modelValue, max } = props if (max) { return (modelValue ? modelValue.length : 0) >= XEUtils.toNumber(max) } return false }) const computeMaps: CheckboxPrivateComputed = { computeIsMaximize } const $xecheckboxgroup = { xID, props, context, getComputeMaps: () => computeMaps } as unknown as VxeCheckboxGroupConstructor & VxeCheckboxGroupPrivateMethods useSize(props) const checkboxGroupMethods: CheckboxGroupMethods = { dispatchEvent (type, params, evnt) { emit(type, Object.assign({ $checkboxGroup: $xecheckboxgroup, $event: evnt }, params)) } } const checkboxGroupPrivateMethods: CheckboxGroupPrivateMethods = { handleChecked (params, evnt) { const { checked, label } = params const checklist = props.modelValue || [] const checkIndex = checklist.indexOf(label) if (checked) { if (checkIndex === -1) { checklist.push(label) } } else { checklist.splice(checkIndex, 1) } emit('update:modelValue', checklist) $xecheckboxgroup.dispatchEvent('change', Object.assign({ checklist }, params), evnt) // 自动更新校验状态 if ($xeform && $xeformiteminfo) { $xeform.triggerItemEvent(evnt, $xeformiteminfo.itemConfig.field, checklist) } } } Object.assign($xecheckboxgroup, checkboxGroupMethods, checkboxGroupPrivateMethods) const renderVN = () => { return h('div', { class: 'vxe-checkbox-group' }, slots.default ? slots.default({}) : []) } $xecheckboxgroup.renderVN = renderVN provide('$xecheckboxgroup', $xecheckboxgroup) return renderVN } })