side-bar-item.js 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. const { prefix } = config;
  11. const name = `${prefix}-side-bar-item`;
  12. let SideBarItem = class SideBarItem extends SuperComponent {
  13. constructor() {
  14. super(...arguments);
  15. this.externalClasses = [`${prefix}-class`];
  16. this.properties = props;
  17. this.relations = {
  18. '../side-bar/side-bar': {
  19. type: 'parent',
  20. linked(parent) {
  21. this.parent = parent;
  22. this.updateActive(parent.data.value);
  23. },
  24. },
  25. };
  26. this.observers = {
  27. icon(v) {
  28. this.setData({ _icon: typeof v === 'string' ? { name: v } : v });
  29. },
  30. };
  31. this.data = {
  32. classPrefix: name,
  33. prefix,
  34. active: false,
  35. isPre: false,
  36. isNext: false,
  37. };
  38. this.methods = {
  39. updateActive(value) {
  40. const active = value === this.data.value;
  41. this.setData({
  42. active,
  43. });
  44. },
  45. handleClick() {
  46. var _a;
  47. if (this.data.disabled)
  48. return;
  49. const { value, label } = this.data;
  50. (_a = this.parent) === null || _a === void 0 ? void 0 : _a.doChange({ value, label });
  51. },
  52. };
  53. }
  54. };
  55. SideBarItem = __decorate([
  56. wxComponent()
  57. ], SideBarItem);
  58. export default SideBarItem;