Skip to content

Commit 1c86529

Browse files
authored
Merge pull request #455 from coderoad/fix/error-messages
move error messages to client
2 parents 91cc738 + a4d0c9c commit 1c86529

15 files changed

+31
-74
lines changed

errors/FailedToConnectToGitRepo.md

-7
This file was deleted.

errors/GitNotFound.md

-3
This file was deleted.

errors/GitProjectAlreadyExists.md

-5
This file was deleted.

errors/GitRemoteAlreadyExists.md

-5
This file was deleted.

errors/MissingTutorialDependency.md

-3
This file was deleted.

errors/NoWorkspaceFound.md

-3
This file was deleted.

errors/UnknownError.md

-5
This file was deleted.

errors/UnmetExtensionVersion.md

-3
This file was deleted.

errors/UnmetTutorialDependency.md

-3
This file was deleted.

errors/WorkspaceNotEmpty.md

-5
This file was deleted.

src/actions/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ export { default as onTutorialConfigNew } from './onTutorialConfigNew'
33
export { default as onTutorialConfigContinue } from './onTutorialConfigContinue'
44
export { default as onValidateSetup } from './onValidateSetup'
55
export { default as onRunReset } from './onRunReset'
6-
export { default as onErrorPage } from './onErrorPage'
76
export { runTest } from './onTest'
87
export { onOpenLogs } from './onOpenLogs'

src/actions/onErrorPage.ts

-26
This file was deleted.

src/commands.ts

-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ let sendToClient = (action: T.Action): void => {
2828
// This makes it easier to pass the send
2929
// function throughout the codebase
3030
export const send = (action: T.Action): void => {
31-
// load error page if error action is triggered
32-
actions.onErrorPage(action)
33-
3431
logger(`EXT TO CLIENT: "${typeof action === 'string' ? action : action.type}"`)
3532

3633
if (action) sendToClient(action)

web-app/src/services/errors/en.json

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"FailedToConnectToGitRepo": "### Failed to Connect to Git Repo\n\nThere are several possible causes:\n\n- you may not be connected to the internet or have an unstable connection.\n- you may not have access permission to the remote tutorial repo.\n- the remote tutorial repo may not exist at the provided location",
3+
"GitNotFound": "### Git Not Found\n\nMake sure you have Git installed.\n\nSee the [Git docs](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) for help.",
4+
"GitProjectAlreadyExists": "### Git Remote Already Exists\n\nHave you started this tutorial before in this workspace? The Git remote already exists.\n\nConsider deleting your `.git` folder and restarting.",
5+
"GitRemoteAlreadyExists": "### Git Project Already Exists\n\nCodeRoad requires an empty Git project.\n\nOpen a new workspace to start a tutorial.",
6+
"MissingTutorialDependency": "### Missing Tutorial Dependency\n\nThe tutorial cannot run because it a dependency is not yet installed. Install the dependency and click \"Check Again\".",
7+
"NoWorkspaceFound": "### Open a Workspace Folder\n\nCodeRoad requires a workspace folder to run. Open a new workspace and re-launch CodeRoad.",
8+
"UnknownError": "### Unknown Error\n\nSorry! An unknown error occurred.\n\nPlease help out by posting an issue at github.com/coderoad/coderoad-vscode/issues/new/choose!",
9+
"UnmetExtensionVersion": "### Unmet Extension Version\n\nVSCode extension version is below requirements. Update VSCode to use CodeRoad.",
10+
"UnmetTutorialDependency": "### Unmet Tutorial Dependency\n\nTutorial cannot run because a dependency version doesn't match. Install the correct dependency and click \"Check Again\".",
11+
"WorkspaceNotEmpty": "### Select An Empty VSCode Workspace\n\nStart a project in an empty folder.\n\nOnce selected, the extension will close and need to be re-started."
12+
}

web-app/src/services/state/actions/context.ts

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
import * as T from 'typings'
22
import * as TT from 'typings/tutorial'
3+
import * as E from 'typings/error'
34
import { assign, send } from 'xstate'
45
import * as selectors from '../../selectors'
56
import getStepNext from './utils/stepNext'
67
import getNext from './utils/getNext'
78
import logger from 'services/logger'
9+
import errors from '../../errors/en.json'
810

911
export const setStart = assign({
1012
env: (context: T.MachineContext, event: T.MachineEvent) => {
@@ -73,8 +75,23 @@ export const reset = assign({
7375

7476
export const setError = assign({
7577
error: (context: T.MachineContext, event: T.MachineEvent): any => {
76-
const message: string | null = event.payload.error
77-
return message
78+
const error: string | null | E.ErrorMessage = event.payload.error
79+
if (error) {
80+
if (typeof error === 'string') {
81+
console.log(`ERROR: ${error}`)
82+
return error
83+
} else if (error.type) {
84+
const errorMessage = errors[error.type]
85+
const content = errorMessage || ''
86+
const message = `${content}\n\n${error.message || ''}`
87+
console.log(`ERROR: ${message}`)
88+
return {
89+
...error,
90+
message,
91+
}
92+
}
93+
}
94+
return null
7895
},
7996
})
8097

0 commit comments

Comments
 (0)