enso/app/gui2/mock/MockProjectStoreWrapper.vue
Paweł Grabarz 1b59744660
cleanup GUI entrypoints and mocking (#9403)
This is a set of split off changes made as a side effect while working on engine reconnection handling.

Cleaned up GUI e2e setup, unified as much of the entrypoint code as possible. Currently the only real difference between the real and testing entrypoint is mocking of all network calls and not loading through dashboard.

I've managed to completely get rid of `MockApp`, and remove tricky mocking of pinia stores.
2024-03-14 17:05:26 +00:00

55 lines
1.5 KiB
Vue

<script setup lang="ts">
/**
* Mock project store, used in some histoire stories.
*/
import { useProjectStore } from '@/stores/project'
import { Ast } from '@/util/ast'
import { SourceDocument } from 'shared/ast/sourceDocument'
import { reactive, watch } from 'vue'
const props = defineProps<{ modelValue: string }>()
const emit = defineEmits<{ 'update:modelValue': [modelValue: string] }>()
const projectStore = useProjectStore()
const mod = projectStore.projectModel.createNewModule('Main.enso')
projectStore.setObservedFileName('Main.enso')
mod.doc.ydoc.emit('load', [])
let syncedCode: string | undefined
watch(
() => projectStore.module,
(mod) => {
if (!mod) return
const syncModule = new Ast.MutableModule(mod.doc.ydoc)
applyEdits(syncModule, props.modelValue)
const moduleSource = reactive(SourceDocument.Empty())
syncModule.observe((update) => moduleSource.applyUpdate(syncModule, update))
watch(
() => moduleSource.text,
(text) => {
if (text !== props.modelValue) {
syncedCode = text
emit('update:modelValue', text)
}
},
)
watch(
() => props.modelValue,
(modelValue) => applyEdits(syncModule, modelValue),
)
},
)
function applyEdits(syncModule: Ast.MutableModule, newText: string) {
if (newText !== syncedCode) {
syncModule.transact(() => {
syncModule.syncRoot(Ast.parseBlock(newText, syncModule))
})
}
}
</script>
<template>
<slot></slot>
</template>