mirror of
https://github.com/enso-org/enso.git
synced 2024-12-19 22:41:49 +03:00
cbd7397b5e
- Closes https://github.com/enso-org/cloud-v2/issues/804 - The GUI should now properly configure deep links and auth settings, among other things, because the logic has been ported over from the GUI1 runner. - The porting was very basic; it may be a good idea to refactor it later, but that is out of scope of this PR. - This also means that `runner/` should be safe to remove along with GUI1 in the future, as all code relevant to GUI2 now resides in `app/gui2/runner`. # Important Notes - The built `ide2` has been tested on Windows, but should also be tested on macOS. - Should *also* be fully tested in `npm run dev`.
105 lines
3.1 KiB
TypeScript
105 lines
3.1 KiB
TypeScript
import { provideGuiConfig, type GuiConfig } from '@/providers/guiConfig'
|
|
import { provideWidgetRegistry } from '@/providers/widgetRegistry'
|
|
import { useGraphStore } from '@/stores/graph'
|
|
import { GraphDb, mockNode } from '@/stores/graph/graphDatabase'
|
|
import { useProjectStore } from '@/stores/project'
|
|
import { ComputedValueRegistry } from '@/stores/project/computedValueRegistry'
|
|
import { MockTransport, MockWebSocket } from '@/util/net'
|
|
import * as random from 'lib0/random'
|
|
import { getActivePinia } from 'pinia'
|
|
import type { ExprId } from 'shared/yjsModel'
|
|
import { ref, type App } from 'vue'
|
|
import { mockDataHandler, mockLSHandler } from './engine'
|
|
export * as providers from './providers'
|
|
export * as vue from './vue'
|
|
|
|
export function languageServer() {
|
|
MockTransport.addMock('engine', mockLSHandler)
|
|
}
|
|
|
|
export function dataServer() {
|
|
MockWebSocket.addMock('data', mockDataHandler)
|
|
}
|
|
|
|
export function guiConfig(app: App) {
|
|
return provideGuiConfig._mock(
|
|
ref<GuiConfig>({
|
|
startup: {
|
|
project: 'Mock Project',
|
|
displayedProjectName: 'Mock Project',
|
|
},
|
|
engine: {
|
|
rpcUrl: 'mock://engine',
|
|
dataUrl: 'mock://data',
|
|
namespace: 'local',
|
|
projectManagerUrl: '',
|
|
},
|
|
window: {
|
|
topBarOffset: 96,
|
|
},
|
|
authentication: {
|
|
enabled: true,
|
|
email: '',
|
|
},
|
|
}),
|
|
app,
|
|
)
|
|
}
|
|
|
|
export const computedValueRegistry = ComputedValueRegistry.Mock
|
|
export const graphDb = GraphDb.Mock
|
|
|
|
export function widgetRegistry(app: App) {
|
|
return widgetRegistry.withGraphDb(graphDb())(app)
|
|
}
|
|
|
|
widgetRegistry.withGraphDb = function widgetRegistryWithGraphDb(graphDb: GraphDb) {
|
|
return (app: App) => provideWidgetRegistry._mock([graphDb], app)
|
|
}
|
|
|
|
export function graphStore() {
|
|
return useGraphStore(getActivePinia())
|
|
}
|
|
|
|
type ProjectStore = ReturnType<typeof projectStore>
|
|
|
|
export function projectStore() {
|
|
const projectStore = useProjectStore(getActivePinia())
|
|
const mod = projectStore.projectModel.createNewModule('Main.enso')
|
|
mod.doc.ydoc.emit('load', [])
|
|
mod.doc.setCode('main =\n')
|
|
return projectStore
|
|
}
|
|
|
|
/** The stores should be initialized in this order, as `graphStore` depends on `projectStore`. */
|
|
export function projectStoreAndGraphStore() {
|
|
return [projectStore(), graphStore()] satisfies [] | unknown[]
|
|
}
|
|
|
|
export function newExprId() {
|
|
return random.uuidv4() as ExprId
|
|
}
|
|
|
|
/** This should only be used for supplying as initial props when testing.
|
|
* Please do {@link GraphDb.mockNode} with a `useGraphStore().db` after mount. */
|
|
export function node() {
|
|
return mockNode()
|
|
}
|
|
|
|
export function waitForMainModule(projectStore?: ProjectStore) {
|
|
const definedProjectStore = projectStore ?? useProjectStore(getActivePinia())
|
|
return new Promise((resolve, reject) => {
|
|
const handle1 = window.setInterval(() => {
|
|
if (definedProjectStore.module != null) {
|
|
window.clearInterval(handle1)
|
|
window.clearTimeout(handle2)
|
|
resolve(definedProjectStore.module)
|
|
}
|
|
}, 10)
|
|
const handle2 = window.setTimeout(() => {
|
|
window.clearInterval(handle1)
|
|
reject()
|
|
}, 5_000)
|
|
})
|
|
}
|