|
@@ -1,11 +1,12 @@
|
|
-import { defineComponent, ref, watch, onMounted,nextTick } from "vue";
|
|
|
|
-import { string } from "vue-types";
|
|
|
|
-import { View } from "../View";
|
|
|
|
|
|
+import { useCtx } from "@/comm/ctx";
|
|
import { useEditor } from "@/modules/editor";
|
|
import { useEditor } from "@/modules/editor";
|
|
-import { IconPicture } from "@queenjs/icons";
|
|
|
|
import { css } from "@linaria/core";
|
|
import { css } from "@linaria/core";
|
|
-import { useCompData } from "../../defines/hook";
|
|
|
|
|
|
+import { IconPicture } from "@queenjs/icons";
|
|
|
|
+import { defineComponent, onMounted, ref, watch } from "vue";
|
|
|
|
+import { string } from "vue-types";
|
|
import { CompVideoObj } from ".";
|
|
import { CompVideoObj } from ".";
|
|
|
|
+import { useCompData } from "../../defines/hook";
|
|
|
|
+import { View } from "../View";
|
|
|
|
|
|
export const Component = defineComponent({
|
|
export const Component = defineComponent({
|
|
props: {
|
|
props: {
|
|
@@ -22,6 +23,7 @@ export const Component = defineComponent({
|
|
const url = await controls.pickCtrl.pickOneImage();
|
|
const url = await controls.pickCtrl.pickOneImage();
|
|
if (!url) return;
|
|
if (!url) return;
|
|
value.url = url;
|
|
value.url = url;
|
|
|
|
+ controls.pageCtrl.saveAssetsLocal(comp);
|
|
} catch (error) {
|
|
} catch (error) {
|
|
console.log(error);
|
|
console.log(error);
|
|
}
|
|
}
|
|
@@ -30,10 +32,10 @@ export const Component = defineComponent({
|
|
function updateSize() {
|
|
function updateSize() {
|
|
const { videoWidth, videoHeight } = videoRef.value as HTMLVideoElement;
|
|
const { videoWidth, videoHeight } = videoRef.value as HTMLVideoElement;
|
|
if (videoHeight == 0 || videoWidth == 0) return;
|
|
if (videoHeight == 0 || videoWidth == 0) return;
|
|
- const t = value.ratio || videoWidth * 1.0 / videoHeight;
|
|
|
|
|
|
+ const t = value.ratio || (videoWidth * 1.0) / videoHeight;
|
|
comp.setH(comp.getW() / t);
|
|
comp.setH(comp.getW() / t);
|
|
actions.onCompLayoutUpdated(comp);
|
|
actions.onCompLayoutUpdated(comp);
|
|
- helper.extendStreamCard( controls.pageCtrl.currStreamCardId );
|
|
|
|
|
|
+ helper.extendStreamCard(controls.pageCtrl.currStreamCardId);
|
|
}
|
|
}
|
|
|
|
|
|
watch(
|
|
watch(
|
|
@@ -46,28 +48,43 @@ export const Component = defineComponent({
|
|
const el = videoRef.value as HTMLVideoElement;
|
|
const el = videoRef.value as HTMLVideoElement;
|
|
|
|
|
|
if (store.isEditMode) {
|
|
if (store.isEditMode) {
|
|
- el.addEventListener("loadedmetadata", ()=>{
|
|
|
|
- const { videoWidth, videoHeight } = videoRef.value as HTMLVideoElement;
|
|
|
|
- if ( videoHeight != 0 && videoHeight != 0) {
|
|
|
|
- const r = videoWidth * 1.0 / videoHeight;
|
|
|
|
- if (comp.value.ratio == 0 && Math.abs( comp.layout.size[0] / comp.layout.size[1] - r) > 0.01) {
|
|
|
|
- updateSize();
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
|
|
+ el.addEventListener("loadedmetadata", () => {
|
|
|
|
+ const { videoWidth, videoHeight } =
|
|
|
|
+ videoRef.value as HTMLVideoElement;
|
|
|
|
+ if (videoHeight != 0 && videoHeight != 0) {
|
|
|
|
+ const r = (videoWidth * 1.0) / videoHeight;
|
|
|
|
+ if (
|
|
|
|
+ comp.value.ratio == 0 &&
|
|
|
|
+ Math.abs(comp.layout.size[0] / comp.layout.size[1] - r) > 0.01
|
|
|
|
+ ) {
|
|
|
|
+ updateSize();
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
setTimeout(() => {
|
|
setTimeout(() => {
|
|
- const { videoWidth, videoHeight } = videoRef.value as HTMLVideoElement;
|
|
|
|
- const r = videoWidth * 1.0 / videoHeight;
|
|
|
|
-
|
|
|
|
- console.log("loadedmetadata==>",videoWidth,videoHeight, comp.value.ratio, r, comp.layout.size);
|
|
|
|
-
|
|
|
|
- if (comp.value.ratio == 0 && Math.abs( comp.layout.size[0] / comp.layout.size[1] - r) > 0.01) {
|
|
|
|
- updateSize();
|
|
|
|
- console.log("updated sizeed");
|
|
|
|
|
|
+ const { videoWidth, videoHeight } =
|
|
|
|
+ videoRef.value as HTMLVideoElement;
|
|
|
|
+ const r = (videoWidth * 1.0) / videoHeight;
|
|
|
|
+
|
|
|
|
+ console.log(
|
|
|
|
+ "loadedmetadata==>",
|
|
|
|
+ videoWidth,
|
|
|
|
+ videoHeight,
|
|
|
|
+ comp.value.ratio,
|
|
|
|
+ r,
|
|
|
|
+ comp.layout.size
|
|
|
|
+ );
|
|
|
|
+
|
|
|
|
+ if (
|
|
|
|
+ comp.value.ratio == 0 &&
|
|
|
|
+ Math.abs(comp.layout.size[0] / comp.layout.size[1] - r) > 0.01
|
|
|
|
+ ) {
|
|
|
|
+ updateSize();
|
|
|
|
+ console.log("updated sizeed");
|
|
}
|
|
}
|
|
}, 1000);
|
|
}, 1000);
|
|
}
|
|
}
|
|
- })
|
|
|
|
|
|
+ });
|
|
}
|
|
}
|
|
|
|
|
|
el.addEventListener("play", () => {
|
|
el.addEventListener("play", () => {
|