store.ts 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. import { ResourceModule } from ".";
  2. export type ActiveKeys = {
  3. type: string;
  4. id?: string;
  5. mId?: string;
  6. };
  7. export const store = ResourceModule.store({
  8. state: () => ({
  9. type: "video",
  10. sourceDetail: {
  11. webEditor: { pack: {} },
  12. } as any,
  13. matSlots: [] as any[],
  14. meshSlots: [] as any[],
  15. activeKeys: { type: "" } as ActiveKeys,
  16. treeData: [],
  17. }),
  18. getters: {
  19. currentMesh(state) {
  20. return (
  21. state.treeData.find(
  22. (e: any) =>
  23. e.Id ==
  24. (state.activeKeys.type == "mesh"
  25. ? state.activeKeys.id
  26. : state.activeKeys.mId)
  27. ) || {}
  28. );
  29. },
  30. currentMat() {
  31. return {};
  32. },
  33. currentSlot(state) {
  34. if (state.activeKeys.type == "mesh")
  35. return state.meshSlots.find((d) => d.id == state.activeKeys.id);
  36. else if (state.activeKeys.type == "mat")
  37. return state.matSlots.find((d) => d.id == state.activeKeys.id);
  38. },
  39. // currentMat(state) {
  40. // return this.store.currentMesh?.children?.find(
  41. // (e: any) => e.id == state.activeKeys.id
  42. // );
  43. // },
  44. },
  45. actions: {
  46. setSourceType(v: string) {
  47. this.store.type = v;
  48. },
  49. setSourceDetail(data) {
  50. this.store.sourceDetail = data;
  51. },
  52. setActiveKey(data: ActiveKeys) {
  53. this.store.activeKeys = data;
  54. },
  55. setTreeData(data) {
  56. this.store.treeData = data;
  57. },
  58. },
  59. });