helper.ts 534 B

12345678910111213141516
  1. import { CollocationModule } from "..";
  2. export const helper = CollocationModule.helper({
  3. findMatById(matId: string) {
  4. // TODO use queditor source
  5. const source = this.store.designDetail.scenePack.source;
  6. return source?.mats?.find((element: IMaterial) => element.id == matId);
  7. },
  8. findProductById(productId: string) {
  9. // todo use queditor source
  10. const source = this.store.designDetail.scenePack.source;
  11. return source?.products?.find(
  12. (element: PackProduct) => element.id == productId
  13. );
  14. },
  15. });