switch.js 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
  2. var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
  3. if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
  4. 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;
  5. return c > 3 && r && Object.defineProperty(target, key, r), r;
  6. };
  7. import { wxComponent, SuperComponent } from '../common/src/index';
  8. import config from '../common/config';
  9. import props from './props';
  10. const { prefix } = config;
  11. const name = `${prefix}-switch`;
  12. let Switch = class Switch extends SuperComponent {
  13. constructor() {
  14. super(...arguments);
  15. this.externalClasses = ['t-class', 't-class-label', 't-class-body', 't-class-dot'];
  16. this.behaviors = ['wx://form-field'];
  17. this.properties = props;
  18. this.data = {
  19. prefix,
  20. classPrefix: name,
  21. checked: false,
  22. };
  23. this.controlledProps = [
  24. {
  25. key: 'value',
  26. event: 'change',
  27. },
  28. ];
  29. this.observers = {
  30. value(val) {
  31. const [activeValue] = this.data.customValue;
  32. this.setData({
  33. checked: val === activeValue,
  34. });
  35. },
  36. };
  37. this.methods = {
  38. handleSwitch() {
  39. const { disabled, value, customValue } = this.data;
  40. const [activeValue, inactiveValue] = customValue;
  41. if (disabled)
  42. return;
  43. this._trigger('change', {
  44. value: value === activeValue ? inactiveValue : activeValue,
  45. });
  46. },
  47. };
  48. }
  49. };
  50. Switch = __decorate([
  51. wxComponent()
  52. ], Switch);
  53. export default Switch;