chore(react/type_widget): prepare structure for split editor

This commit is contained in:
Elian Doran
2025-09-20 12:25:11 +03:00
parent 256d1863d2
commit bed3c2dc67
7 changed files with 122 additions and 108 deletions

View File

@@ -16,6 +16,7 @@ import "./NoteDetail.css";
import File from "./type_widgets/File";
import Image from "./type_widgets/Image";
import { ReadOnlyCode, EditableCode } from "./type_widgets/code/Code";
import Mermaid from "./type_widgets/Mermaid";
/**
* A `NoteType` altered by the note detail widget, taking into consideration whether the note is editable or not and adding special note types such as an empty one,
@@ -94,6 +95,7 @@ function getCorrespondingWidget(noteType: ExtendedNoteType | undefined, props: T
case "image": return <Image {...props} />
case "readOnlyCode": return <ReadOnlyCode {...props} />
case "editableCode": return <EditableCode {...props} />
case "mermaid": return <Mermaid {...props} />
default: break;
}
}