| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291 |
- import { defineComponent, getCurrentInstance, ref, computed, watch, resolveComponent, resolveDirective, openBlock, createBlock, withCtx, createElementBlock, createElementVNode, normalizeClass, createVNode, Fragment, renderList, createTextVNode, toDisplayString, withDirectives, renderSlot } from 'vue';
- import { ElCheckbox } from '../../checkbox/index.mjs';
- import { ElIcon } from '../../icon/index.mjs';
- import { ArrowDown, ArrowUp } from '@element-plus/icons-vue';
- 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 { useTooltipContentProps } from '../../tooltip/src/content.mjs';
- import { useLocale } from '../../../hooks/use-locale/index.mjs';
- import { useNamespace } from '../../../hooks/use-namespace/index.mjs';
- import { isPropAbsent } from '../../../utils/types.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
- },
- appendTo: useTooltipContentProps.appendTo
- },
- setup(props) {
- const instance = getCurrentInstance();
- const { t } = useLocale();
- const ns = useNamespace("table-filter");
- const parent = instance == null ? void 0 : instance.parent;
- if (props.column && !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 filterClassName = computed(() => {
- if (props.column && props.column.filterClassName) {
- return `${ns.b()} ${props.column.filterClassName}`;
- }
- return ns.b();
- });
- const filterValue = computed({
- get: () => {
- var _a;
- return (((_a = props.column) == null ? void 0 : _a.filteredValue) || [])[0];
- },
- set: (value) => {
- if (filteredValue.value) {
- if (!isPropAbsent(value)) {
- 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) {
- var _a;
- if (props.column) {
- (_a = props.upDataColumn) == null ? void 0 : _a.call(props, "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 (!isPropAbsent(_filterValue)) {
- confirmFilter(filteredValue.value);
- } else {
- confirmFilter([]);
- }
- hidden();
- };
- const confirmFilter = (filteredValue2) => {
- var _a, _b;
- (_a = props.store) == null ? void 0 : _a.commit("filterChange", {
- column: props.column,
- values: filteredValue2
- });
- (_b = props.store) == null ? void 0 : _b.updateAllSelected();
- };
- watch(tooltipVisible, (value) => {
- var _a;
- if (props.column) {
- (_a = props.upDataColumn) == null ? void 0 : _a.call(props, "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,
- filterClassName,
- filteredValue,
- filterValue,
- filters,
- handleConfirm,
- handleReset,
- handleSelect,
- isPropAbsent,
- isActive,
- t,
- ns,
- showFilterPanel,
- hideFilterPanel,
- popperPaneRef,
- tooltip
- };
- }
- });
- 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.filterClassName,
- persistent: "",
- "append-to": _ctx.appendTo
- }, {
- content: withCtx(() => [
- _ctx.multiple ? (openBlock(), createElementBlock("div", { key: 0 }, [
- 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": ($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,
- value: filter.value
- }, {
- default: withCtx(() => [
- createTextVNode(toDisplayString(filter.text), 1)
- ]),
- _: 2
- }, 1032, ["value"]);
- }), 128))
- ]),
- _: 1
- }, 8, ["modelValue", "onUpdate: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: _ctx.handleConfirm
- }, toDisplayString(_ctx.t("el.table.confirmFilter")), 11, ["disabled", "onClick"]),
- createElementVNode("button", {
- type: "button",
- onClick: _ctx.handleReset
- }, toDisplayString(_ctx.t("el.table.resetFilter")), 9, ["onClick"])
- ], 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.isPropAbsent(_ctx.filterValue)
- }
- ]),
- onClick: ($event) => _ctx.handleSelect(null)
- }, toDisplayString(_ctx.t("el.table.clearFilter")), 11, ["onClick"]),
- (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, ["label", "onClick"]);
- }), 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: _ctx.showFilterPanel
- }, [
- createVNode(_component_el_icon, null, {
- default: withCtx(() => [
- renderSlot(_ctx.$slots, "filter-icon", {}, () => {
- var _a;
- return [
- ((_a = _ctx.column) == null ? void 0 : _a.filterOpened) ? (openBlock(), createBlock(_component_arrow_up, { key: 0 })) : (openBlock(), createBlock(_component_arrow_down, { key: 1 }))
- ];
- })
- ]),
- _: 3
- })
- ], 10, ["onClick"])), [
- [_directive_click_outside, _ctx.hideFilterPanel, _ctx.popperPaneRef]
- ])
- ]),
- _: 3
- }, 8, ["visible", "placement", "popper-class", "append-to"]);
- }
- var FilterPanel = /* @__PURE__ */ _export_sfc(_sfc_main, [["render", _sfc_render], ["__file", "filter-panel.vue"]]);
- export { FilterPanel as default };
- //# sourceMappingURL=filter-panel.mjs.map
|