import { defineComponent, getCurrentInstance, ref, computed, watch, resolveComponent, resolveDirective, openBlock, createBlock, withCtx, createElementBlock, createElementVNode, normalizeClass, createVNode, Fragment, renderList, createTextVNode, toDisplayString, withDirectives } from 'vue';
|
import { ElCheckbox } from '../../checkbox/index.mjs';
|
import { ElIcon } from '../../icon/index.mjs';
|
import { ArrowDown, ArrowUp } from '@element-plus/icons-vue';
|
import '../../../directives/index.mjs';
|
import '../../../hooks/index.mjs';
|
import { ElTooltip } from '../../tooltip/index.mjs';
|
import { ElScrollbar } from '../../scrollbar/index.mjs';
|
import _export_sfc from '../../../_virtual/plugin-vue_export-helper.mjs';
|
import ClickOutside from '../../../directives/click-outside/index.mjs';
|
import { useLocale } from '../../../hooks/use-locale/index.mjs';
|
import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
|
|
const { CheckboxGroup: ElCheckboxGroup } = ElCheckbox;
|
const _sfc_main = defineComponent({
|
name: "ElTableFilterPanel",
|
components: {
|
ElCheckbox,
|
ElCheckboxGroup,
|
ElScrollbar,
|
ElTooltip,
|
ElIcon,
|
ArrowDown,
|
ArrowUp
|
},
|
directives: { ClickOutside },
|
props: {
|
placement: {
|
type: String,
|
default: "bottom-start"
|
},
|
store: {
|
type: Object
|
},
|
column: {
|
type: Object
|
},
|
upDataColumn: {
|
type: Function
|
}
|
},
|
setup(props) {
|
const instance = getCurrentInstance();
|
const { t } = useLocale();
|
const ns = useNamespace("table-filter");
|
const parent = instance == null ? void 0 : instance.parent;
|
if (!parent.filterPanels.value[props.column.id]) {
|
parent.filterPanels.value[props.column.id] = instance;
|
}
|
const tooltipVisible = ref(false);
|
const tooltip = ref(null);
|
const filters = computed(() => {
|
return props.column && props.column.filters;
|
});
|
const filterValue = computed({
|
get: () => {
|
var _a;
|
return (((_a = props.column) == null ? void 0 : _a.filteredValue) || [])[0];
|
},
|
set: (value) => {
|
if (filteredValue.value) {
|
if (typeof value !== "undefined" && value !== null) {
|
filteredValue.value.splice(0, 1, value);
|
} else {
|
filteredValue.value.splice(0, 1);
|
}
|
}
|
}
|
});
|
const filteredValue = computed({
|
get() {
|
if (props.column) {
|
return props.column.filteredValue || [];
|
}
|
return [];
|
},
|
set(value) {
|
if (props.column) {
|
props.upDataColumn("filteredValue", value);
|
}
|
}
|
});
|
const multiple = computed(() => {
|
if (props.column) {
|
return props.column.filterMultiple;
|
}
|
return true;
|
});
|
const isActive = (filter) => {
|
return filter.value === filterValue.value;
|
};
|
const hidden = () => {
|
tooltipVisible.value = false;
|
};
|
const showFilterPanel = (e) => {
|
e.stopPropagation();
|
tooltipVisible.value = !tooltipVisible.value;
|
};
|
const hideFilterPanel = () => {
|
tooltipVisible.value = false;
|
};
|
const handleConfirm = () => {
|
confirmFilter(filteredValue.value);
|
hidden();
|
};
|
const handleReset = () => {
|
filteredValue.value = [];
|
confirmFilter(filteredValue.value);
|
hidden();
|
};
|
const handleSelect = (_filterValue) => {
|
filterValue.value = _filterValue;
|
if (typeof _filterValue !== "undefined" && _filterValue !== null) {
|
confirmFilter(filteredValue.value);
|
} else {
|
confirmFilter([]);
|
}
|
hidden();
|
};
|
const confirmFilter = (filteredValue2) => {
|
props.store.commit("filterChange", {
|
column: props.column,
|
values: filteredValue2
|
});
|
props.store.updateAllSelected();
|
};
|
watch(tooltipVisible, (value) => {
|
if (props.column) {
|
props.upDataColumn("filterOpened", value);
|
}
|
}, {
|
immediate: true
|
});
|
const popperPaneRef = computed(() => {
|
var _a, _b;
|
return (_b = (_a = tooltip.value) == null ? void 0 : _a.popperRef) == null ? void 0 : _b.contentRef;
|
});
|
return {
|
tooltipVisible,
|
multiple,
|
filteredValue,
|
filterValue,
|
filters,
|
handleConfirm,
|
handleReset,
|
handleSelect,
|
isActive,
|
t,
|
ns,
|
showFilterPanel,
|
hideFilterPanel,
|
popperPaneRef,
|
tooltip
|
};
|
}
|
});
|
const _hoisted_1 = { key: 0 };
|
const _hoisted_2 = ["disabled"];
|
const _hoisted_3 = ["label", "onClick"];
|
function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) {
|
const _component_el_checkbox = resolveComponent("el-checkbox");
|
const _component_el_checkbox_group = resolveComponent("el-checkbox-group");
|
const _component_el_scrollbar = resolveComponent("el-scrollbar");
|
const _component_arrow_up = resolveComponent("arrow-up");
|
const _component_arrow_down = resolveComponent("arrow-down");
|
const _component_el_icon = resolveComponent("el-icon");
|
const _component_el_tooltip = resolveComponent("el-tooltip");
|
const _directive_click_outside = resolveDirective("click-outside");
|
return openBlock(), createBlock(_component_el_tooltip, {
|
ref: "tooltip",
|
visible: _ctx.tooltipVisible,
|
offset: 0,
|
placement: _ctx.placement,
|
"show-arrow": false,
|
"stop-popper-mouse-event": false,
|
teleported: "",
|
effect: "light",
|
pure: "",
|
"popper-class": _ctx.ns.b(),
|
persistent: ""
|
}, {
|
content: withCtx(() => [
|
_ctx.multiple ? (openBlock(), createElementBlock("div", _hoisted_1, [
|
createElementVNode("div", {
|
class: normalizeClass(_ctx.ns.e("content"))
|
}, [
|
createVNode(_component_el_scrollbar, {
|
"wrap-class": _ctx.ns.e("wrap")
|
}, {
|
default: withCtx(() => [
|
createVNode(_component_el_checkbox_group, {
|
modelValue: _ctx.filteredValue,
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => _ctx.filteredValue = $event),
|
class: normalizeClass(_ctx.ns.e("checkbox-group"))
|
}, {
|
default: withCtx(() => [
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.filters, (filter) => {
|
return openBlock(), createBlock(_component_el_checkbox, {
|
key: filter.value,
|
label: filter.value
|
}, {
|
default: withCtx(() => [
|
createTextVNode(toDisplayString(filter.text), 1)
|
]),
|
_: 2
|
}, 1032, ["label"]);
|
}), 128))
|
]),
|
_: 1
|
}, 8, ["modelValue", "class"])
|
]),
|
_: 1
|
}, 8, ["wrap-class"])
|
], 2),
|
createElementVNode("div", {
|
class: normalizeClass(_ctx.ns.e("bottom"))
|
}, [
|
createElementVNode("button", {
|
class: normalizeClass({ [_ctx.ns.is("disabled")]: _ctx.filteredValue.length === 0 }),
|
disabled: _ctx.filteredValue.length === 0,
|
type: "button",
|
onClick: _cache[1] || (_cache[1] = (...args) => _ctx.handleConfirm && _ctx.handleConfirm(...args))
|
}, toDisplayString(_ctx.t("el.table.confirmFilter")), 11, _hoisted_2),
|
createElementVNode("button", {
|
type: "button",
|
onClick: _cache[2] || (_cache[2] = (...args) => _ctx.handleReset && _ctx.handleReset(...args))
|
}, toDisplayString(_ctx.t("el.table.resetFilter")), 1)
|
], 2)
|
])) : (openBlock(), createElementBlock("ul", {
|
key: 1,
|
class: normalizeClass(_ctx.ns.e("list"))
|
}, [
|
createElementVNode("li", {
|
class: normalizeClass([
|
_ctx.ns.e("list-item"),
|
{
|
[_ctx.ns.is("active")]: _ctx.filterValue === void 0 || _ctx.filterValue === null
|
}
|
]),
|
onClick: _cache[3] || (_cache[3] = ($event) => _ctx.handleSelect(null))
|
}, toDisplayString(_ctx.t("el.table.clearFilter")), 3),
|
(openBlock(true), createElementBlock(Fragment, null, renderList(_ctx.filters, (filter) => {
|
return openBlock(), createElementBlock("li", {
|
key: filter.value,
|
class: normalizeClass([_ctx.ns.e("list-item"), _ctx.ns.is("active", _ctx.isActive(filter))]),
|
label: filter.value,
|
onClick: ($event) => _ctx.handleSelect(filter.value)
|
}, toDisplayString(filter.text), 11, _hoisted_3);
|
}), 128))
|
], 2))
|
]),
|
default: withCtx(() => [
|
withDirectives((openBlock(), createElementBlock("span", {
|
class: normalizeClass([
|
`${_ctx.ns.namespace.value}-table__column-filter-trigger`,
|
`${_ctx.ns.namespace.value}-none-outline`
|
]),
|
onClick: _cache[4] || (_cache[4] = (...args) => _ctx.showFilterPanel && _ctx.showFilterPanel(...args))
|
}, [
|
createVNode(_component_el_icon, null, {
|
default: withCtx(() => [
|
_ctx.column.filterOpened ? (openBlock(), createBlock(_component_arrow_up, { key: 0 })) : (openBlock(), createBlock(_component_arrow_down, { key: 1 }))
|
]),
|
_: 1
|
})
|
], 2)), [
|
[_directive_click_outside, _ctx.hideFilterPanel, _ctx.popperPaneRef]
|
])
|
]),
|
_: 1
|
}, 8, ["visible", "placement", "popper-class"]);
|
}
|
var FilterPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "/home/runner/work/element-plus/element-plus/packages/components/table/src/filter-panel.vue"]]);
|
|
export { FilterPanel as default };
|
//# sourceMappingURL=filter-panel.mjs.map
|