vue-antd-ui
Version:
An enterprise-class UI design language and Vue-based implementation
80 lines (70 loc) • 2.18 kB
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import _objectWithoutProperties from 'babel-runtime/helpers/objectWithoutProperties';
import Checkbox from '../checkbox';
import Radio from '../radio';
import { SelectionBoxProps } from './interface';
import BaseMixin from '../_util/BaseMixin';
import { getOptionProps } from '../_util/props-util';
export default {
mixins: [BaseMixin],
name: 'SelectionBox',
props: SelectionBoxProps,
data: function data() {
return {
checked: this.getCheckState(this.$props)
};
},
mounted: function mounted() {
this.subscribe();
},
beforeDestroy: function beforeDestroy() {
if (this.unsubscribe) {
this.unsubscribe();
}
},
methods: {
subscribe: function subscribe() {
var _this = this;
var store = this.store;
this.unsubscribe = store.subscribe(function () {
var checked = _this.getCheckState(_this.$props);
_this.setState({ checked: checked });
});
},
getCheckState: function getCheckState(props) {
var store = props.store,
defaultSelection = props.defaultSelection,
rowIndex = props.rowIndex;
var checked = false;
if (store.getState().selectionDirty) {
checked = store.getState().selectedRowKeys.indexOf(rowIndex) >= 0;
} else {
checked = store.getState().selectedRowKeys.indexOf(rowIndex) >= 0 || defaultSelection.indexOf(rowIndex) >= 0;
}
return checked;
}
},
render: function render() {
var h = arguments[0];
var _getOptionProps = getOptionProps(this),
type = _getOptionProps.type,
rowIndex = _getOptionProps.rowIndex,
rest = _objectWithoutProperties(_getOptionProps, ['type', 'rowIndex']);
var checked = this.checked,
$attrs = this.$attrs,
$listeners = this.$listeners;
var checkboxProps = {
props: _extends({
checked: checked
}, rest),
attrs: $attrs,
on: $listeners
};
if (type === 'radio') {
checkboxProps.props.value = rowIndex;
return h(Radio, checkboxProps);
} else {
return h(Checkbox, checkboxProps);
}
}
};