side-bar.js 2.0 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`;
  12. const relationsPath = '../side-bar-item/side-bar-item';
  13. let SideBar = class SideBar extends SuperComponent {
  14. constructor() {
  15. super(...arguments);
  16. this.externalClasses = [`${prefix}-class`];
  17. this.childs = [];
  18. this.relations = {
  19. [relationsPath]: {
  20. type: 'child',
  21. linked(child) {
  22. this.childs.push(child);
  23. },
  24. unlinked(child) {
  25. const index = this.childs.findIndex((item) => item === child);
  26. this.childs.splice(index, 1);
  27. },
  28. },
  29. };
  30. this.controlledProps = [
  31. {
  32. key: 'value',
  33. event: 'change',
  34. },
  35. ];
  36. this.properties = props;
  37. this.observers = {
  38. value(v) {
  39. this.$children.forEach((item) => {
  40. item.updateActive(v);
  41. });
  42. },
  43. };
  44. this.data = {
  45. classPrefix: name,
  46. prefix,
  47. };
  48. this.methods = {
  49. doChange({ value, label }) {
  50. this._trigger('change', { value, label });
  51. },
  52. };
  53. }
  54. };
  55. SideBar = __decorate([
  56. wxComponent()
  57. ], SideBar);
  58. export default SideBar;