tab-bar.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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 classPrefix = `${prefix}-tab-bar`;
  12. let Tabbar = class Tabbar extends SuperComponent {
  13. constructor() {
  14. super(...arguments);
  15. this.relations = {
  16. '../tab-bar-item/tab-bar-item': {
  17. type: 'descendant',
  18. },
  19. };
  20. this.externalClasses = [`${prefix}-class`];
  21. this.backupValue = -1;
  22. this.data = {
  23. prefix,
  24. classPrefix,
  25. };
  26. this.properties = props;
  27. this.controlledProps = [
  28. {
  29. key: 'value',
  30. event: 'change',
  31. },
  32. ];
  33. this.observers = {
  34. value() {
  35. this.updateChildren();
  36. },
  37. };
  38. this.lifetimes = {
  39. ready() {
  40. this.showChildren();
  41. },
  42. };
  43. this.methods = {
  44. showChildren() {
  45. const { value } = this.data;
  46. this.$children.forEach((child) => {
  47. if (child.properties.value === value) {
  48. child.showSpread();
  49. child.setData({ crowded: this.$children > 3 });
  50. }
  51. });
  52. },
  53. updateChildren() {
  54. const { value } = this.data;
  55. this.$children.forEach((child) => {
  56. child.checkActive(value);
  57. });
  58. },
  59. updateValue(value) {
  60. this._trigger('change', { value });
  61. },
  62. changeOtherSpread(value) {
  63. this.$children.forEach((child) => {
  64. if (child.properties.value !== value) {
  65. child.closeSpread();
  66. }
  67. });
  68. },
  69. initName() {
  70. return (this.backupValue += 1);
  71. },
  72. };
  73. }
  74. };
  75. Tabbar = __decorate([
  76. wxComponent()
  77. ], Tabbar);
  78. export default Tabbar;