123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- 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 = {
- // 组件实例被创建
- // created() {},
- // 组件实例进入页面节点树
- attached() {
- this.setClass();
- },
- // 页面组件初始化完成
- // ready() { },
- // 组件实例被移动到节点树另一个位置
- // moved() {},
- // 组件实例被从页面节点树移除
- // detached() { },
- };
- /* Methods */
- this.methods = {
- setClass() {
- const classList = [
- name,
- `${prefix}-class`,
- `${name}--${this.data.theme || 'default'}`,
- `${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`);
- }
- // if (this.data.loading) {
- // classList.push(`${prefix}-is-loading`);
- // }
- 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);
- },
- handleTap(e) {
- if (this.data.disabled)
- return;
- this.triggerEvent('tap', e.detail);
- },
- };
- }
- };
- Button = __decorate([
- wxComponent()
- ], Button);
- export default Button;
- //# sourceMappingURL=button.js.map
|