mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-04 21:18:14 +08:00
73bef787cd
* feat: add Result component * fix: update md template tag html>tpl - fix `result` typo - update jest `result` snapshots * refactor: svg file to functional component icon - update jest snapshot * feat: add result * Feat descriptions (#1251) * feat: add descriptions * fix: add descriptions types and fix docs * fix: lint change code * fix: demo warning * fix: update demo, snapshot and remove classnames * test: add descriptions test * fix: descriptions demo (#1498) * feat: add page header (#1250) * feat: add page-header component * update site: page-header * ts definition update: page-header * get page-header props with getComponentFromProp func * optimize page-header * doc: add page-header actions.md responsive.md * breadcrumb itemRender add pure function support * style: format code * feat: update style to 3.23.6 from 2.13.6 * feat: update style to 3.26.8 from 3.23.6 * chore: update util * chore: update util * feat: update affix * feat: update alert * feat: update anchor * feat: update auto-complete * feat: update avatar * feat: update back-top * feat: update badge * feat: update button * feat: update breadcrumb * feat: update ts * docs: update doc * feat: update calendat * feat: update card * feat: update carousel * feat: update carousel * feat: update checkbox * feat: update comment * feat: update config-provider * docs: update doc * feat: update collapse * feat: update locale * feat: update date-picker * feat: update divider * feat: update drawer * feat: update dropdown * feat: update rc-trigger * feat: update dropdown * feat: update empty * test: add empty test * feat: update form * feat: update form * feat: update spin * feat: update grid * docs: update grid doc * feat: update icon * feat: update slider * feat: update textarea * feat: update input-number * feat: update layout * feat: update list * feat: update menu * feat: meaage add key for update content * feat: modal add closeIcon support * feat: update notification * feat: add pagination disabled support * feat: popconfirm add disabled support * test: update popover * feat: progress support custom line-gradiend * feat: update radio * test: update radio test * docs: update rate demo * feat: skeleton add avatar support number type * test: add switch test * test: update statistic test * fix: input clear icon event * feat: steps add type、 v-model、subTitle * feat: delete typography component * feat: delete Typography style * perf: update select * feat: add download transformFile previewFile actio * docs: update upload * feat: update tree-select * docs: update tree-select * feat: tree add blockNode selectable * docs: add tree demo * test: update snap * docs: updatedoc * feat: update tag * docs: update ad doc * feat: update tooltip * feat: update timeline * feat: time-picker add clearIcon * docs: update tabs * feat: transfer support custom children * test: update transfer test * feat: update table * test: update table test * test: update test * feat: calendar update locale * test: update test snap * feat: add mentions (#1790) * feat: mentions style * feat: theme default * feat: add mentions component * feat: mentions API * feat: add unit test for mentions * feat: update mentions demo * perf: model and inheritAttrs for mentions * perf: use getComponentFromProp instead of this.$props * perf: mentions rm defaultProps * feat: rm rows in mentionsProps * fix: mentions keyDown didn't work * docs: update mentions api * perf: mentions code * feat: update mentions * bump 1.5.0-alpha.1 * feat: pageheader add ghost prop * docs: update descriptions demo * chore: page-header add ghost type * fix: color error * feat: update to 3.26.12 * fix: some prop default value * fix(typo): form, carousel, upload. duplicate identifier (#1848) * Add Mentions Type (#1845) * feat: add mentions type * feat: add mentions in ant-design-vue.d.ts * docs: update doc * docs: add changelog * fix: mentions getPopupCotainer value (#1850) * docs: update doc * docs: uptate demo * docs: update demo * docs: delete demo * docs: delete doc * test: update snapshots * style: format code * chore: update travis * docs: update demo Co-authored-by: Sendya <18x@loacg.com> Co-authored-by: zkwolf <chenhao5866@gmail.com> Co-authored-by: drafish <xwlyy1991@163.com> Co-authored-by: Amour1688 <31695475+Amour1688@users.noreply.github.com>
333 lines
11 KiB
Vue
Executable File
333 lines
11 KiB
Vue
Executable File
import Menu, { SubMenu, Item as MenuItem } from '../vc-menu';
|
|
import closest from 'dom-closest';
|
|
import classNames from 'classnames';
|
|
import shallowequal from 'shallowequal';
|
|
import Dropdown from '../dropdown';
|
|
import Icon from '../icon';
|
|
import Checkbox from '../checkbox';
|
|
import Radio from '../radio';
|
|
import FilterDropdownMenuWrapper from './FilterDropdownMenuWrapper';
|
|
import { FilterMenuProps } from './interface';
|
|
import { initDefaultProps, getOptionProps, isValidElement } from '../_util/props-util';
|
|
import { cloneElement } from '../_util/vnode';
|
|
import BaseMixin from '../_util/BaseMixin';
|
|
import { generateValueMaps } from './util';
|
|
|
|
function stopPropagation(e) {
|
|
e.stopPropagation();
|
|
}
|
|
|
|
export default {
|
|
name: 'FilterMenu',
|
|
mixins: [BaseMixin],
|
|
props: initDefaultProps(FilterMenuProps, {
|
|
handleFilter() {},
|
|
column: {},
|
|
}),
|
|
|
|
data() {
|
|
const visible =
|
|
'filterDropdownVisible' in this.column ? this.column.filterDropdownVisible : false;
|
|
this.preProps = { ...getOptionProps(this) };
|
|
return {
|
|
sSelectedKeys: this.selectedKeys,
|
|
sKeyPathOfSelectedItem: {}, // 记录所有有选中子菜单的祖先菜单
|
|
sVisible: visible,
|
|
sValueKeys: generateValueMaps(this.column.filters),
|
|
};
|
|
},
|
|
watch: {
|
|
_propsSymbol() {
|
|
const nextProps = getOptionProps(this);
|
|
const { column } = nextProps;
|
|
const newState = {};
|
|
|
|
/**
|
|
* if the state is visible the component should ignore updates on selectedKeys prop to avoid
|
|
* that the user selection is lost
|
|
* this happens frequently when a table is connected on some sort of realtime data
|
|
* Fixes https://github.com/ant-design/ant-design/issues/10289 and
|
|
* https://github.com/ant-design/ant-design/issues/10209
|
|
*/
|
|
if (
|
|
'selectedKeys' in nextProps &&
|
|
!shallowequal(this.preProps.selectedKeys, nextProps.selectedKeys)
|
|
) {
|
|
newState.sSelectedKeys = nextProps.selectedKeys;
|
|
}
|
|
if (!shallowequal((this.preProps.column || {}).filters, (nextProps.column || {}).filters)) {
|
|
newState.sValueKeys = generateValueMaps(nextProps.column.filters);
|
|
}
|
|
if ('filterDropdownVisible' in column) {
|
|
newState.sVisible = column.filterDropdownVisible;
|
|
}
|
|
if (Object.keys(newState).length > 0) {
|
|
this.setState(newState);
|
|
}
|
|
this.preProps = { ...nextProps };
|
|
},
|
|
// 'column.fixed': function (val) {
|
|
// this.setNeverShown(this.column)
|
|
// },
|
|
// column (val) {
|
|
// if ('filterDropdownVisible' in val) {
|
|
// this.sVisible = val.filterDropdownVisible
|
|
// }
|
|
// },
|
|
// selectedKeys (val) {
|
|
// this.sSelectedKeys = val
|
|
// },
|
|
},
|
|
|
|
mounted() {
|
|
const { column } = this;
|
|
this.$nextTick(() => {
|
|
this.setNeverShown(column);
|
|
});
|
|
},
|
|
updated() {
|
|
const { column } = this;
|
|
this.$nextTick(() => {
|
|
this.setNeverShown(column);
|
|
});
|
|
},
|
|
methods: {
|
|
getDropdownVisible() {
|
|
return this.neverShown ? false : this.sVisible;
|
|
},
|
|
setNeverShown(column) {
|
|
const rootNode = this.$el;
|
|
const filterBelongToScrollBody = !!closest(rootNode, `.ant-table-scroll`);
|
|
if (filterBelongToScrollBody) {
|
|
// When fixed column have filters, there will be two dropdown menus
|
|
// Filter dropdown menu inside scroll body should never be shown
|
|
// To fix https://github.com/ant-design/ant-design/issues/5010 and
|
|
// https://github.com/ant-design/ant-design/issues/7909
|
|
this.neverShown = !!column.fixed;
|
|
}
|
|
},
|
|
|
|
setSelectedKeys({ selectedKeys }) {
|
|
this.setState({ sSelectedKeys: selectedKeys });
|
|
},
|
|
|
|
setVisible(visible) {
|
|
const { column } = this;
|
|
if (!('filterDropdownVisible' in column)) {
|
|
this.setState({ sVisible: visible });
|
|
}
|
|
if (column.onFilterDropdownVisibleChange) {
|
|
column.onFilterDropdownVisibleChange(visible);
|
|
}
|
|
},
|
|
|
|
handleClearFilters() {
|
|
this.setState(
|
|
{
|
|
sSelectedKeys: [],
|
|
},
|
|
this.handleConfirm,
|
|
);
|
|
},
|
|
|
|
handleConfirm() {
|
|
this.setVisible(false);
|
|
this.confirmFilter2();
|
|
// Call `setSelectedKeys` & `confirm` in the same time will make filter data not up to date
|
|
// https://github.com/ant-design/ant-design/issues/12284
|
|
this.$forceUpdate();
|
|
this.$nextTick(() => {
|
|
this.confirmFilter;
|
|
});
|
|
},
|
|
|
|
onVisibleChange(visible) {
|
|
this.setVisible(visible);
|
|
const { column } = this.$props;
|
|
// https://github.com/ant-design/ant-design/issues/17833
|
|
if (!visible && !(column.filterDropdown instanceof Function)) {
|
|
this.confirmFilter2();
|
|
}
|
|
},
|
|
handleMenuItemClick(info) {
|
|
const { sSelectedKeys: selectedKeys } = this.$data;
|
|
if (!info.keyPath || info.keyPath.length <= 1) {
|
|
return;
|
|
}
|
|
const { sKeyPathOfSelectedItem: keyPathOfSelectedItem } = this.$data;
|
|
if (selectedKeys && selectedKeys.indexOf(info.key) >= 0) {
|
|
// deselect SubMenu child
|
|
delete keyPathOfSelectedItem[info.key];
|
|
} else {
|
|
// select SubMenu child
|
|
keyPathOfSelectedItem[info.key] = info.keyPath;
|
|
}
|
|
this.setState({ sKeyPathOfSelectedItem: keyPathOfSelectedItem });
|
|
},
|
|
|
|
hasSubMenu() {
|
|
const {
|
|
column: { filters = [] },
|
|
} = this;
|
|
return filters.some(item => !!(item.children && item.children.length > 0));
|
|
},
|
|
|
|
confirmFilter2() {
|
|
const { column, selectedKeys: propSelectedKeys, confirmFilter } = this.$props;
|
|
const { sSelectedKeys: selectedKeys, sValueKeys: valueKeys } = this.$data;
|
|
const { filterDropdown } = column;
|
|
|
|
if (!shallowequal(selectedKeys, propSelectedKeys)) {
|
|
confirmFilter(
|
|
column,
|
|
filterDropdown
|
|
? selectedKeys
|
|
: selectedKeys.map(key => valueKeys[key]).filter(key => key !== undefined),
|
|
);
|
|
}
|
|
},
|
|
|
|
renderMenus(items) {
|
|
const { dropdownPrefixCls, prefixCls } = this.$props;
|
|
return items.map(item => {
|
|
if (item.children && item.children.length > 0) {
|
|
const { sKeyPathOfSelectedItem } = this;
|
|
const containSelected = Object.keys(sKeyPathOfSelectedItem).some(
|
|
key => sKeyPathOfSelectedItem[key].indexOf(item.value) >= 0,
|
|
);
|
|
const subMenuCls = classNames(`${prefixCls}-dropdown-submenu`, {
|
|
[`${dropdownPrefixCls}-submenu-contain-selected`]: containSelected,
|
|
});
|
|
return (
|
|
<SubMenu title={item.text} popupClassName={subMenuCls} key={item.value.toString()}>
|
|
{this.renderMenus(item.children)}
|
|
</SubMenu>
|
|
);
|
|
}
|
|
return this.renderMenuItem(item);
|
|
});
|
|
},
|
|
|
|
renderFilterIcon() {
|
|
const { column, locale, prefixCls, selectedKeys } = this;
|
|
const filtered = selectedKeys && selectedKeys.length > 0;
|
|
let filterIcon = column.filterIcon;
|
|
if (typeof filterIcon === 'function') {
|
|
filterIcon = filterIcon(filtered, column);
|
|
}
|
|
const dropdownIconClass = classNames({
|
|
[`${prefixCls}-selected`]: filtered,
|
|
[`${prefixCls}-open`]: this.getDropdownVisible(),
|
|
});
|
|
if (!filterIcon) {
|
|
return (
|
|
<Icon
|
|
title={locale.filterTitle}
|
|
type="filter"
|
|
theme="filled"
|
|
class={dropdownIconClass}
|
|
onClick={stopPropagation}
|
|
/>
|
|
);
|
|
}
|
|
if (filterIcon.length === 1 && isValidElement(filterIcon[0])) {
|
|
return cloneElement(filterIcon[0], {
|
|
on: {
|
|
click: stopPropagation,
|
|
},
|
|
class: classNames(`${prefixCls}-icon`, dropdownIconClass),
|
|
});
|
|
}
|
|
return <span class={classNames(`${prefixCls}-icon`, dropdownIconClass)}>{filterIcon}</span>;
|
|
},
|
|
|
|
renderMenuItem(item) {
|
|
const { column } = this;
|
|
const { sSelectedKeys: selectedKeys } = this.$data;
|
|
const multiple = 'filterMultiple' in column ? column.filterMultiple : true;
|
|
|
|
// We still need trade key as string since Menu render need string
|
|
// const internalSelectedKeys = (selectedKeys || []).map(key => key.toString());
|
|
|
|
const input = multiple ? (
|
|
<Checkbox checked={selectedKeys && selectedKeys.indexOf(item.value.toString()) >= 0} />
|
|
) : (
|
|
<Radio checked={selectedKeys && selectedKeys.indexOf(item.value.toString()) >= 0} />
|
|
);
|
|
|
|
return (
|
|
<MenuItem key={item.value}>
|
|
{input}
|
|
<span>{item.text}</span>
|
|
</MenuItem>
|
|
);
|
|
},
|
|
},
|
|
|
|
render() {
|
|
const { sSelectedKeys: originSelectedKeys } = this.$data;
|
|
const { column, locale, prefixCls, dropdownPrefixCls, getPopupContainer } = this;
|
|
// default multiple selection in filter dropdown
|
|
const multiple = 'filterMultiple' in column ? column.filterMultiple : true;
|
|
const dropdownMenuClass = classNames({
|
|
[`${dropdownPrefixCls}-menu-without-submenu`]: !this.hasSubMenu(),
|
|
});
|
|
let { filterDropdown } = column;
|
|
if (filterDropdown instanceof Function) {
|
|
filterDropdown = filterDropdown({
|
|
prefixCls: `${dropdownPrefixCls}-custom`,
|
|
setSelectedKeys: selectedKeys => this.setSelectedKeys({ selectedKeys }),
|
|
selectedKeys: originSelectedKeys,
|
|
confirm: this.handleConfirm,
|
|
clearFilters: this.handleClearFilters,
|
|
filters: column.filters,
|
|
visible: this.getDropdownVisible(),
|
|
column,
|
|
});
|
|
}
|
|
|
|
const menus = filterDropdown ? (
|
|
<FilterDropdownMenuWrapper class={`${prefixCls}-dropdown`}>
|
|
{filterDropdown}
|
|
</FilterDropdownMenuWrapper>
|
|
) : (
|
|
<FilterDropdownMenuWrapper class={`${prefixCls}-dropdown`}>
|
|
<Menu
|
|
multiple={multiple}
|
|
onClick={this.handleMenuItemClick}
|
|
prefixCls={`${dropdownPrefixCls}-menu`}
|
|
class={dropdownMenuClass}
|
|
onSelect={this.setSelectedKeys}
|
|
onDeselect={this.setSelectedKeys}
|
|
selectedKeys={originSelectedKeys && originSelectedKeys.map(val => val.toString())}
|
|
getPopupContainer={getPopupContainer}
|
|
>
|
|
{this.renderMenus(column.filters)}
|
|
</Menu>
|
|
<div class={`${prefixCls}-dropdown-btns`}>
|
|
<a class={`${prefixCls}-dropdown-link confirm`} onClick={this.handleConfirm}>
|
|
{locale.filterConfirm}
|
|
</a>
|
|
<a class={`${prefixCls}-dropdown-link clear`} onClick={this.handleClearFilters}>
|
|
{locale.filterReset}
|
|
</a>
|
|
</div>
|
|
</FilterDropdownMenuWrapper>
|
|
);
|
|
|
|
return (
|
|
<Dropdown
|
|
trigger={['click']}
|
|
placement="bottomRight"
|
|
visible={this.getDropdownVisible()}
|
|
onVisibleChange={this.onVisibleChange}
|
|
getPopupContainer={getPopupContainer}
|
|
forceRender
|
|
>
|
|
<template slot="overlay">{menus}</template>
|
|
{this.renderFilterIcon()}
|
|
</Dropdown>
|
|
);
|
|
},
|
|
};
|