mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
54 lines
1.1 KiB
Vue
54 lines
1.1 KiB
Vue
import PropTypes from '../_util/vue-types'
|
|
import { getOptionProps } from '../_util/props-util'
|
|
import Button from '../button'
|
|
|
|
function noop () {
|
|
}
|
|
|
|
export const TransferOperationProps = {
|
|
className: PropTypes.string,
|
|
leftArrowText: PropTypes.string,
|
|
rightArrowText: PropTypes.string,
|
|
moveToLeft: PropTypes.any,
|
|
moveToRight: PropTypes.any,
|
|
leftActive: PropTypes.bool,
|
|
rightActive: PropTypes.bool,
|
|
}
|
|
|
|
export default {
|
|
name: 'Operation',
|
|
props: { ...TransferOperationProps },
|
|
render () {
|
|
const {
|
|
moveToLeft = noop,
|
|
moveToRight = noop,
|
|
leftArrowText = '',
|
|
rightArrowText = '',
|
|
leftActive,
|
|
rightActive,
|
|
} = getOptionProps(this)
|
|
return (
|
|
<div>
|
|
<Button
|
|
type='primary'
|
|
size='small'
|
|
disabled={!leftActive}
|
|
onClick={moveToLeft}
|
|
icon='left'
|
|
>
|
|
{leftArrowText}
|
|
</Button>
|
|
<Button
|
|
type='primary'
|
|
size='small'
|
|
disabled={!rightActive}
|
|
onClick={moveToRight}
|
|
icon='right'
|
|
>
|
|
{rightArrowText}
|
|
</Button>
|
|
</div>
|
|
)
|
|
},
|
|
}
|