ant-design-vue/components/table/SelectionCheckboxAll.jsx

186 lines
5.0 KiB
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Checkbox from '../checkbox';
import Dropdown from '../dropdown';
import Menu from '../menu';
import Icon from '../icon';
import classNames from 'classnames';
import { SelectionCheckboxAllProps } from './interface';
import BaseMixin from '../_util/BaseMixin';
2018-03-30 14:00:55 +00:00
export default {
name: 'SelectionCheckboxAll',
mixins: [BaseMixin],
2019-02-01 09:23:00 +00:00
props: SelectionCheckboxAllProps,
2019-01-12 03:33:27 +00:00
data() {
const { $props: props } = this;
this.defaultSelections = props.hideDefaultSelections
? []
: [
{
key: 'all',
text: props.locale.selectAll,
onSelect: () => {},
},
{
key: 'invert',
text: props.locale.selectInvert,
onSelect: () => {},
},
];
2018-03-30 14:00:55 +00:00
2018-04-02 14:13:11 +00:00
return {
2018-03-30 14:00:55 +00:00
checked: this.getCheckState(props),
indeterminate: this.getIndeterminateState(props),
2019-01-12 03:33:27 +00:00
};
2018-03-30 14:00:55 +00:00
},
2018-04-02 14:13:11 +00:00
watch: {
2019-01-12 03:33:27 +00:00
$props: {
handler: function() {
this.setCheckState();
2018-04-02 14:13:11 +00:00
},
deep: true,
},
2018-03-30 14:00:55 +00:00
},
2019-02-01 09:23:00 +00:00
mounted() {
this.subscribe();
},
2019-01-12 03:33:27 +00:00
beforeDestroy() {
2018-03-30 14:00:55 +00:00
if (this.unsubscribe) {
2019-01-12 03:33:27 +00:00
this.unsubscribe();
2018-03-30 14:00:55 +00:00
}
},
methods: {
2019-01-12 03:33:27 +00:00
subscribe() {
const { store } = this;
2018-03-30 14:00:55 +00:00
this.unsubscribe = store.subscribe(() => {
2019-01-12 03:33:27 +00:00
this.setCheckState(this.$props);
});
2018-03-30 14:00:55 +00:00
},
2019-01-12 03:33:27 +00:00
checkSelection(props, data, type, byDefaultChecked) {
const { store, getCheckboxPropsByItem, getRecordKey } = props || this.$props;
2018-03-30 14:00:55 +00:00
// type should be 'every' | 'some'
if (type === 'every' || type === 'some') {
2019-01-12 03:33:27 +00:00
return byDefaultChecked
? data[type]((item, i) => getCheckboxPropsByItem(item, i).props.defaultChecked)
: data[type](
(item, i) => store.getState().selectedRowKeys.indexOf(getRecordKey(item, i)) >= 0,
);
2018-03-30 14:00:55 +00:00
}
2019-01-12 03:33:27 +00:00
return false;
2018-03-30 14:00:55 +00:00
},
2019-01-12 03:33:27 +00:00
setCheckState(props) {
const checked = this.getCheckState(props);
const indeterminate = this.getIndeterminateState(props);
this.setState(prevState => {
const newState = {};
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
2018-09-05 13:28:54 +00:00
if (indeterminate !== prevState.indeterminate) {
2019-01-12 03:33:27 +00:00
newState.indeterminate = indeterminate;
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
2018-09-05 13:28:54 +00:00
}
if (checked !== prevState.checked) {
2019-01-12 03:33:27 +00:00
newState.checked = checked;
update to antd3.8.3 (#159) * refactor: align * feat: update align to 2.4.3 * feat: update trigger 2.5.4 * feat: update tooltip 3.7.2 * fix: align * feat: update vc-calendar to 9.6.2 * feat: update vc-checkbox to 2.1.5 * feat: update vc-dialog to 7.1.8 * feat: update vc-from to 2.2.1 * feat: update vc-notification to 3.1.1 * test: update snapshots * feat: update vc-tree to 1.12.6 * feat: update vc-table to 6.2.8 * feat: update vc-upload to 2.5.1 * feat: update vc-input-number to 4.0.12 * feat: update vc-tabs to 9.2.6 * refactor: vc-menu * refactor: update vc-menu to 7.0.5 * style: remove unused * feat: update pagination to 1.16.5 * feat: add vc-progress 2.2.5 tag * feat: add vc-rate 2.4.0 tag * feat: update vc-slider to 8.6.1 * fix: tooltip error * style: delete conosle * feat: update vc-steps to 3.1.1 * add vc-switch tag 1.6.0 * feat: update upload to 2.5.1 * fix: update vc-menu * fix: update store * fix: add ref dir * fix: trigger mock shouldComponentUpdate * fix: update vc-select * revert: trigger lazyrenderbox * fix: update vc-select * fix: update vc-select * fix: update vc-select * fix: update vc-menu * fix: update vc-slick ref * update style to 3.8.2 * test: update snapshots * update vc-select * update util & affix * feat: add drawer * fix: support title add slot mode * test: update affix test * update alert * update anchor * update snapshots * fix: doc and vc-drawer * update select & auto-complete * update back-top & grid * feractor: avatar * test: add drawer test * update badge * update button * update card * update divider * feat: update vc-tabs to 9.3.6 and tabs * add afterEnter callback * update form * fix: update drawer * test: update snapshots * update modal & notification * test: update snapshots * update message * update locale-provider * update dropdown * update layout popconfirm popover * update time-picker * update menu * update date-picker * docs: update input docs * update input * update snapshots * update table * update test snapshots * feat: update progress * update checkbox * feat: update spin * update radio * docs: slider steps timeline * update list * update transfer * update collapse * update cascader * update upload
2018-09-05 13:28:54 +00:00
}
2019-01-12 03:33:27 +00:00
return newState;
});
2018-03-30 14:00:55 +00:00
},
2019-01-12 03:33:27 +00:00
getCheckState(props) {
const { store, data } = this;
let checked;
2018-03-30 14:00:55 +00:00
if (!data.length) {
2019-01-12 03:33:27 +00:00
checked = false;
2018-03-30 14:00:55 +00:00
} else {
checked = store.getState().selectionDirty
2019-01-05 10:09:27 +00:00
? this.checkSelection(props, data, 'every', false)
2019-01-12 03:33:27 +00:00
: this.checkSelection(props, data, 'every', false) ||
this.checkSelection(props, data, 'every', true);
2018-03-30 14:00:55 +00:00
}
2019-01-12 03:33:27 +00:00
return checked;
2018-03-30 14:00:55 +00:00
},
2019-01-12 03:33:27 +00:00
getIndeterminateState(props) {
const { store, data } = this;
let indeterminate;
2018-03-30 14:00:55 +00:00
if (!data.length) {
2019-01-12 03:33:27 +00:00
indeterminate = false;
2018-03-30 14:00:55 +00:00
} else {
indeterminate = store.getState().selectionDirty
2019-01-12 03:33:27 +00:00
? this.checkSelection(props, data, 'some', false) &&
!this.checkSelection(props, data, 'every', false)
: (this.checkSelection(props, data, 'some', false) &&
2019-01-05 10:09:27 +00:00
!this.checkSelection(props, data, 'every', false)) ||
2019-01-12 03:33:27 +00:00
(this.checkSelection(props, data, 'some', true) &&
!this.checkSelection(props, data, 'every', true));
2018-03-30 14:00:55 +00:00
}
2019-01-12 03:33:27 +00:00
return indeterminate;
2018-03-30 14:00:55 +00:00
},
2019-01-12 03:33:27 +00:00
handleSelectAllChange(e) {
const checked = e.target.checked;
this.$emit('select', checked ? 'all' : 'removeAll', 0, null);
2018-03-30 14:00:55 +00:00
},
2019-01-12 03:33:27 +00:00
renderMenus(selections) {
2018-03-30 14:00:55 +00:00
return selections.map((selection, index) => {
return (
2019-01-12 03:33:27 +00:00
<Menu.Item key={selection.key || index}>
2018-03-30 14:00:55 +00:00
<div
2019-01-12 03:33:27 +00:00
onClick={() => {
this.$emit('select', selection.key, index, selection.onSelect);
}}
2018-03-30 14:00:55 +00:00
>
{selection.text}
</div>
</Menu.Item>
2019-01-12 03:33:27 +00:00
);
});
2018-03-30 14:00:55 +00:00
},
},
2019-01-12 03:33:27 +00:00
render() {
const { disabled, prefixCls, selections, getPopupContainer, checked, indeterminate } = this;
2018-03-30 14:00:55 +00:00
2019-01-12 03:33:27 +00:00
const selectionPrefixCls = `${prefixCls}-selection`;
2018-03-30 14:00:55 +00:00
2019-01-12 03:33:27 +00:00
let customSelections = null;
2018-03-30 14:00:55 +00:00
if (selections) {
2019-01-12 03:33:27 +00:00
const newSelections = Array.isArray(selections)
? this.defaultSelections.concat(selections)
: this.defaultSelections;
2018-03-30 14:00:55 +00:00
const menu = (
2019-01-12 03:33:27 +00:00
<Menu class={`${selectionPrefixCls}-menu`} selectedKeys={[]}>
2018-03-30 14:00:55 +00:00
{this.renderMenus(newSelections)}
</Menu>
2019-01-12 03:33:27 +00:00
);
customSelections =
newSelections.length > 0 ? (
<Dropdown getPopupContainer={getPopupContainer}>
<template slot="overlay">{menu}</template>
<div class={`${selectionPrefixCls}-down`}>
<Icon type="down" />
</div>
</Dropdown>
) : null;
2018-03-30 14:00:55 +00:00
}
return (
<div class={selectionPrefixCls}>
<Checkbox
class={classNames({ [`${selectionPrefixCls}-select-all-custom`]: customSelections })}
checked={checked}
indeterminate={indeterminate}
disabled={disabled}
2019-01-05 10:09:27 +00:00
onChange={this.handleSelectAllChange}
2018-03-30 14:00:55 +00:00
/>
{customSelections}
</div>
2019-01-12 03:33:27 +00:00
);
2018-03-30 14:00:55 +00:00
},
2019-01-12 03:33:27 +00:00
};