ant-design-vue/components/vc-select/SelectTrigger.jsx

247 lines
6.1 KiB
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import classnames from 'classnames';
import Trigger from '../vc-trigger';
import PropTypes from '../_util/vue-types';
import DropdownMenu from './DropdownMenu';
import { isSingleMode, saveRef } from './util';
import BaseMixin from '../_util/BaseMixin';
2018-02-07 10:56:58 +00:00
const BUILT_IN_PLACEMENTS = {
bottomLeft: {
points: ['tl', 'bl'],
offset: [0, 4],
overflow: {
adjustX: 0,
adjustY: 1,
},
},
topLeft: {
points: ['bl', 'tl'],
offset: [0, -4],
overflow: {
adjustX: 0,
adjustY: 1,
},
},
2019-01-12 03:33:27 +00:00
};
2018-02-07 10:56:58 +00:00
export default {
name: 'SelectTrigger',
mixins: [BaseMixin],
props: {
// onPopupFocus: PropTypes.func,
// onPopupScroll: PropTypes.func,
dropdownMatchSelectWidth: PropTypes.bool,
2018-02-07 15:03:47 +00:00
defaultActiveFirstOption: PropTypes.bool,
2018-02-07 10:56:58 +00:00
dropdownAlign: PropTypes.object,
visible: PropTypes.bool,
disabled: PropTypes.bool,
showSearch: PropTypes.bool,
dropdownClassName: PropTypes.string,
2018-02-07 15:03:47 +00:00
dropdownStyle: PropTypes.object,
dropdownMenuStyle: PropTypes.object,
2018-02-07 10:56:58 +00:00
multiple: PropTypes.bool,
inputValue: PropTypes.string,
filterOption: PropTypes.any,
2019-03-04 07:45:21 +00:00
empty: PropTypes.bool,
2018-02-07 10:56:58 +00:00
options: PropTypes.any,
prefixCls: PropTypes.string,
popupClassName: PropTypes.string,
2018-02-07 15:03:47 +00:00
value: PropTypes.array,
2018-02-07 10:56:58 +00:00
// children: PropTypes.any,
showAction: PropTypes.arrayOf(PropTypes.string),
2018-02-08 10:56:58 +00:00
combobox: PropTypes.bool,
2018-02-12 06:45:26 +00:00
animation: PropTypes.string,
transitionName: PropTypes.string,
getPopupContainer: PropTypes.func,
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
backfillValue: PropTypes.any,
2018-12-11 03:40:27 +00:00
menuItemSelectedIcon: PropTypes.any,
2019-01-04 15:00:09 +00:00
dropdownRender: PropTypes.func,
ariaId: PropTypes.string,
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
data() {
2018-02-07 10:56:58 +00:00
return {
2019-01-04 15:00:09 +00:00
dropdownWidth: 0,
2019-01-12 03:33:27 +00:00
};
2018-02-07 10:56:58 +00:00
},
2019-02-01 09:23:00 +00:00
created() {
this.saveDropdownMenuRef = saveRef(this, 'dropdownMenuRef');
this.saveTriggerRef = saveRef(this, 'triggerRef');
},
2018-02-07 10:56:58 +00:00
2019-01-12 03:33:27 +00:00
mounted() {
2018-02-07 10:56:58 +00:00
this.$nextTick(() => {
2019-01-12 03:33:27 +00:00
this.setDropdownWidth();
});
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
updated() {
2018-02-07 10:56:58 +00:00
this.$nextTick(() => {
2019-01-12 03:33:27 +00:00
this.setDropdownWidth();
});
2018-02-07 10:56:58 +00:00
},
methods: {
2019-01-12 03:33:27 +00:00
setDropdownWidth() {
const width = this.$el.offsetWidth;
2018-02-07 10:56:58 +00:00
if (width !== this.dropdownWidth) {
2019-01-12 03:33:27 +00:00
this.setState({ dropdownWidth: width });
2018-02-07 10:56:58 +00:00
}
},
2019-01-12 03:33:27 +00:00
getInnerMenu() {
return this.dropdownMenuRef && this.dropdownMenuRef.$refs.menuRef;
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
getPopupDOMNode() {
return this.triggerRef.getPopupDomNode();
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
getDropdownElement(newProps) {
2018-02-07 10:56:58 +00:00
const {
2019-01-12 03:33:27 +00:00
value,
firstActiveValue,
defaultActiveFirstOption,
dropdownMenuStyle,
getDropdownPrefixCls,
backfillValue,
menuItemSelectedIcon,
} = this;
const { menuSelect, menuDeselect, popupScroll } = this.$listeners;
const props = this.$props;
2019-01-04 15:00:09 +00:00
2019-01-12 03:33:27 +00:00
const { dropdownRender, ariaId } = props;
2018-02-07 10:56:58 +00:00
const dropdownMenuProps = {
props: {
...newProps.props,
2019-01-04 15:00:09 +00:00
ariaId,
2018-02-07 10:56:58 +00:00
prefixCls: getDropdownPrefixCls(),
2019-01-12 03:33:27 +00:00
value,
firstActiveValue,
defaultActiveFirstOption,
dropdownMenuStyle,
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
backfillValue,
2018-12-11 03:40:27 +00:00
menuItemSelectedIcon,
2018-02-07 10:56:58 +00:00
},
on: {
...newProps.on,
menuSelect,
menuDeselect,
popupScroll,
},
2019-01-12 03:33:27 +00:00
directives: [
{
name: 'ant-ref',
value: this.saveDropdownMenuRef,
},
],
};
const menuNode = <DropdownMenu {...dropdownMenuProps} />;
2019-01-04 15:00:09 +00:00
if (dropdownRender) {
2019-01-12 03:33:27 +00:00
return dropdownRender(menuNode, props);
2019-01-04 15:00:09 +00:00
}
2019-01-12 03:33:27 +00:00
return null;
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
getDropdownTransitionName() {
const props = this.$props;
let transitionName = props.transitionName;
2018-02-07 10:56:58 +00:00
if (!transitionName && props.animation) {
2019-01-12 03:33:27 +00:00
transitionName = `${this.getDropdownPrefixCls()}-${props.animation}`;
2018-02-07 10:56:58 +00:00
}
2019-01-12 03:33:27 +00:00
return transitionName;
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
getDropdownPrefixCls() {
return `${this.prefixCls}-dropdown`;
2018-02-07 10:56:58 +00:00
},
},
2019-01-12 03:33:27 +00:00
render() {
const { $props, $slots, $listeners } = this;
2018-02-07 10:56:58 +00:00
const {
multiple,
visible,
inputValue,
dropdownAlign,
disabled,
showSearch,
dropdownClassName,
dropdownStyle,
dropdownMatchSelectWidth,
options,
getPopupContainer,
showAction,
2019-03-04 07:45:21 +00:00
empty,
2019-01-12 03:33:27 +00:00
} = $props;
const { mouseenter, mouseleave, popupFocus, dropdownVisibleChange } = $listeners;
const dropdownPrefixCls = this.getDropdownPrefixCls();
2018-02-07 10:56:58 +00:00
const popupClassName = {
[dropdownClassName]: !!dropdownClassName,
[`${dropdownPrefixCls}--${multiple ? 'multiple' : 'single'}`]: 1,
2019-03-04 07:45:21 +00:00
[`${dropdownPrefixCls}--empty`]: empty,
2019-01-12 03:33:27 +00:00
};
2018-02-07 10:56:58 +00:00
const popupElement = this.getDropdownElement({
props: {
menuItems: options,
multiple,
inputValue,
visible,
2019-01-12 03:33:27 +00:00
},
on: {
2018-02-26 10:44:06 +00:00
popupFocus,
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
});
let hideAction;
2018-02-07 10:56:58 +00:00
if (disabled) {
2019-01-12 03:33:27 +00:00
hideAction = [];
2018-02-07 10:56:58 +00:00
} else if (isSingleMode($props) && !showSearch) {
2019-01-12 03:33:27 +00:00
hideAction = ['click'];
2018-02-07 10:56:58 +00:00
} else {
2019-01-12 03:33:27 +00:00
hideAction = ['blur'];
2018-02-07 10:56:58 +00:00
}
2019-01-12 03:33:27 +00:00
const popupStyle = { ...dropdownStyle };
const widthProp = dropdownMatchSelectWidth ? 'width' : 'minWidth';
2018-02-07 10:56:58 +00:00
if (this.dropdownWidth) {
2019-01-12 03:33:27 +00:00
popupStyle[widthProp] = `${this.dropdownWidth}px`;
2018-02-07 10:56:58 +00:00
}
const triggerProps = {
props: {
...$props,
showAction: disabled ? [] : showAction,
hideAction,
ref: 'triggerRef',
popupPlacement: 'bottomLeft',
builtinPlacements: BUILT_IN_PLACEMENTS,
prefixCls: dropdownPrefixCls,
popupTransitionName: this.getDropdownTransitionName(),
popupAlign: dropdownAlign,
popupVisible: visible,
getPopupContainer,
popupClassName: classnames(popupClassName),
popupStyle,
},
on: {
2018-02-26 10:44:06 +00:00
popupVisibleChange: dropdownVisibleChange,
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
directives: [
{
name: 'ant-ref',
value: this.saveTriggerRef,
},
],
};
2018-02-26 10:44:06 +00:00
if (mouseenter) {
2019-01-12 03:33:27 +00:00
triggerProps.on.mouseenter = mouseenter;
2018-02-26 10:44:06 +00:00
}
if (mouseleave) {
2019-01-12 03:33:27 +00:00
triggerProps.on.mouseleave = mouseleave;
2018-02-26 10:44:06 +00:00
}
2018-02-07 10:56:58 +00:00
return (
<Trigger {...triggerProps}>
{$slots.default}
2019-01-12 03:33:27 +00:00
<template slot="popup">{popupElement}</template>
2018-02-07 10:56:58 +00:00
</Trigger>
2019-01-12 03:33:27 +00:00
);
2018-02-07 10:56:58 +00:00
},
2019-01-12 03:33:27 +00:00
};