@@ -6,7 +6,7 @@ import { Progress } from '@theia/core/lib/common/message-service-protocol';
6
6
import { nls } from '@theia/core/lib/common/nls' ;
7
7
import { injectable } from '@theia/core/shared/inversify' ;
8
8
import { CreateUri } from '../create/create-uri' ;
9
- import { isConflict } from '../create/typings' ;
9
+ import { Create , isConflict } from '../create/typings' ;
10
10
import { ArduinoMenus } from '../menu/arduino-menus' ;
11
11
import {
12
12
TaskFactoryImpl ,
@@ -15,13 +15,36 @@ import {
15
15
import { CloudSketchbookTree } from '../widgets/cloud-sketchbook/cloud-sketchbook-tree' ;
16
16
import { CloudSketchbookTreeModel } from '../widgets/cloud-sketchbook/cloud-sketchbook-tree-model' ;
17
17
import { SketchbookCommands } from '../widgets/sketchbook/sketchbook-commands' ;
18
- import { Command , CommandRegistry , Sketch } from './contribution' ;
19
18
import {
20
19
CloudSketchContribution ,
21
20
pullingSketch ,
22
21
sketchAlreadyExists ,
23
22
synchronizingSketchbook ,
24
23
} from './cloud-contribution' ;
24
+ import { Command , CommandRegistry , Sketch } from './contribution' ;
25
+
26
+ export interface CreateNewCloudSketchCallback {
27
+ (
28
+ newSketch : Create . Sketch ,
29
+ newNode : CloudSketchbookTree . CloudSketchDirNode ,
30
+ progress : Progress
31
+ ) : Promise < void > ;
32
+ }
33
+
34
+ export interface NewCloudSketchParams {
35
+ /**
36
+ * Value to populate the dialog `<input>` when it opens.
37
+ */
38
+ readonly initialValue ?: string | undefined ;
39
+ /**
40
+ * Additional callback to call when the new cloud sketch has been created.
41
+ */
42
+ readonly callback ?: CreateNewCloudSketchCallback ;
43
+ /**
44
+ * If `true`, the validation error message will not be visible in the input dialog, but the `OK` button will be disabled. Defaults to `true`.
45
+ */
46
+ readonly skipShowErrorMessageOnOpen ?: boolean ;
47
+ }
25
48
26
49
@injectable ( )
27
50
export class NewCloudSketch extends CloudSketchContribution {
@@ -43,7 +66,12 @@ export class NewCloudSketch extends CloudSketchContribution {
43
66
44
67
override registerCommands ( registry : CommandRegistry ) : void {
45
68
registry . registerCommand ( NewCloudSketch . Commands . NEW_CLOUD_SKETCH , {
46
- execute : ( ) => this . createNewSketch ( true ) ,
69
+ execute : ( params : NewCloudSketchParams ) =>
70
+ this . createNewSketch (
71
+ params ?. skipShowErrorMessageOnOpen === false ? false : true ,
72
+ params ?. initialValue ,
73
+ params ?. callback
74
+ ) ,
47
75
isEnabled : ( ) => Boolean ( this . createFeatures . session ) ,
48
76
isVisible : ( ) => this . createFeatures . enabled ,
49
77
} ) ;
@@ -66,7 +94,8 @@ export class NewCloudSketch extends CloudSketchContribution {
66
94
67
95
private async createNewSketch (
68
96
skipShowErrorMessageOnOpen : boolean ,
69
- initialValue ?: string | undefined
97
+ initialValue ?: string | undefined ,
98
+ callback ?: CreateNewCloudSketchCallback
70
99
) : Promise < void > {
71
100
const treeModel = await this . treeModel ( ) ;
72
101
if ( treeModel ) {
@@ -75,7 +104,8 @@ export class NewCloudSketch extends CloudSketchContribution {
75
104
rootNode ,
76
105
treeModel ,
77
106
skipShowErrorMessageOnOpen ,
78
- initialValue
107
+ initialValue ,
108
+ callback
79
109
) ;
80
110
}
81
111
}
@@ -84,13 +114,14 @@ export class NewCloudSketch extends CloudSketchContribution {
84
114
rootNode : CompositeTreeNode ,
85
115
treeModel : CloudSketchbookTreeModel ,
86
116
skipShowErrorMessageOnOpen : boolean ,
87
- initialValue ?: string | undefined
117
+ initialValue ?: string | undefined ,
118
+ callback ?: CreateNewCloudSketchCallback
88
119
) : Promise < void > {
89
120
const existingNames = rootNode . children
90
121
. filter ( CloudSketchbookTree . CloudSketchDirNode . is )
91
122
. map ( ( { fileStat } ) => fileStat . name ) ;
92
123
const taskFactory = new TaskFactoryImpl ( ( value ) =>
93
- this . createNewSketchWithProgress ( treeModel , value )
124
+ this . createNewSketchWithProgress ( treeModel , value , callback )
94
125
) ;
95
126
try {
96
127
const dialog = new WorkspaceInputDialogWithProgress (
@@ -118,15 +149,20 @@ export class NewCloudSketch extends CloudSketchContribution {
118
149
} catch ( err ) {
119
150
if ( isConflict ( err ) ) {
120
151
await treeModel . refresh ( ) ;
121
- return this . createNewSketch ( false , taskFactory . value ?? initialValue ) ;
152
+ return this . createNewSketch (
153
+ false ,
154
+ taskFactory . value ?? initialValue ,
155
+ callback
156
+ ) ;
122
157
}
123
158
throw err ;
124
159
}
125
160
}
126
161
127
162
private createNewSketchWithProgress (
128
163
treeModel : CloudSketchbookTreeModel ,
129
- value : string
164
+ value : string ,
165
+ callback ?: CreateNewCloudSketchCallback
130
166
) : (
131
167
progress : Progress
132
168
) => Promise < CloudSketchbookTree . CloudSketchDirNode | undefined > {
@@ -143,6 +179,9 @@ export class NewCloudSketch extends CloudSketchContribution {
143
179
await treeModel . refresh ( ) ;
144
180
progress . report ( { message : pullingSketch ( sketch . name ) } ) ;
145
181
const node = await this . pull ( sketch ) ;
182
+ if ( callback && node ) {
183
+ await callback ( sketch , node , progress ) ;
184
+ }
146
185
return node ;
147
186
} ;
148
187
}
@@ -152,7 +191,7 @@ export class NewCloudSketch extends CloudSketchContribution {
152
191
) : Promise < void > {
153
192
return this . commandService . executeCommand (
154
193
SketchbookCommands . OPEN_NEW_WINDOW . id ,
155
- { node }
194
+ { node, treeWidgetId : 'cloud-sketchbook-composite-widget' }
156
195
) ;
157
196
}
158
197
}
0 commit comments