| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- import { defineComponent, useSlots, reactive, computed, toRefs, openBlock, createElementBlock, normalizeClass, unref, createElementVNode, createVNode, isRef, withCtx, createTextVNode, toDisplayString, createBlock, createCommentVNode, withDirectives, Fragment, renderList, vShow, renderSlot } from 'vue';
- import { ElCheckbox, ElCheckboxGroup } from '../../checkbox/index.mjs';
- import { ElInput } from '../../input/index.mjs';
- import { Search } from '@element-plus/icons-vue';
- import { transferPanelProps, transferPanelEmits } from './transfer-panel2.mjs';
- import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
- import { usePropsAlias } from './composables/use-props-alias.mjs';
- import { useCheck } from './composables/use-check.mjs';
- import { useLocale } from '../../../hooks/use-locale/index.mjs';
- import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
- import { isEmpty } from '../../../utils/types.mjs';
- const __default__ = defineComponent({
- name: "ElTransferPanel"
- });
- const _sfc_main = /* @__PURE__ */ defineComponent({
- ...__default__,
- props: transferPanelProps,
- emits: transferPanelEmits,
- setup(__props, { expose, emit }) {
- const props = __props;
- const slots = useSlots();
- const OptionContent = ({ option }) => option;
- const { t } = useLocale();
- const ns = useNamespace("transfer");
- const panelState = reactive({
- checked: [],
- allChecked: false,
- query: "",
- checkChangeByUser: true
- });
- const propsAlias = usePropsAlias(props);
- const {
- filteredData,
- checkedSummary,
- isIndeterminate,
- handleAllCheckedChange
- } = useCheck(props, panelState, emit);
- const hasNoMatch = computed(() => !isEmpty(panelState.query) && isEmpty(filteredData.value));
- const hasFooter = computed(() => !isEmpty(slots.default()[0].children));
- const { checked, allChecked, query } = toRefs(panelState);
- expose({
- query
- });
- return (_ctx, _cache) => {
- return openBlock(), createElementBlock("div", {
- class: normalizeClass(unref(ns).b("panel"))
- }, [
- createElementVNode("p", {
- class: normalizeClass(unref(ns).be("panel", "header"))
- }, [
- createVNode(unref(ElCheckbox), {
- modelValue: unref(allChecked),
- "onUpdate:modelValue": ($event) => isRef(allChecked) ? allChecked.value = $event : null,
- indeterminate: unref(isIndeterminate),
- "validate-event": false,
- onChange: unref(handleAllCheckedChange)
- }, {
- default: withCtx(() => [
- createTextVNode(toDisplayString(_ctx.title) + " ", 1),
- createElementVNode("span", null, toDisplayString(unref(checkedSummary)), 1)
- ]),
- _: 1
- }, 8, ["modelValue", "onUpdate:modelValue", "indeterminate", "onChange"])
- ], 2),
- createElementVNode("div", {
- class: normalizeClass([unref(ns).be("panel", "body"), unref(ns).is("with-footer", unref(hasFooter))])
- }, [
- _ctx.filterable ? (openBlock(), createBlock(unref(ElInput), {
- key: 0,
- modelValue: unref(query),
- "onUpdate:modelValue": ($event) => isRef(query) ? query.value = $event : null,
- class: normalizeClass(unref(ns).be("panel", "filter")),
- size: "default",
- placeholder: _ctx.placeholder,
- "prefix-icon": unref(Search),
- clearable: "",
- "validate-event": false
- }, null, 8, ["modelValue", "onUpdate:modelValue", "class", "placeholder", "prefix-icon"])) : createCommentVNode("v-if", true),
- withDirectives(createVNode(unref(ElCheckboxGroup), {
- modelValue: unref(checked),
- "onUpdate:modelValue": ($event) => isRef(checked) ? checked.value = $event : null,
- "validate-event": false,
- class: normalizeClass([unref(ns).is("filterable", _ctx.filterable), unref(ns).be("panel", "list")])
- }, {
- default: withCtx(() => [
- (openBlock(true), createElementBlock(Fragment, null, renderList(unref(filteredData), (item) => {
- return openBlock(), createBlock(unref(ElCheckbox), {
- key: item[unref(propsAlias).key],
- class: normalizeClass(unref(ns).be("panel", "item")),
- value: item[unref(propsAlias).key],
- disabled: item[unref(propsAlias).disabled],
- "validate-event": false
- }, {
- default: withCtx(() => {
- var _a;
- return [
- createVNode(OptionContent, {
- option: (_a = _ctx.optionRender) == null ? void 0 : _a.call(_ctx, item)
- }, null, 8, ["option"])
- ];
- }),
- _: 2
- }, 1032, ["class", "value", "disabled"]);
- }), 128))
- ]),
- _: 1
- }, 8, ["modelValue", "onUpdate:modelValue", "class"]), [
- [vShow, !unref(hasNoMatch) && !unref(isEmpty)(_ctx.data)]
- ]),
- withDirectives(createElementVNode("div", {
- class: normalizeClass(unref(ns).be("panel", "empty"))
- }, [
- renderSlot(_ctx.$slots, "empty", {}, () => [
- createTextVNode(toDisplayString(unref(hasNoMatch) ? unref(t)("el.transfer.noMatch") : unref(t)("el.transfer.noData")), 1)
- ])
- ], 2), [
- [vShow, unref(hasNoMatch) || unref(isEmpty)(_ctx.data)]
- ])
- ], 2),
- unref(hasFooter) ? (openBlock(), createElementBlock("p", {
- key: 0,
- class: normalizeClass(unref(ns).be("panel", "footer"))
- }, [
- renderSlot(_ctx.$slots, "default")
- ], 2)) : createCommentVNode("v-if", true)
- ], 2);
- };
- }
- });
- var TransferPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "transfer-panel.vue"]]);
- export { TransferPanel as default };
- //# sourceMappingURL=transfer-panel.mjs.map
|