2016-09-19 17:52:20 +08:00
|
|
|
import React from 'react';
|
2015-11-26 16:07:11 +08:00
|
|
|
import Button from '../button';
|
|
|
|
|
|
|
|
function noop() {
|
|
|
|
}
|
|
|
|
|
2016-07-01 20:52:17 +08:00
|
|
|
export interface TransferOperationProps {
|
2016-07-13 11:14:24 +08:00
|
|
|
className?: string;
|
|
|
|
leftArrowText?: string;
|
|
|
|
rightArrowText?: string;
|
2016-10-19 17:51:33 +08:00
|
|
|
moveToLeft?: React.FormEventHandler<any>;
|
|
|
|
moveToRight?: React.FormEventHandler<any>;
|
2016-07-13 11:14:24 +08:00
|
|
|
leftActive?: boolean;
|
|
|
|
rightActive?: boolean;
|
2016-07-01 20:52:17 +08:00
|
|
|
}
|
|
|
|
|
2017-11-06 21:28:51 +08:00
|
|
|
export default (props: TransferOperationProps) => {
|
|
|
|
const {
|
|
|
|
moveToLeft = noop,
|
|
|
|
moveToRight = noop,
|
|
|
|
leftArrowText = '',
|
|
|
|
rightArrowText = '',
|
|
|
|
leftActive,
|
|
|
|
rightActive,
|
|
|
|
className,
|
|
|
|
} = props;
|
2016-03-29 14:01:10 +08:00
|
|
|
|
2017-11-06 21:28:51 +08:00
|
|
|
return (
|
|
|
|
<div className={className}>
|
|
|
|
<Button
|
|
|
|
type="primary"
|
|
|
|
size="small"
|
|
|
|
disabled={!leftActive}
|
|
|
|
onClick={moveToLeft}
|
|
|
|
icon="left"
|
|
|
|
>
|
|
|
|
{leftArrowText}
|
2015-12-24 15:23:26 +08:00
|
|
|
</Button>
|
2017-11-06 21:28:51 +08:00
|
|
|
<Button
|
|
|
|
type="primary"
|
|
|
|
size="small"
|
|
|
|
disabled={!rightActive}
|
|
|
|
onClick={moveToRight}
|
|
|
|
icon="right"
|
|
|
|
>
|
|
|
|
{rightArrowText}
|
2015-12-24 15:23:26 +08:00
|
|
|
</Button>
|
2017-11-06 21:28:51 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|