chore: add onCodemirrorInstanceMount hook to platform (#3043)

This commit is contained in:
Akash K
2023-05-10 18:59:57 +05:30
committed by Andrew Bastin
parent 5f68356278
commit a6426587fb
3 changed files with 5 additions and 0 deletions

View File

@@ -34,6 +34,7 @@ import { inputTheme } from "~/helpers/editor/themes/baseTheme"
import { HoppReactiveEnvPlugin } from "~/helpers/editor/extensions/HoppEnvironment"
import { useReadonlyStream } from "@composables/stream"
import { AggregateEnvironment, aggregateEnvs$ } from "~/newstore/environments"
import { platform } from "~/platform"
const props = withDefaults(
defineProps<{
@@ -219,6 +220,7 @@ onMounted(() => {
if (editor.value) {
if (!view.value) initView(editor.value)
if (props.selectTextOnMount) triggerTextSelection()
platform.ui?.onCodemirrorInstanceMount?.(editor.value)
}
})