You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
import React from 'react';
|
|
import Button from '../button';
|
|
import Icon from '../icon';
|
|
import Dropdown from './dropdown';
|
|
const ButtonGroup = Button.Group;
|
|
import classNames from 'classnames';
|
|
|
|
export default class DropdownButton extends React.Component {
|
|
static defaultProps = {
|
|
align: {
|
|
points: ['tr', 'br'],
|
|
overlay: {
|
|
adjustX: 1,
|
|
adjustY: 1,
|
|
},
|
|
offset: [0, 4],
|
|
targetOffset: [0, 0],
|
|
},
|
|
type: 'default',
|
|
}
|
|
|
|
render() {
|
|
const { type, overlay, trigger, align, children, className, onClick, ...restProps } = this.props;
|
|
const cls = classNames({
|
|
'ant-dropdown-button': true,
|
|
className: !!className,
|
|
});
|
|
return (
|
|
<ButtonGroup {...restProps} className={cls}>
|
|
<Button type={type} onClick={onClick}>{children}</Button>
|
|
<Dropdown align={align} overlay={overlay} trigger={trigger}>
|
|
<Button type={type}>
|
|
<Icon type="down" />
|
|
</Button>
|
|
</Dropdown>
|
|
</ButtonGroup>
|
|
);
|
|
}
|
|
}
|
|
|