56 lines
2.0 KiB
JavaScript
56 lines
2.0 KiB
JavaScript
/* eslint-disable @typescript-eslint/ban-ts-comment */
|
|
import { ButtonDefaultProps } from './props';
|
|
import fmtEvent from '../_util/fmtEvent';
|
|
Component({
|
|
props: ButtonDefaultProps,
|
|
methods: {
|
|
onTap: function (e) {
|
|
var _a = this.props, onTap = _a.onTap, disabled = _a.disabled, loading = _a.loading, onDisabledTap = _a.onDisabledTap;
|
|
if (disabled && onDisabledTap) {
|
|
var event_1 = fmtEvent(this.props, e);
|
|
onDisabledTap(event_1);
|
|
}
|
|
if (onTap && !disabled && !loading) {
|
|
var event_2 = fmtEvent(this.props, e);
|
|
return onTap(event_2);
|
|
}
|
|
},
|
|
catchTap: function (e) {
|
|
var _a = this.props, catchTap = _a.catchTap, disabled = _a.disabled, loading = _a.loading, onDisabledTap = _a.onDisabledTap;
|
|
if (disabled && onDisabledTap) {
|
|
var event_3 = fmtEvent(this.props, e);
|
|
onDisabledTap(event_3);
|
|
}
|
|
if (catchTap && !disabled && !loading) {
|
|
var event_4 = fmtEvent(this.props, e);
|
|
return catchTap(event_4);
|
|
}
|
|
},
|
|
onGetAuthorize: function (e) {
|
|
if (this.props.onGetAuthorize) {
|
|
this.props.onGetAuthorize(fmtEvent(this.props, e));
|
|
}
|
|
},
|
|
onFollowLifestyle: function (e) {
|
|
if (this.props.onFollowLifestyle) {
|
|
this.props.onFollowLifestyle(fmtEvent(this.props, e));
|
|
}
|
|
},
|
|
onError: function (e) {
|
|
if (this.props.onError) {
|
|
this.props.onError(fmtEvent(this.props, e));
|
|
}
|
|
},
|
|
onGetUserInfo: function (e) {
|
|
if (this.props.onGetUserInfo) {
|
|
this.props.onGetUserInfo(fmtEvent(this.props, e));
|
|
}
|
|
},
|
|
onGetPhoneNumber: function (e) {
|
|
if (this.props.onGetPhoneNumber) {
|
|
this.props.onGetPhoneNumber(fmtEvent(this.props, e));
|
|
}
|
|
},
|
|
},
|
|
});
|