collocation.ts 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. import { queenApi } from "queenjs";
  2. import { CollocationModule } from "../..";
  3. export const collocationAction = CollocationModule.action({
  4. async queryStyleDetail(id: string) {
  5. const res = await this.https.getStyleDetail(id);
  6. this.store.setDesignDetail(res.result);
  7. },
  8. async addMatchCategory() {
  9. const res = await queenApi.showInput({ title: "请输入分类名称" });
  10. if (!res) return;
  11. const data = {
  12. index: -1,
  13. category: res,
  14. group: "",
  15. productIds: [],
  16. };
  17. this.store.addMatchCategory(data);
  18. this.store.setEditType(res);
  19. },
  20. async renameMatchCategory() {
  21. const name = await queenApi.showInput({
  22. title: "请输入分类名称",
  23. defaultValue: this.store.editType,
  24. });
  25. if (!name) return;
  26. this.store.currentGroupList.forEach((element: ProductMatching) => {
  27. element.category = name;
  28. });
  29. this.store.setEditType(name);
  30. },
  31. async deleteMatchCategory() {
  32. const res = await queenApi.showConfirm({
  33. type: "danger",
  34. content: `删除以后不可恢复,确认要删除:${this.store.editType}?`,
  35. });
  36. if (!res) return;
  37. const prodMatchs = this.store.designDetail.prodMatchs.filter(
  38. (m: ProductMatching) => m.category != this.store.editType
  39. );
  40. this.store.setEditType("mat");
  41. this.store.setMatchCategory(prodMatchs);
  42. },
  43. async addCategoryGroup() {
  44. const res = await queenApi.showInput({ title: "请输入分组名称" });
  45. if (!res) return;
  46. const group = {
  47. index: -1,
  48. category: this.store.editType,
  49. group: res,
  50. productIds: [],
  51. };
  52. this.store.addMatchCategory(group);
  53. },
  54. async renameMatGroup() {
  55. const res = await queenApi.showInput({
  56. title: "重命名",
  57. defaultValue: "***",
  58. });
  59. if (!res) return;
  60. },
  61. async clearMatGroup(matsGroup: MatsMatchComp) {
  62. matsGroup.matIds = [];
  63. matsGroup.index = 0;
  64. },
  65. async lockMatGroup() {
  66. //
  67. },
  68. async switchMatGroup() {
  69. //
  70. },
  71. async renameProductGroup(prodGroup) {
  72. const name = await queenApi.showInput({
  73. title: "重命名",
  74. defaultValue: prodGroup.group,
  75. });
  76. if (!name) return;
  77. prodGroup.group = name;
  78. },
  79. async deleteProductGroup(record) {
  80. if (this.store.currentGroupList.length == 1) {
  81. queenApi.messageError("至少保留一个分组!");
  82. return;
  83. }
  84. const res = await queenApi.showConfirm({
  85. type: "danger",
  86. content: `删除以后不可恢复,确认要删除:${record.group}?`,
  87. });
  88. if (!res) return;
  89. const i = this.store.designDetail.prodMatchs.findIndex(
  90. (e: ProductMatching) =>
  91. e.group == record.group && e.category == record.category
  92. );
  93. this.store.designDetail.prodMatchs.splice(i, 1);
  94. },
  95. async clearProductGroup() {
  96. //
  97. },
  98. dropProduct(product, extraData) {
  99. //
  100. },
  101. async deleteGroupMat(matsGroup: MatsMatchComp, index) {
  102. // const res = await queenApi.showConfirm({
  103. // content: `删除后不可恢复,确认要删除?`,
  104. // type: "danger",
  105. // });
  106. // if (!res) return;
  107. matsGroup.matIds.splice(index, 1);
  108. if (matsGroup.index > matsGroup.matIds.length - 1) {
  109. matsGroup.index = matsGroup?.matIds?.length - 1;
  110. }
  111. //
  112. },
  113. switchMatsGroup() {
  114. // switchSceneProdComp.call(this, sceneProductId, compName);
  115. // queditor.controls.queen3dCtrl.queen3d.
  116. },
  117. async switchMatsGroupIndex(matsGroup: MatsMatchComp, index: number) {
  118. matsGroup.index = index;
  119. this.actions.renderGroupMat(matsGroup, false);
  120. },
  121. renderGroupMat(matsGroup: MatsMatchComp, isCreate = true) {
  122. // const targetPro = queditor.store.pack.products.find(
  123. // (p) => p.id == matsGroup.productId
  124. // );
  125. // const targetCom = targetPro?.components.find(
  126. // (c) => c.name == matsGroup.name
  127. // );
  128. // if (!targetCom) return;
  129. // const mat = queditor.store.pack.mats.find(
  130. // (m: IMaterial) => m.id == matsGroup.matIds[matsGroup.index]
  131. // );
  132. // if (!mat) return;
  133. // queditor.actions.updatePackProductCompMat(targetCom, mat, isCreate);
  134. },
  135. async renameGroupMat(mat) {
  136. const name = await queenApi.showInput({
  137. title: "重命名",
  138. defaultValue: mat.name,
  139. });
  140. if (!name) return;
  141. mat.name = name;
  142. },
  143. });