design.ts 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. import { ScenePackageSource } from "@queenjs-modules/queditor/module/objects/scenePack";
  2. import { queenApi } from "queenjs";
  3. import { CollocationModule } from "../..";
  4. export const designAction = CollocationModule.action({
  5. async delDesign(item: IStyle) {
  6. const result = await queenApi.showConfirm({
  7. title: "删除提示",
  8. content: `删除后不可恢复,是否删除${item.name}?`,
  9. type: "danger",
  10. });
  11. if (!result) return;
  12. const res = await this.https.deleteStyle(item._id);
  13. if (res.errorNo != 200) return;
  14. this.controls.listCtrl.fresh();
  15. },
  16. async saveDesign() {
  17. const { _id, matMatchs, scenePack, prodMatchs } = this.store.designDetail;
  18. await this.https.updateStyle({ _id, matMatchs, prodMatchs, scenePack });
  19. },
  20. async addDesign(values) {
  21. const styleItem = { ...values };
  22. if (!styleItem.scenePack.source) {
  23. queenApi.messageError("所选数据错误!");
  24. return;
  25. }
  26. const packSource: ScenePackageSource = styleItem.scenePack.source;
  27. const scenes = packSource.scenes || [];
  28. const prodCompMap = new Map();
  29. scenes.forEach((c) => {
  30. const sprods = c.products || []; //场景里面的单品
  31. sprods.forEach((sp) => {
  32. if (!sp.visible) return; //当前单品是隐藏的,忽略
  33. const prod = packSource.products.find((item) => item.id == sp.prodId);
  34. if (!prod) return;
  35. const comps = prod?.components || []; //单品的材质配置
  36. comps.forEach((comp) => {
  37. if (!comp.visible) return; //当前部件是隐藏的,忽略
  38. //获取单品部件配置
  39. if (!prodCompMap.get(prod.id)) {
  40. prodCompMap.set(prod.id, new Map());
  41. }
  42. const compMap = prodCompMap.get(prod.id);
  43. if (!compMap.get(comp.name)) {
  44. compMap[comp.name] = {
  45. index: 0,
  46. name: comp.name,
  47. matIds: [],
  48. sceneProId: sp.id,
  49. visible: comp.visible,
  50. };
  51. }
  52. const currComp = compMap[comp.name];
  53. if (comp.matId && currComp.matIds.indexOf(comp.matId) < 0) {
  54. currComp.matIds.push(comp.matId);
  55. }
  56. });
  57. });
  58. });
  59. const matMatchs: MatsMatchComp[] = [];
  60. const CompMaps: any = {};
  61. for (const [key, value] of prodCompMap.entries()) {
  62. const prodConf = value;
  63. for (const compKey in prodConf) {
  64. if (!CompMaps[compKey]) {
  65. CompMaps[compKey] = prodConf[compKey];
  66. CompMaps[compKey].productId = key;
  67. continue;
  68. }
  69. const compConf = CompMaps[compKey];
  70. const conf = prodConf[compKey];
  71. conf.matIds.forEach((e: any) => {
  72. if (compConf.matIds.indexOf(e) < 0) {
  73. compConf.matIds.push(e);
  74. }
  75. });
  76. }
  77. }
  78. for (const k in CompMaps) {
  79. matMatchs.push(CompMaps[k]);
  80. }
  81. styleItem.matMatchs = matMatchs;
  82. styleItem.prodMatchs = [
  83. {
  84. index: -1,
  85. category: "换单品",
  86. group: "",
  87. productIds: [],
  88. },
  89. ];
  90. await this.https.createStyle(styleItem);
  91. queenApi.messageSuccess("添加成功");
  92. this.controls.listCtrl.fresh();
  93. return true;
  94. },
  95. });