-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathchannel.ts
101 lines (93 loc) Β· 3.3 KB
/
channel.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
import * as T from 'typings'
import * as vscode from 'vscode'
import { COMMANDS } from './commands'
import Context from './services/context/context'
import logger from './services/logger'
import { openWorkspace } from './services/workspace'
import * as actions from './actions'
import * as hooks from './services/hooks'
interface Channel {
receive(action: T.Action): Promise<void>
}
class Channel implements Channel {
public context: Context
constructor(workspaceState: vscode.Memento) {
// workspaceState used for local storages
this.context = new Context(workspaceState)
}
// receive from webview
public receive = async (action: T.Action): Promise<void> => {
if (action.source !== 'coderoad') {
// filter out events from other extensions
return
}
// action may be an object.type or plain string
const actionType: string = typeof action === 'string' ? action : action.type
if (actionType === 'CLIENT_LOG') {
// logs in web client are not easily visible
// it's simpler to log to the "CodeRoad (Logs)" channel
logger(action.payload)
return
}
logger(actionType)
switch (actionType) {
case 'EDITOR_STARTUP':
actions.onStartup(this.context)
return
// clear tutorial local storage
// configure test runner, language, git
case 'EDITOR_TUTORIAL_CONFIG':
actions.onTutorialConfigNew(action, this.context)
return
case 'EDITOR_TUTORIAL_CONTINUE_CONFIG':
actions.onTutorialConfigContinue(action, this.context)
return
case 'EDITOR_VALIDATE_SETUP':
actions.onValidateSetup()
return
case 'EDITOR_REQUEST_WORKSPACE':
openWorkspace()
return
// load step actions (git commits, commands, open files)
case 'EDITOR_LEVEL_ENTER':
case 'EDITOR_STEP_ENTER':
await vscode.commands.executeCommand(COMMANDS.SET_CURRENT_POSITION, action.payload.position)
await hooks.onSetupEnter(action.payload.actions)
return
// load solution step actions (git commits, commands, open files)
case 'EDITOR_SOLUTION_ENTER':
await vscode.commands.executeCommand(COMMANDS.SET_CURRENT_POSITION, action.payload.position)
await hooks.onSolutionEnter(action.payload.actions)
return
case 'EDITOR_SYNC_POSITION':
// update progress when a level is deemed complete in the client
await this.context.position.set(action.payload.position)
return
case 'EDITOR_OPEN_LOGS':
actions.onOpenLogs(action)
return
case 'EDITOR_RUN_TEST':
actions.runTest(action)
return
case 'EDITOR_RUN_RESET_LATEST':
actions.onRunReset({ type: 'LATEST' }, this.context)
return
case 'EDITOR_RUN_RESET_POSITION':
actions.onRunReset({ type: 'POSITION', position: action.payload.position }, this.context)
return
case 'EDITOR_STEP_COMPLETE':
await hooks.onStepComplete(action.payload)
return
case 'EDITOR_LEVEL_COMPLETE':
await hooks.onLevelComplete(action.payload)
return
case 'EDITOR_TUTORIAL_COMPLETE':
await hooks.onTutorialComplete(action.payload)
return
default:
logger(`No match for action type: ${actionType}`)
return
}
}
}
export default Channel