component.tsx 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. import { defineComponent } from "vue";
  2. import { string } from "vue-types";
  3. import { useEditor } from "../../../..";
  4. import { useCompRef } from "../hooks";
  5. import { css } from "@linaria/core";
  6. import { PageMusic } from "./PageMusic";
  7. import { MusicOptions } from "./localMusic";
  8. import { useCompData } from "../../defines/hook";
  9. import { CompPageObj } from ".";
  10. export const Component = defineComponent({
  11. props: {
  12. compId: string().isRequired,
  13. },
  14. setup(props, { slots }) {
  15. const editor = useEditor();
  16. const { helper, store, controls } = editor;
  17. const compRef = useCompRef(props.compId);
  18. return () => {
  19. const page = controls.pageCtrl;
  20. const comp = useCompData<CompPageObj>(props.compId);
  21. const { children, layout, value } = comp;
  22. const compMusic = value.music || "";
  23. const curValue = MusicOptions.find((e) => {
  24. return e.value == compMusic;
  25. });
  26. const style = helper.createStyle(layout || { size: [750] }, comp);
  27. if (comp.value.pageMode == "short" && store.isDisplay) {
  28. style.height = "100vh";
  29. style.width = "100vw";
  30. }
  31. let contextStyle:any = null;
  32. if (page.rootPage.value.pageMode == "short" && !store.isEditMode) {
  33. contextStyle = { transform: `translate(0, ${ -store.shortPage.index * window.innerHeight + store.shortPage.offset}px`};
  34. if (!store.shortPage.isMoving) {
  35. contextStyle.transition = "transform .4s ease-out";
  36. }
  37. }
  38. console.log("curr card=>", store.currStreamCardId, store.currStreamCard?.children.default?.length);
  39. style.transform = "matrix(1,0,0,1,0,0)";
  40. style.overflow = "unset";
  41. return (
  42. <div
  43. ref={compRef}
  44. style={style}
  45. class={[comp.value.pageMode != "short" && "!h-auto", editor.store.isEditMode ? pageEditStyle : ""]}
  46. >
  47. {
  48. (store.isDisplay || (store.isEditMode && controls.screenCtrl.state.screen.pageMode != "short")) && <div class="relative z-1000" style={contextStyle}>
  49. {slots.Container?.(
  50. children.default.map((compId) => {
  51. const comp = helper.findComp(compId);
  52. if (!comp) return;
  53. return slots.CompItem?.(comp);
  54. })
  55. )}
  56. {curValue?.value && !editor.store.isEditMode && <PageMusic />}
  57. </div>
  58. }
  59. {
  60. store.isEditMode && controls.screenCtrl.state.screen.pageMode == "short" && store.currStreamCard && <div class="relative z-1000" style={contextStyle}>
  61. {
  62. slots.Container?.( [slots.CompItem?.(store.currStreamCard)])
  63. }
  64. </div>
  65. }
  66. </div>
  67. );
  68. };
  69. },
  70. });
  71. const pageEditStyle = css`
  72. box-shadow: 0 0 0 3000px rgba(0, 0, 0, 0.4);
  73. `;