1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
'use strict';
Object.defineProperty(exports, "__esModule", {
value: true
});
var _defineProperty2 = require('babel-runtime/helpers/defineProperty');
var _defineProperty3 = _interopRequireDefault(_defineProperty2);
var _objectWithoutProperties2 = require('babel-runtime/helpers/objectWithoutProperties');
var _objectWithoutProperties3 = _interopRequireDefault(_objectWithoutProperties2);
var _extends2 = require('babel-runtime/helpers/extends');
var _extends3 = _interopRequireDefault(_extends2);
var _PropTypes = require('./PropTypes');
var _BaseMixin = require('../_util/BaseMixin');
var _BaseMixin2 = _interopRequireDefault(_BaseMixin);
var _propsUtil = require('../_util/props-util');
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
// function noop () {
// }
exports['default'] = {
name: 'VcSwitch',
mixins: [_BaseMixin2['default']],
model: {
prop: 'checked',
event: 'change'
},
props: (0, _extends3['default'])({}, _PropTypes.switchPropTypes, {
prefixCls: _PropTypes.switchPropTypes.prefixCls.def('rc-switch')
// onChange: switchPropTypes.onChange.def(noop),
// onClick: switchPropTypes.onClick.def(noop),
}),
data: function data() {
var checked = false;
if ((0, _propsUtil.hasProp)(this, 'checked')) {
checked = !!this.checked;
} else {
checked = !!this.defaultChecked;
}
return {
stateChecked: checked
};
},
watch: {
checked: function checked(val) {
this.stateChecked = val;
}
},
mounted: function mounted() {
var _this = this;
this.$nextTick(function () {
var autoFocus = _this.autoFocus,
disabled = _this.disabled;
if (autoFocus && !disabled) {
_this.focus();
}
});
},
methods: {
setChecked: function setChecked(checked) {
if (this.disabled) {
return;
}
if (!(0, _propsUtil.hasProp)(this, 'checked')) {
this.stateChecked = checked;
}
this.$emit('change', checked);
},
toggle: function toggle() {
var checked = !this.stateChecked;
this.setChecked(checked);
this.$emit('click', checked);
},
handleKeyDown: function handleKeyDown(e) {
if (e.keyCode === 37) {
// Left
this.setChecked(false);
} else if (e.keyCode === 39) {
// Right
this.setChecked(true);
}
},
handleMouseUp: function handleMouseUp(e) {
if (this.$refs.refSwitchNode) {
this.$refs.refSwitchNode.blur();
}
this.$emit('mouseup', e);
},
focus: function focus() {
this.$refs.refSwitchNode.focus();
},
blur: function blur() {
this.$refs.refSwitchNode.blur();
}
},
render: function render() {
var _switchClassName;
var h = arguments[0];
var _getOptionProps = (0, _propsUtil.getOptionProps)(this),
prefixCls = _getOptionProps.prefixCls,
disabled = _getOptionProps.disabled,
loadingIcon = _getOptionProps.loadingIcon,
restProps = (0, _objectWithoutProperties3['default'])(_getOptionProps, ['prefixCls', 'disabled', 'loadingIcon']);
var checked = this.stateChecked;
var switchClassName = (_switchClassName = {}, (0, _defineProperty3['default'])(_switchClassName, prefixCls, true), (0, _defineProperty3['default'])(_switchClassName, prefixCls + '-checked', checked), (0, _defineProperty3['default'])(_switchClassName, prefixCls + '-disabled', disabled), _switchClassName);
var spanProps = {
props: (0, _extends3['default'])({}, restProps),
on: (0, _extends3['default'])({}, this.$listeners, {
keydown: this.handleKeyDown,
click: this.toggle,
mouseup: this.handleMouseUp
}),
attrs: {
type: 'button',
role: 'switch',
'aria-checked': checked,
disabled: disabled
},
'class': switchClassName,
ref: 'refSwitchNode'
};
return h(
'button',
spanProps,
[loadingIcon, h(
'span',
{ 'class': prefixCls + '-inner' },
[checked ? (0, _propsUtil.getComponentFromProp)(this, 'checkedChildren') : (0, _propsUtil.getComponentFromProp)(this, 'unCheckedChildren')]
)]
);
}
};