index.tsx 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. import { useCollocation } from "@/modules/collocation";
  2. import { useQueditor } from "@queenjs-modules/queditor";
  3. import { List } from "@queenjs/ui";
  4. import { queenApi } from "queenjs";
  5. import { defineComponent } from "vue";
  6. import PanelCard from "../components/PanelCard";
  7. import PanelGroup from "../components/PanelGroup";
  8. import MatItem from "./MatItem";
  9. export default defineComponent({
  10. setup() {
  11. const queditor = useQueditor();
  12. const collocation = useCollocation();
  13. queditor.controls.drager.on(
  14. "drop:selfDrop",
  15. async (event: DragEvent, { type, data }: any, extraData: any) => {
  16. const dropData = await data();
  17. // console.error("dropData: ", dropData);
  18. if (type == "asset3d.mat") {
  19. dropMat(dropData, extraData);
  20. } else if (type == "asset3d.mesh") {
  21. dropMesh(dropData);
  22. }
  23. }
  24. );
  25. function dropMesh(dropData: any) {
  26. console.log("dropData: ", dropData);
  27. //
  28. }
  29. // 拖拽面料
  30. function dropMat(mat: IMaterial, extraData: any) {
  31. const targetPro = queditor.store.pack.products.find(
  32. (p) => p.id == extraData.productId
  33. );
  34. const targetCom = targetPro?.components.find(
  35. (c) => c.name == extraData.name
  36. );
  37. if (!targetCom) return;
  38. queditor.actions.updatePackProductCompMat(targetCom, mat, true);
  39. const currComp = findCurrentComp(extraData);
  40. if (!currComp.matIds) currComp.matIds = [];
  41. // TODO 判断重复拖拽
  42. if (currComp.matIds.includes(mat.id)) {
  43. queenApi.messageError("不能重复添加色卡");
  44. return;
  45. }
  46. currComp.matIds.push(mat.id);
  47. currComp.index = currComp.matIds.length - 1;
  48. }
  49. function findCurrentComp(target: MatsMatchComp) {
  50. const currComp = collocation.store.menuOptions.sourceData.mat.find(
  51. (r: MatsMatchComp) =>
  52. r.name == target.name && r.productId == target.productId
  53. );
  54. return currComp;
  55. }
  56. async function switchMatsGroupIndex(
  57. matsGroup: MatsMatchComp,
  58. index: number
  59. ) {
  60. const currComp = findCurrentComp(matsGroup);
  61. currComp.index = index;
  62. //
  63. const targetPro = queditor.store.pack.products.find(
  64. (p) => p.id == matsGroup.productId
  65. );
  66. const targetCom = targetPro?.components.find(
  67. (c) => c.name == matsGroup.name
  68. );
  69. if (!targetCom) return;
  70. const mat = queditor.store.pack.mats.find(
  71. (m) => m.id == currComp.matIds[index]
  72. );
  73. if (!mat) return;
  74. queditor.actions.updatePackProductCompMat(targetCom, mat, false);
  75. }
  76. const switchMatsGroup = () => {
  77. // switchSceneProdComp.call(this, sceneProductId, compName);
  78. // queditor.controls.queen3dCtrl.queen3d.
  79. };
  80. const handleChange = (key: string, matsGroup: MatsMatchComp) => {
  81. switch (key) {
  82. case "rename":
  83. collocation.actions.renameMatGroup();
  84. break;
  85. case "lock":
  86. collocation.actions.lockMatGroup();
  87. break;
  88. case "clear":
  89. collocation.actions.clearMatGroup(matsGroup);
  90. break;
  91. }
  92. };
  93. return () => {
  94. return (
  95. <PanelCard
  96. title="部件库"
  97. onSave={() => {
  98. console.error(queditor.store.pack);
  99. collocation.store.designDetail.scenePack.source =
  100. queditor.store.pack;
  101. collocation.actions.saveDesign();
  102. }}
  103. >
  104. {collocation.store.menuOptions.sourceData?.mat.map(
  105. (matsGroup: MatsMatchComp, index: number) => {
  106. return (
  107. <PanelGroup
  108. key={index}
  109. type="asset3d.mat"
  110. active={
  111. queditor.store.currActiveProdComp?.name == matsGroup.name
  112. }
  113. title={matsGroup.name}
  114. tools={["rename", "lock", "clear"]}
  115. target={matsGroup}
  116. onChange={(key) => handleChange(key, matsGroup)}
  117. onSelect={switchMatsGroup}
  118. >
  119. <List data={matsGroup.matIds || []} columns={5} gap="5px">
  120. {{
  121. item: (matId: string, index: number) => {
  122. return (
  123. <MatItem
  124. key={matId}
  125. mat={collocation.helper.findMatById(matId)}
  126. active={index == matsGroup.index}
  127. onClick={() =>
  128. switchMatsGroupIndex(matsGroup, index)
  129. }
  130. />
  131. );
  132. },
  133. empty: () => (
  134. <div class="my-30px text-12px text-center text-gray-500">
  135. 暂无数据
  136. </div>
  137. ),
  138. }}
  139. </List>
  140. </PanelGroup>
  141. );
  142. }
  143. )}
  144. </PanelCard>
  145. );
  146. };
  147. },
  148. });