1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
- var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
- if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
- else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
- return c > 3 && r && Object.defineProperty(target, key, r), r;
- };
- import { SuperComponent, wxComponent } from '../common/src/index';
- import config from '../common/config';
- import props from './props';
- import { canIUseFormFieldButton } from '../common/version';
- const { prefix } = config;
- const name = `${prefix}-button`;
- let Button = class Button extends SuperComponent {
- constructor() {
- super(...arguments);
- this.externalClasses = [`${prefix}-class`, `${prefix}-class-icon`, `${prefix}-class-loading`];
- this.behaviors = canIUseFormFieldButton() ? ['wx://form-field-button'] : [];
- this.properties = props;
- this.data = {
- prefix,
- className: '',
- classPrefix: name,
- };
- this.observers = {
- 'theme, size, plain, block, shape, disabled, loading'() {
- this.setClass();
- },
- };
- this.lifetimes = {
- attached() {
- this.setClass();
- },
- };
- this.methods = {
- setClass() {
- const classList = [
- name,
- `${prefix}-class`,
- `${name}--${this.data.theme}`,
- `${name}--size-${this.data.size.slice(0, 1)}`,
- ];
- classList.push(`${name}--${this.data.shape}`);
- if (this.data.block) {
- classList.push(`${prefix}-is-block`);
- }
- if (this.data.disabled) {
- classList.push(`${prefix}-is-disabled`);
- }
- classList.push(`${name}--${this.data.variant}`);
- if (this.data.ghost) {
- classList.push(`${name}--ghost`);
- }
- this.setData({
- className: classList.join(' '),
- });
- },
- getuserinfo(e) {
- this.triggerEvent('getuserinfo', e.detail);
- },
- contact(e) {
- this.triggerEvent('contact', e.detail);
- },
- getphonenumber(e) {
- this.triggerEvent('getphonenumber', e.detail);
- },
- error(e) {
- this.triggerEvent('error', e.detail);
- },
- opensetting(e) {
- this.triggerEvent('opensetting', e.detail);
- },
- launchapp(e) {
- this.triggerEvent('launchapp', e.detail);
- },
- chooseavatar(e) {
- this.triggerEvent('chooseavatar', e.detail);
- },
- handleTap(e) {
- if (this.data.disabled)
- return;
- this.triggerEvent('tap', e);
- },
- };
- }
- };
- Button = __decorate([
- wxComponent()
- ], Button);
- export default Button;
|