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.
49 lines
1.2 KiB
49 lines
1.2 KiB
import * as React from 'react';
|
|
import RcCollapse from 'rc-collapse';
|
|
import classNames from 'classnames';
|
|
import animation from '../_util/openAnimation';
|
|
import CollapsePanel from './CollapsePanel';
|
|
import Icon from '../icon';
|
|
|
|
export interface CollapseProps {
|
|
activeKey?: Array<string> | string;
|
|
defaultActiveKey?: Array<string>;
|
|
/** 手风琴效果 */
|
|
accordion?: boolean;
|
|
destroyInactivePanel?: boolean;
|
|
onChange?: (key: string | string[]) => void;
|
|
style?: React.CSSProperties;
|
|
className?: string;
|
|
bordered?: boolean;
|
|
prefixCls?: string;
|
|
}
|
|
|
|
export default class Collapse extends React.Component<CollapseProps, any> {
|
|
static Panel = CollapsePanel;
|
|
|
|
static defaultProps = {
|
|
prefixCls: 'ant-collapse',
|
|
bordered: true,
|
|
openAnimation: { ...animation, appear() { } },
|
|
};
|
|
|
|
renderExpandIcon = () => {
|
|
return (
|
|
<Icon type="right" className={`arrow`} />
|
|
);
|
|
}
|
|
|
|
render() {
|
|
const { prefixCls, className = '', bordered } = this.props;
|
|
const collapseClassName = classNames({
|
|
[`${prefixCls}-borderless`]: !bordered,
|
|
}, className);
|
|
return (
|
|
<RcCollapse
|
|
{...this.props}
|
|
className={collapseClassName}
|
|
expandIcon={this.renderExpandIcon}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
|