144 lines
3.7 KiB
Vue
144 lines
3.7 KiB
Vue
import { nextTick, defineComponent } from 'vue';
|
||
import classNames from '../../_util/classNames';
|
||
import PropTypes, { withUndefined } from '../../_util/vue-types';
|
||
import BaseMixin from '../../_util/BaseMixin';
|
||
import { getOptionProps, hasProp, initDefaultProps } from '../../_util/props-util';
|
||
|
||
export default defineComponent({
|
||
name: 'Checkbox',
|
||
mixins: [BaseMixin],
|
||
inheritAttrs: false,
|
||
props: initDefaultProps(
|
||
{
|
||
prefixCls: PropTypes.string,
|
||
name: PropTypes.string,
|
||
id: PropTypes.string,
|
||
type: PropTypes.string,
|
||
defaultChecked: withUndefined(PropTypes.oneOfType([PropTypes.number, PropTypes.looseBool])),
|
||
checked: withUndefined(PropTypes.oneOfType([PropTypes.number, PropTypes.looseBool])),
|
||
disabled: PropTypes.looseBool,
|
||
// onFocus: PropTypes.func,
|
||
// onBlur: PropTypes.func,
|
||
// onChange: PropTypes.func,
|
||
// onClick: PropTypes.func,
|
||
tabindex: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
|
||
readonly: PropTypes.looseBool,
|
||
autofocus: PropTypes.looseBool,
|
||
value: PropTypes.any,
|
||
},
|
||
{
|
||
prefixCls: 'rc-checkbox',
|
||
type: 'checkbox',
|
||
defaultChecked: false,
|
||
},
|
||
),
|
||
data() {
|
||
const checked = hasProp(this, 'checked') ? this.checked : this.defaultChecked;
|
||
return {
|
||
sChecked: checked,
|
||
};
|
||
},
|
||
watch: {
|
||
checked(val) {
|
||
this.sChecked = val;
|
||
},
|
||
},
|
||
mounted() {
|
||
nextTick(() => {
|
||
if (process.env.NODE_ENV === 'test') {
|
||
if (this.autofocus) {
|
||
this.$refs.input && this.$refs.input.focus();
|
||
}
|
||
}
|
||
});
|
||
},
|
||
methods: {
|
||
focus() {
|
||
this.$refs.input.focus();
|
||
},
|
||
|
||
blur() {
|
||
this.$refs.input.blur();
|
||
},
|
||
|
||
handleChange(e) {
|
||
const props = getOptionProps(this);
|
||
if (props.disabled) {
|
||
return;
|
||
}
|
||
if (!('checked' in props)) {
|
||
this.sChecked = e.target.checked;
|
||
}
|
||
e.shiftKey = this.eventShiftKey;
|
||
const eventObj = {
|
||
target: {
|
||
...props,
|
||
checked: e.target.checked,
|
||
},
|
||
stopPropagation() {
|
||
e.stopPropagation();
|
||
},
|
||
preventDefault() {
|
||
e.preventDefault();
|
||
},
|
||
nativeEvent: e,
|
||
};
|
||
|
||
// fix https://github.com/vueComponent/ant-design-vue/issues/3047
|
||
// 受控模式下维持现有状态
|
||
if ('checked' in props) {
|
||
this.$refs.input.checked = props.checked;
|
||
}
|
||
this.__emit('change', eventObj);
|
||
this.eventShiftKey = false;
|
||
},
|
||
onClick(e) {
|
||
this.__emit('click', e);
|
||
// onChange没能获取到shiftKey,使用onClick hack
|
||
this.eventShiftKey = e.shiftKey;
|
||
},
|
||
},
|
||
|
||
render() {
|
||
const { prefixCls, name, id, type, disabled, readonly, tabindex, autofocus, value, ...others } =
|
||
getOptionProps(this);
|
||
const { class: className, onFocus, onBlur } = this.$attrs;
|
||
const globalProps = Object.keys({ ...others, ...this.$attrs }).reduce((prev, key) => {
|
||
if (key.substr(0, 5) === 'aria-' || key.substr(0, 5) === 'data-' || key === 'role') {
|
||
prev[key] = others[key];
|
||
}
|
||
return prev;
|
||
}, {});
|
||
|
||
const { sChecked } = this;
|
||
const classString = classNames(prefixCls, className, {
|
||
[`${prefixCls}-checked`]: sChecked,
|
||
[`${prefixCls}-disabled`]: disabled,
|
||
});
|
||
const inputProps = {
|
||
name,
|
||
id,
|
||
type,
|
||
readonly,
|
||
disabled,
|
||
tabindex,
|
||
class: `${prefixCls}-input`,
|
||
checked: !!sChecked,
|
||
autofocus,
|
||
value,
|
||
...globalProps,
|
||
onChange: this.handleChange,
|
||
onClick: this.onClick,
|
||
onFocus,
|
||
onBlur,
|
||
};
|
||
|
||
return (
|
||
<span class={classString}>
|
||
<input ref="input" {...inputProps} />
|
||
<span class={`${prefixCls}-inner`} />
|
||
</span>
|
||
);
|
||
},
|
||
});
|