fix: broken conditional rendering of codemirror

Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com>
This commit is contained in:
liyasthomas
2021-09-08 20:27:36 +05:30
parent 2bb3b71a70
commit e1a25fa894

View File

@@ -43,7 +43,7 @@ const DEFAULT_EDITOR_CONFIG: CodeMirror.EditorConfiguration = {
gutters: ["CodeMirror-linenumbers", "CodeMirror-foldgutter"],
extraKeys: {
"Ctrl-Space": "autocomplete",
}
},
}
/**
@@ -115,8 +115,9 @@ export function useCodemirror(
}
}
// Boot-up CodeMirror, set the value and listeners
onMounted(() => {
const initialize = () => {
if (!el.value) return
cm.value = CodeMirror(el.value!, DEFAULT_EDITOR_CONFIG)
setTheme()
@@ -130,15 +131,16 @@ export function useCodemirror(
value.value = instance.getValue()
}
})
}
// /* TODO: Show autocomplete on typing (this is just for testing) */
// cm.value.on("keyup", (instance, event) => {
// if (!instance.state.completionActive && event.key !== "Enter") {
// instance.showHint()
// }
// })
// Boot-up CodeMirror, set the value and listeners
onMounted(() => {
initialize()
})
// Reinitialize if the target ref updates
watch(el, initialize)
const setTheme = () => {
if (cm.value) {
cm.value?.setOption("theme", getThemeName($colorMode.value))