Procházet zdrojové kódy

fix: updateWysiwygStyle updatedElement is undefined TypeError (#4980)

Co-authored-by: dwelle <luzar.david@gmail.com>
zsviczian před 3 roky
rodič
revize
e940aeb1a3
2 změnil soubory, kde provedl 7 přidání a 5 odebrání
  1. 5 3
      src/element/textWysiwyg.tsx
  2. 2 2
      src/scene/Scene.ts

+ 5 - 3
src/element/textWysiwyg.tsx

@@ -102,9 +102,11 @@ export const textWysiwyg = ({
 
   const updateWysiwygStyle = () => {
     const appState = app.state;
-    const updatedElement = Scene.getScene(element)?.getElement(
-      id,
-    ) as ExcalidrawTextElement;
+    const updatedElement =
+      Scene.getScene(element)?.getElement<ExcalidrawTextElement>(id);
+    if (!updatedElement) {
+      return;
+    }
     const { textAlign, verticalAlign } = updatedElement;
 
     const approxLineHeight = getApproxLineHeight(getFontString(updatedElement));

+ 2 - 2
src/scene/Scene.ts

@@ -62,8 +62,8 @@ class Scene {
     return this.nonDeletedElements;
   }
 
-  getElement(id: ExcalidrawElement["id"]): ExcalidrawElement | null {
-    return this.elementsMap.get(id) || null;
+  getElement<T extends ExcalidrawElement>(id: T["id"]): T | null {
+    return (this.elementsMap.get(id) as T | undefined) || null;
   }
 
   getNonDeletedElement(