swipe-cell.js 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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 { getRect } from '../common/utils';
  11. let ARRAY = [];
  12. const { prefix } = config;
  13. const name = `${prefix}-swipe-cell`;
  14. const ContainerClass = `.${name}`;
  15. let SwiperCell = class SwiperCell extends SuperComponent {
  16. constructor() {
  17. super(...arguments);
  18. this.externalClasses = [`${prefix}-class`];
  19. this.options = {
  20. multipleSlots: true,
  21. };
  22. this.properties = props;
  23. this.data = {
  24. prefix,
  25. wrapperStyle: '',
  26. closed: true,
  27. classPrefix: name,
  28. };
  29. }
  30. attached() {
  31. ARRAY.push(this);
  32. }
  33. ready() {
  34. this.setSwipeWidth();
  35. }
  36. setSwipeWidth() {
  37. Promise.all([getRect(this, `${ContainerClass}__left`), getRect(this, `${ContainerClass}__right`)]).then(([leftRect, rightRect]) => {
  38. this.setData({
  39. leftWidth: leftRect.width,
  40. rightWidth: rightRect.width,
  41. });
  42. });
  43. }
  44. detached() {
  45. ARRAY = ARRAY.filter((item) => item !== this);
  46. }
  47. open() {
  48. this.setData({ opened: true });
  49. }
  50. close() {
  51. this.setData({ opened: false });
  52. }
  53. closeOther() {
  54. ARRAY.filter((item) => item !== this).forEach((item) => item.close());
  55. }
  56. onTap() {
  57. this.close();
  58. }
  59. onActionTap(event) {
  60. const { currentTarget: { dataset: { action }, }, } = event;
  61. this.triggerEvent('click', action);
  62. }
  63. };
  64. SwiperCell = __decorate([
  65. wxComponent()
  66. ], SwiperCell);
  67. export default SwiperCell;