MCPcopy Create free account
hub / github.com/esengine/esengine / handleOpenProject

Function handleOpenProject

packages/editor-app/src/App.tsx:817–826  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

815 };
816
817 const handleOpenProject = async () => {
818 try {
819 const projectPath = await TauriAPI.openProjectDialog();
820 if (!projectPath) return;
821
822 await handleOpenRecentProject(projectPath);
823 } catch (error) {
824 console.error('Failed to open project dialog:', error);
825 }
826 };
827
828 const handleCreateProject = () => {
829 setShowProjectWizard(true);

Callers

nothing calls this directly

Calls 3

handleOpenRecentProjectFunction · 0.85
openProjectDialogMethod · 0.80
errorMethod · 0.45

Tested by

no test coverage detected