|
@@ -16,8 +16,9 @@ import LineHeight from "ckeditor5-line-height-latest/src/lineheight";
|
|
|
import { nextTick } from "process";
|
|
|
import { defineComponent, onMounted, onUnmounted, reactive, ref } from "vue";
|
|
|
import { string } from "vue-types";
|
|
|
-import { useCompData } from ".";
|
|
|
import { View } from "../View";
|
|
|
+import { useCompData } from "../../defines/createCompHooks";
|
|
|
+import { CompText, TextValue } from "@/modules/editor/objects/Elements/text";
|
|
|
|
|
|
function GetConfig() {
|
|
|
const fontSizeOptions = [];
|
|
@@ -88,7 +89,8 @@ export const Component = defineComponent({
|
|
|
compId: string().def(""),
|
|
|
},
|
|
|
setup(props) {
|
|
|
- const comp = useCompData(props.compId);
|
|
|
+ const comp = useCompData<TextValue>(props.compId) as CompText;
|
|
|
+
|
|
|
const { store, actions } = useEditor();
|
|
|
|
|
|
const state = reactive({
|
|
@@ -126,7 +128,7 @@ export const Component = defineComponent({
|
|
|
/>
|
|
|
) : (
|
|
|
<div
|
|
|
- innerHTML={comp.value}
|
|
|
+ innerHTML={comp.value.refText()}
|
|
|
class={[textStyle, store.isEditMode && `pointer-events-none`]}
|
|
|
/>
|
|
|
)}
|
|
@@ -144,8 +146,8 @@ const EditorComp = defineComponent({
|
|
|
setup(props, { emit }) {
|
|
|
const inputRef = ref();
|
|
|
let editorInstance = ref<InlineEditor>();
|
|
|
- const comp = useCompData(props.compId);
|
|
|
- const { store, actions, helper, controls } = useEditor();
|
|
|
+ const comp = useCompData(props.compId) as CompText;
|
|
|
+ const { store, actions, helper } = useEditor();
|
|
|
|
|
|
let blurCanceler: any = null;
|
|
|
onMounted(() => {
|
|
@@ -162,8 +164,11 @@ const EditorComp = defineComponent({
|
|
|
const h = helper.pxToDesignSize(inputRef.value?.$el.clientHeight);
|
|
|
const isChange = Math.abs(preHeight.value - h) > 1;
|
|
|
preHeight.value = h;
|
|
|
- actions.updateCompData(comp, "layout.size.1", preHeight.value);
|
|
|
+
|
|
|
+ comp.state.size[1] = h;
|
|
|
helper.extendStreamCard(store.currStreamCardId);
|
|
|
+
|
|
|
+
|
|
|
if (isChange) {
|
|
|
actions.selectObjs([]);
|
|
|
setTimeout(() => {
|
|
@@ -212,17 +217,15 @@ const EditorComp = defineComponent({
|
|
|
ref={inputRef}
|
|
|
editor={InlineEditor}
|
|
|
onInput={(value: any) => {
|
|
|
- if (editorInstance.value && comp.value !== value) {
|
|
|
- actions.updateCompData(comp, "value", value);
|
|
|
+ if (editorInstance.value && comp.value.text !== value) {
|
|
|
+ comp.value.setText( value );
|
|
|
+
|
|
|
nextTick(() => {
|
|
|
const h = helper.pxToDesignSize(inputRef.value?.$el.clientHeight);
|
|
|
const isChange = Math.abs(preHeight.value - h) > 1;
|
|
|
preHeight.value = h;
|
|
|
- actions.updateCompDatas(
|
|
|
- comp,
|
|
|
- ["value", "layout.size.1"],
|
|
|
- [value, preHeight.value]
|
|
|
- );
|
|
|
+
|
|
|
+ comp.state.setSize([comp.state.size[0], h]);
|
|
|
helper.extendStreamCard(store.currStreamCardId);
|
|
|
if (isChange) {
|
|
|
console.log("changing=>", isChange);
|
|
@@ -237,7 +240,7 @@ const EditorComp = defineComponent({
|
|
|
onReady={(editor: InlineEditor) => {
|
|
|
editorInstance.value = editor;
|
|
|
console.log("editor");
|
|
|
- editor.setData(comp.value);
|
|
|
+ editor.setData(comp.value.text);
|
|
|
editor.focus();
|
|
|
const range = document.createRange();
|
|
|
range.selectNodeContents(inputRef.value.$el);
|