|
|
|
@ -5,7 +5,7 @@ import { Toaster } from '@remix-ui/toaster' // eslint-disable-line |
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
|
import { FileSystemContext } from '../contexts' |
|
|
|
|
import { browserReducer, browserInitialState } from '../reducers/workspace' |
|
|
|
|
import { initWorkspace, fetchDirectory, removeInputField, deleteWorkspace, clearPopUp, publishToGist, createNewFile, setFocusElement, createNewFolder, deletePath, renamePath, copyFile, copyFolder, runScript, emitContextMenuEvent, handleClickFile, handleExpandPath, addInputField, createWorkspace, fetchWorkspaceDirectory, renameWorkspace, switchToWorkspace, uploadFile } from '../actions' |
|
|
|
|
import { initWorkspace, fetchDirectory, removeInputField, deleteWorkspace, clearPopUp, publishToGist, createNewFile, setFocusElement, createNewFolder, deletePath, renamePath, copyFile, copyFolder, runScript, runScriptWithMocha, emitContextMenuEvent, handleClickFile, handleExpandPath, addInputField, createWorkspace, fetchWorkspaceDirectory, renameWorkspace, switchToWorkspace, uploadFile } from '../actions' |
|
|
|
|
import { Modal, WorkspaceProps } from '../types' |
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
|
|
|
import { Workspace } from '../remix-ui-workspace' |
|
|
|
@ -103,6 +103,10 @@ export const FileSystemProvider = (props: WorkspaceProps) => { |
|
|
|
|
await runScript(path) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const dispatchRunScriptWithMocha = async (path: string) => { |
|
|
|
|
await runScriptWithMocha(path) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const dispatchEmitContextMenuEvent = async (cmd: customAction) => { |
|
|
|
|
await emitContextMenuEvent(cmd) |
|
|
|
|
} |
|
|
|
@ -212,6 +216,7 @@ export const FileSystemProvider = (props: WorkspaceProps) => { |
|
|
|
|
dispatchCopyFile, |
|
|
|
|
dispatchCopyFolder, |
|
|
|
|
dispatchRunScript, |
|
|
|
|
dispatchRunScriptWithMocha, |
|
|
|
|
dispatchEmitContextMenuEvent, |
|
|
|
|
dispatchHandleClickFile, |
|
|
|
|
dispatchHandleExpandPath |
|
|
|
|