vue-antd-ui
Version:
An enterprise-class UI design language and Vue-based implementation
109 lines (102 loc) • 3.07 kB
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import { initDefaultProps } from '../../_util/props-util';
import { cloneElement } from '../../_util/vnode';
import warning from '../../_util/warning';
import BaseMixin from '../../_util/BaseMixin';
import { ITouchProps } from './PropTypes';
export default {
name: 'TouchFeedback',
mixins: [BaseMixin],
props: initDefaultProps(ITouchProps, {
disabled: false
}),
data: function data() {
return {
active: false
};
},
mounted: function mounted() {
var _this = this;
this.$nextTick(function () {
if (_this.disabled && _this.active) {
_this.setState({
active: false
});
}
});
},
methods: {
triggerEvent: function triggerEvent(type, isActive, ev) {
// const eventType = `on${type}`
// if (this.props[eventType]) {
// this.props[eventType](ev)
// }
this.$emit(type, ev);
if (isActive !== this.active) {
this.setState({
active: isActive
});
}
},
onTouchStart: function onTouchStart(e) {
this.triggerEvent('touchstart', true, e);
},
onTouchMove: function onTouchMove(e) {
this.triggerEvent('touchmove', false, e);
},
onTouchEnd: function onTouchEnd(e) {
this.triggerEvent('touchend', false, e);
},
onTouchCancel: function onTouchCancel(e) {
this.triggerEvent('touchcancel', false, e);
},
onMouseDown: function onMouseDown(e) {
// todo
// pc simulate mobile
// if (this.props.onTouchStart) {
this.triggerEvent('touchstart', true, e);
// }
this.triggerEvent('mousedown', true, e);
},
onMouseUp: function onMouseUp(e) {
// if (this.props.onTouchEnd) {
this.triggerEvent('touchend', false, e);
// }
this.triggerEvent('mouseup', false, e);
},
onMouseLeave: function onMouseLeave(e) {
this.triggerEvent('mouseleave', false, e);
}
},
render: function render() {
var _$props = this.$props,
disabled = _$props.disabled,
_$props$activeClassNa = _$props.activeClassName,
activeClassName = _$props$activeClassNa === undefined ? '' : _$props$activeClassNa,
_$props$activeStyle = _$props.activeStyle,
activeStyle = _$props$activeStyle === undefined ? {} : _$props$activeStyle;
var child = this.$slots['default'];
if (child.length !== 1) {
warning(false, 'm-feedback组件只能包含一个子元素');
return null;
}
var childProps = {
on: disabled ? {} : {
touchstart: this.onTouchStart,
touchmove: this.onTouchMove,
touchend: this.onTouchEnd,
touchcancel: this.onTouchCancel,
mousedown: this.onMouseDown,
mouseup: this.onMouseUp,
mouseleave: this.onMouseLeave
}
};
if (!disabled && this.active) {
childProps = _extends({}, childProps, {
style: activeStyle,
'class': activeClassName
});
}
return cloneElement(child, childProps);
}
};