|
@@ -3,7 +3,14 @@ import { DesignComp } from "@/modules/editor/objects/DesignTemp/DesignComp";
|
|
|
import { css, cx } from "@linaria/core";
|
|
|
import { IconDelete } from "@queenjs/icons";
|
|
|
import "animate.css";
|
|
|
-import { defineComponent, onMounted, onUnmounted, reactive, ref } from "vue";
|
|
|
+import {
|
|
|
+ defineComponent,
|
|
|
+ inject,
|
|
|
+ onMounted,
|
|
|
+ onUnmounted,
|
|
|
+ reactive,
|
|
|
+ ref,
|
|
|
+} from "vue";
|
|
|
import { bool, string } from "vue-types";
|
|
|
import { useEditor } from "../../..";
|
|
|
import { useCompEditLayerRef, useCompRef } from "./hooks";
|
|
@@ -16,7 +23,7 @@ export const View = defineComponent({
|
|
|
showMask: bool().def(false),
|
|
|
},
|
|
|
emits: ["dblclick", "click"],
|
|
|
- setup(props, { slots, emit }) {
|
|
|
+ setup(props, { slots, emit, attrs }) {
|
|
|
const { store, actions, helper, controls } = useEditor();
|
|
|
const compRef = useCompRef(props.compId);
|
|
|
const editorLayerRef = props.editlayer
|
|
@@ -24,11 +31,23 @@ export const View = defineComponent({
|
|
|
: ref();
|
|
|
|
|
|
const isLongPage = controls.screenCtrl.isLongPage;
|
|
|
+ const isPreview = inject("isPreview", false);
|
|
|
|
|
|
const state = reactive({
|
|
|
showAnimation: false,
|
|
|
});
|
|
|
|
|
|
+ function createBgStyles() {
|
|
|
+ let bgS = {
|
|
|
+ position: "absolute",
|
|
|
+ top: 0,
|
|
|
+ left: 0,
|
|
|
+ right: 0,
|
|
|
+ bottom: 0,
|
|
|
+ };
|
|
|
+ return bgS;
|
|
|
+ }
|
|
|
+
|
|
|
onUnmounted(() => {
|
|
|
intersectionObserver.disconnect();
|
|
|
});
|
|
@@ -54,12 +73,25 @@ export const View = defineComponent({
|
|
|
const gizmo = controls.selectCtrl.gizmo;
|
|
|
const page = controls.pageCtrl;
|
|
|
|
|
|
+ const showBgDiv = comp.compKey == "Container" && isPreview && !isLongPage;
|
|
|
+
|
|
|
let isFocus =
|
|
|
store.isEditMode &&
|
|
|
gizmo.state.transform.selected.length > 1 &&
|
|
|
gizmo.state.lastId == props.compId;
|
|
|
|
|
|
const style = helper.createStyle(comp.layout, comp);
|
|
|
+ if (comp.compKey == "Container") {
|
|
|
+ delete style.transform;
|
|
|
+ style["transform-origin"] = "center center";
|
|
|
+ }
|
|
|
+
|
|
|
+ let bgStyles: any = {};
|
|
|
+ if (showBgDiv) {
|
|
|
+ bgStyles = createBgStyles();
|
|
|
+ bgStyles.background = style.background;
|
|
|
+ delete style.background;
|
|
|
+ }
|
|
|
|
|
|
if (isStreamCard) {
|
|
|
style.overflow = "unset";
|
|
@@ -145,80 +177,86 @@ export const View = defineComponent({
|
|
|
}
|
|
|
|
|
|
return (
|
|
|
- <div
|
|
|
- ref={compRef}
|
|
|
- class={[
|
|
|
- comp.compKey,
|
|
|
- viewStyle,
|
|
|
- page.state.currStreamCardId == props.compId &&
|
|
|
- store.isEditMode &&
|
|
|
- CurrCompStyle,
|
|
|
- isFocus && AnchorCompStyle,
|
|
|
- isFocus && groupCompCls,
|
|
|
- ]}
|
|
|
- style={style}
|
|
|
- onClick={(e) => {
|
|
|
- if (!store.isEditMode) {
|
|
|
- e.stopPropagation();
|
|
|
- emit("click");
|
|
|
- }
|
|
|
- }}
|
|
|
- onDblclick={() => emit("dblclick")}
|
|
|
- >
|
|
|
+ <>
|
|
|
+ {showBgDiv && <div style={bgStyles}></div>}
|
|
|
+
|
|
|
<div
|
|
|
- class={cx(
|
|
|
- comp.layout.anim ? (aniStyles ? aniStyles : "opacity-0") : ""
|
|
|
- )}
|
|
|
- onMousemove={(e) => {
|
|
|
- if (
|
|
|
- !store.isEditMode ||
|
|
|
- !controls.dragAddCtrl.dragingCompKey ||
|
|
|
- !helper.isStreamCard(props.compId)
|
|
|
- )
|
|
|
- return;
|
|
|
- controls.editorCtrl.clickPickComp(props.compId);
|
|
|
+ {...attrs}
|
|
|
+ ref={compRef}
|
|
|
+ class={[
|
|
|
+ comp.compKey,
|
|
|
+ viewStyle,
|
|
|
+ page.state.currStreamCardId == props.compId &&
|
|
|
+ store.isEditMode &&
|
|
|
+ !isPreview &&
|
|
|
+ CurrCompStyle,
|
|
|
+ isFocus && AnchorCompStyle,
|
|
|
+ isFocus && groupCompCls,
|
|
|
+ ]}
|
|
|
+ style={style}
|
|
|
+ onClick={(e) => {
|
|
|
+ if (!store.isEditMode) {
|
|
|
+ e.stopPropagation();
|
|
|
+ emit("click");
|
|
|
+ }
|
|
|
}}
|
|
|
+ onDblclick={() => emit("dblclick")}
|
|
|
>
|
|
|
- {slots.default?.()}
|
|
|
- </div>
|
|
|
+ <div
|
|
|
+ class={cx(
|
|
|
+ comp.layout.anim ? (aniStyles ? aniStyles : "opacity-0") : ""
|
|
|
+ )}
|
|
|
+ onMousemove={(e) => {
|
|
|
+ if (
|
|
|
+ !store.isEditMode ||
|
|
|
+ !controls.dragAddCtrl.dragingCompKey ||
|
|
|
+ !helper.isStreamCard(props.compId)
|
|
|
+ )
|
|
|
+ return;
|
|
|
+ controls.editorCtrl.clickPickComp(props.compId);
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ {slots.default?.()}
|
|
|
+ </div>
|
|
|
|
|
|
- {/* {store.isEditMode &&
|
|
|
+ {/* {store.isEditMode &&
|
|
|
isStreamCard &&
|
|
|
store.currStreamCardId == props.compId && (
|
|
|
<Hudop compId={props.compId} />
|
|
|
)} */}
|
|
|
|
|
|
- {store.isEditMode && props.editlayer && (
|
|
|
- <div ref={editorLayerRef} class={editAreaStyle}></div>
|
|
|
- )}
|
|
|
-
|
|
|
- {props.showMask && isLongPage && (
|
|
|
- <>
|
|
|
- {RenderPre()}
|
|
|
- {RenderAfter()}
|
|
|
- </>
|
|
|
- )}
|
|
|
- {props.showMask &&
|
|
|
- !isLongPage &&
|
|
|
- controls.screenCtrl.state.screen.useFor == "mobile" && (
|
|
|
- <div
|
|
|
- class={cx(
|
|
|
- safeAreaStyles,
|
|
|
- "absolute left-0 top-1/2 w-1/1 translate -translate-y-1/2 transform pointer-events-none"
|
|
|
- )}
|
|
|
- style={{
|
|
|
- height: `${controls.screenCtrl.state.safeFactor * 100}%`,
|
|
|
- }}
|
|
|
- >
|
|
|
- <div class={[divideStyle, "top"]}>
|
|
|
- <span class="tip"> 安全线</span>
|
|
|
- </div>
|
|
|
- <div class={[divideStyle, "bottom"]}>
|
|
|
- <span class="tip"> 安全线</span>
|
|
|
- </div>
|
|
|
- </div>
|
|
|
+ {store.isEditMode && props.editlayer && (
|
|
|
+ <div ref={editorLayerRef} class={editAreaStyle}></div>
|
|
|
+ )}
|
|
|
+
|
|
|
+ {props.showMask && isLongPage && (
|
|
|
+ <>
|
|
|
+ {RenderPre()}
|
|
|
+ {RenderAfter()}
|
|
|
+ </>
|
|
|
)}
|
|
|
- </div>
|
|
|
+ {props.showMask &&
|
|
|
+ !isLongPage &&
|
|
|
+ controls.screenCtrl.state.screen.useFor == "mobile" && (
|
|
|
+ <div
|
|
|
+ class={cx(
|
|
|
+ safeAreaStyles,
|
|
|
+ "absolute left-0 top-1/2 w-1/1 translate -translate-y-1/2 transform pointer-events-none"
|
|
|
+ )}
|
|
|
+ style={{
|
|
|
+ height: `${controls.screenCtrl.state.safeFactor * 100}%`,
|
|
|
+ }}
|
|
|
+ >
|
|
|
+ <div class={[divideStyle, "top"]}>
|
|
|
+ <span class="tip"> 安全线</span>
|
|
|
+ </div>
|
|
|
+ <div class={[divideStyle, "bottom"]}>
|
|
|
+ <span class="tip"> 安全线</span>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+ )}
|
|
|
+ </div>
|
|
|
+ </>
|
|
|
);
|
|
|
};
|
|
|
},
|