component.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. 'use strict';
  2. Object.defineProperty(exports, '__esModule', {
  3. value: true
  4. });
  5. exports.VantComponent = void 0;
  6. var basic_1 = require('../mixins/basic');
  7. var relationFunctions = {
  8. ancestor: {
  9. linked: function (parent) {
  10. this.parent = parent;
  11. },
  12. unlinked: function () {
  13. this.parent = null;
  14. }
  15. },
  16. descendant: {
  17. linked: function (child) {
  18. this.children = this.children || [];
  19. this.children.push(child);
  20. },
  21. unlinked: function (child) {
  22. this.children = (this.children || []).filter(function (it) {
  23. return it !== child;
  24. });
  25. }
  26. }
  27. };
  28. function mapKeys(source, target, map) {
  29. Object.keys(map).forEach(function (key) {
  30. if (source[key]) {
  31. target[map[key]] = source[key];
  32. }
  33. });
  34. }
  35. function makeRelation(options, vantOptions, relation) {
  36. var _a;
  37. var type = relation.type;
  38. var name = relation.name;
  39. var linked = relation.linked;
  40. var unlinked = relation.unlinked;
  41. var linkChanged = relation.linkChanged;
  42. var beforeCreate = vantOptions.beforeCreate;
  43. var destroyed = vantOptions.destroyed;
  44. if (type === 'descendant') {
  45. options.created = function () {
  46. if (beforeCreate) {
  47. beforeCreate.bind(this)();
  48. }
  49. this.children = this.children || [];
  50. };
  51. options.detached = function () {
  52. this.children = [];
  53. if (destroyed) {
  54. destroyed.bind(this)();
  55. }
  56. };
  57. }
  58. options.relations = Object.assign(options.relations || {}, {
  59. type: type,
  60. linked: function (node) {
  61. relationFunctions[type].linked.bind(this)(node);
  62. if (linked) {
  63. linked.bind(this)(node);
  64. }
  65. },
  66. linkChanged: function (node) {
  67. if (linkChanged) {
  68. linkChanged.bind(this)(node);
  69. }
  70. },
  71. unlinked: function (node) {
  72. relationFunctions[type].unlinked.bind(this)(node);
  73. if (unlinked) {
  74. unlinked.bind(this)(node);
  75. }
  76. }
  77. });
  78. }
  79. function VantComponent(vantOptions) {
  80. if (vantOptions === void 0) {
  81. vantOptions = {};
  82. }
  83. mapKeys(vantOptions, options, {
  84. data: 'data',
  85. props: 'properties',
  86. mixins: 'behaviors',
  87. methods: 'methods',
  88. beforeCreate: 'created',
  89. created: 'attached',
  90. mounted: 'ready',
  91. relations: 'relations',
  92. destroyed: 'detached',
  93. classes: 'externalClasses'
  94. });
  95. var relation = vantOptions.relation;
  96. if (relation) {
  97. makeRelation(options, vantOptions, relation);
  98. }
  99. // add default externalClasses
  100. options.externalClasses = options.externalClasses || [];
  101. options.externalClasses.push('custom-class');
  102. // add default behaviors
  103. options.behaviors = options.behaviors || [];
  104. options.behaviors.push(basic_1.basic);
  105. // map field to form-field behavior
  106. if (vantOptions.field) {
  107. options.behaviors.push('wx://form-field');
  108. }
  109. if (options.properties) {
  110. Object.keys(options.properties).forEach(function (name) {
  111. if (Array.isArray(options.properties[name])) {
  112. // miniprogram do not allow multi type
  113. options.properties[name] = null;
  114. }
  115. });
  116. }
  117. // add default options
  118. options.options = {
  119. multipleSlots: true,
  120. addGlobalClass: true
  121. };
  122. export default {
  123. data() {
  124. return {};
  125. },
  126. methods: {},
  127. created: function () {}
  128. };
  129. }
  130. exports.VantComponent = VantComponent;