checkbox-group.js 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151
  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}-checkbox-group`;
  12. let CheckBoxGroup = class CheckBoxGroup extends SuperComponent {
  13. constructor() {
  14. super(...arguments);
  15. this.externalClasses = ['class', `${prefix}-class`];
  16. this.relations = {
  17. '../checkbox/checkbox': {
  18. type: 'descendant',
  19. },
  20. };
  21. this.data = {
  22. prefix,
  23. classPrefix: name,
  24. checkboxOptions: [],
  25. };
  26. this.properties = Object.assign(Object.assign({}, props), { borderless: {
  27. type: Boolean,
  28. value: false,
  29. } });
  30. this.observers = {
  31. value() {
  32. this.updateChildren();
  33. },
  34. };
  35. this.lifetimes = {
  36. attached() {
  37. this.initWithOptions();
  38. },
  39. ready() {
  40. this.setCheckall();
  41. },
  42. };
  43. this.controlledProps = [
  44. {
  45. key: 'value',
  46. event: 'change',
  47. },
  48. ];
  49. this.$checkAll = null;
  50. this.methods = {
  51. getChilds() {
  52. let items = this.$children;
  53. if (!items.length) {
  54. items = this.selectAllComponents(`.${prefix}-checkbox-option`);
  55. }
  56. return items || [];
  57. },
  58. updateChildren() {
  59. const items = this.getChilds();
  60. const { value } = this.data;
  61. if (items.length > 0) {
  62. items.forEach((item) => {
  63. !item.data.checkAll &&
  64. item.setData({
  65. checked: value === null || value === void 0 ? void 0 : value.includes(item.data.value),
  66. });
  67. });
  68. if (items.some((item) => item.data.checkAll)) {
  69. this.setCheckall();
  70. }
  71. }
  72. },
  73. updateValue({ value, checked, checkAll, indeterminate }) {
  74. let { value: newValue } = this.data;
  75. const { max } = this.data;
  76. const keySet = new Set(this.getChilds().map((item) => item.data.value));
  77. newValue = newValue.filter((value) => keySet.has(value));
  78. if (max && checked && newValue.length === max)
  79. return;
  80. if (checkAll) {
  81. const items = this.getChilds();
  82. newValue =
  83. !checked && indeterminate
  84. ? items.map((item) => item.data.value)
  85. : items
  86. .filter(({ data }) => {
  87. if (data.disabled) {
  88. return newValue.includes(data.value);
  89. }
  90. return checked && !data.checkAll;
  91. })
  92. .map(({ data }) => data.value);
  93. }
  94. else if (checked) {
  95. newValue = newValue.concat(value);
  96. }
  97. else {
  98. const index = newValue.findIndex((v) => v === value);
  99. newValue.splice(index, 1);
  100. }
  101. this._trigger('change', { value: newValue });
  102. },
  103. initWithOptions() {
  104. const { options } = this.data;
  105. if (!(options === null || options === void 0 ? void 0 : options.length) || !Array.isArray(options))
  106. return;
  107. const checkboxOptions = options.map((item) => {
  108. const isLabel = ['number', 'string'].includes(typeof item);
  109. return isLabel
  110. ? {
  111. label: `${item}`,
  112. value: item,
  113. }
  114. : Object.assign({}, item);
  115. });
  116. this.setData({
  117. checkboxOptions,
  118. });
  119. },
  120. handleInnerChildChange(e) {
  121. var _a;
  122. const { item } = e.target.dataset;
  123. const { checked } = e.detail;
  124. const rect = {};
  125. if (item.checkAll) {
  126. rect.indeterminate = (_a = this.$checkAll) === null || _a === void 0 ? void 0 : _a.data.indeterminate;
  127. }
  128. this.updateValue(Object.assign(Object.assign(Object.assign({}, item), { checked }), rect));
  129. },
  130. setCheckall() {
  131. const items = this.getChilds();
  132. if (!this.$checkAll) {
  133. this.$checkAll = items.find((item) => item.data.checkAll);
  134. }
  135. if (!this.$checkAll)
  136. return;
  137. const { value } = this.data;
  138. const valueSet = new Set(value.filter((val) => val !== this.$checkAll.data.value));
  139. const isCheckall = items.every((item) => (item.data.checkAll ? true : valueSet.has(item.data.value)));
  140. this.$checkAll.setData({
  141. checked: valueSet.size > 0,
  142. indeterminate: !isCheckall,
  143. });
  144. },
  145. };
  146. }
  147. };
  148. CheckBoxGroup = __decorate([
  149. wxComponent()
  150. ], CheckBoxGroup);
  151. export default CheckBoxGroup;