index.ts 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. import { Dict_Imgs } from "@/dict";
  2. import { createAttrsForm } from "../../defines/createAttrsForm";
  3. import { ImagePicker } from "../../formItems/ImagePicker";
  4. import { DesignCompObj } from "@/modules/editor/objects/DesignTemp/DesignComp";
  5. import { RxValue } from "@/modules/editor/controllers/ReactCtrl/rxValue";
  6. export { Component } from "./component";
  7. export const options = {
  8. name: "3D",
  9. thumbnail: require("@/modules/editor/assets/icons/3d.svg"),
  10. };
  11. const Web3dValue = {
  12. url: "https://www.sku3d.com/share.html?id=6478676ca494a3ea15a6fa82",
  13. inline: true,
  14. poster: Dict_Imgs.Default,
  15. ratio: 1,
  16. }
  17. export function createComp() {
  18. return new CompWeb3DObj();
  19. }
  20. export class CompWeb3DObj extends DesignCompObj<typeof Web3dValue> {
  21. value = RxValue.create({...Web3dValue})
  22. onCreated() {
  23. this.compKey = "Web3D";
  24. this.layout.size = [750, 750];
  25. }
  26. }
  27. export const Form = createAttrsForm([
  28. {
  29. label: "3D链接",
  30. dataIndex: "value.url",
  31. component: "Input",
  32. },
  33. {
  34. label: "封面",
  35. dataIndex: "value.poster",
  36. component: ImagePicker,
  37. },
  38. {
  39. label: "场景比例",
  40. dataIndex: "value.ratio",
  41. component: "Select",
  42. props: {
  43. options: [
  44. { label: "1:1", value: 1 },
  45. { label: "4:3", value: 4 / 3 },
  46. { label: "3:4", value: 3 / 4 },
  47. { label: "16:9", value: 16 / 9 },
  48. { label: "9:16", value: 9 / 16 },
  49. ],
  50. },
  51. },
  52. {
  53. label: "内嵌3D",
  54. dataIndex: "value.inline",
  55. component: "Switch",
  56. },
  57. ]);