popup.js 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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 { SuperComponent, wxComponent } from '../common/src/index';
  8. import config from '../common/config';
  9. import props from './props';
  10. import transition from '../mixins/transition';
  11. delete props.visible;
  12. const { prefix } = config;
  13. const name = `${prefix}-popup`;
  14. let Popup = class Popup extends SuperComponent {
  15. constructor() {
  16. super(...arguments);
  17. this.externalClasses = ['class', `${prefix}-class`, `${prefix}-class-content`];
  18. this.behaviors = [transition()];
  19. this.options = {
  20. multipleSlots: true,
  21. };
  22. this.properties = props;
  23. this.data = {
  24. prefix,
  25. classPrefix: name,
  26. };
  27. this.methods = {
  28. onStopPropagation() { },
  29. handleOverlayClick() {
  30. const { closeOnOverlayClick } = this.properties;
  31. if (closeOnOverlayClick) {
  32. this.triggerEvent('visible-change', { visible: false });
  33. }
  34. },
  35. handleClose() {
  36. this.triggerEvent('visible-change', { visible: false });
  37. },
  38. };
  39. }
  40. };
  41. Popup = __decorate([
  42. wxComponent()
  43. ], Popup);
  44. export default Popup;