1
+ import { nls } from '@theia/core' ;
1
2
import * as remote from '@theia/core/electron-shared/@electron/remote' ;
3
+ import { FrontendApplication } from '@theia/core/lib/browser/frontend-application' ;
2
4
import { FrontendApplicationConfigProvider } from '@theia/core/lib/browser/frontend-application-config-provider' ;
3
5
import { NavigatableWidget } from '@theia/core/lib/browser/navigatable-types' ;
4
6
import { ApplicationShell } from '@theia/core/lib/browser/shell/application-shell' ;
5
7
import { Widget } from '@theia/core/lib/browser/widgets/widget' ;
6
8
import { WindowTitleUpdater as TheiaWindowTitleUpdater } from '@theia/core/lib/browser/window/window-title-updater' ;
7
9
import { ApplicationServer } from '@theia/core/lib/common/application-protocol' ;
10
+ import { DisposableCollection } from '@theia/core/lib/common/disposable' ;
8
11
import { isOSX } from '@theia/core/lib/common/os' ;
9
12
import {
10
13
inject ,
11
14
injectable ,
12
15
postConstruct ,
13
16
} from '@theia/core/shared/inversify' ;
17
+ import { EditorManager } from '@theia/editor/lib/browser/editor-manager' ;
14
18
import { EditorWidget } from '@theia/editor/lib/browser/editor-widget' ;
15
19
import { WorkspaceService } from '@theia/workspace/lib/browser/workspace-service' ;
20
+ import { ConfigServiceClient } from '../../config/config-service-client' ;
21
+ import { CreateFeatures } from '../../create/create-features' ;
22
+ import {
23
+ CurrentSketch ,
24
+ SketchesServiceClientImpl ,
25
+ } from '../../sketches-service-client-impl' ;
16
26
17
27
@injectable ( )
18
28
export class WindowTitleUpdater extends TheiaWindowTitleUpdater {
@@ -22,12 +32,22 @@ export class WindowTitleUpdater extends TheiaWindowTitleUpdater {
22
32
private readonly applicationShell : ApplicationShell ;
23
33
@inject ( WorkspaceService )
24
34
private readonly workspaceService : WorkspaceService ;
25
-
26
- private _previousRepresentedFilename : string | undefined ;
35
+ @inject ( SketchesServiceClientImpl )
36
+ private readonly sketchesServiceClient : SketchesServiceClientImpl ;
37
+ @inject ( ConfigServiceClient )
38
+ private readonly configServiceClient : ConfigServiceClient ;
39
+ @inject ( CreateFeatures )
40
+ private readonly createFeatures : CreateFeatures ;
41
+ @inject ( EditorManager )
42
+ private readonly editorManager : EditorManager ;
27
43
28
44
private readonly applicationName =
29
45
FrontendApplicationConfigProvider . get ( ) . applicationName ;
46
+ private readonly toDispose = new DisposableCollection ( ) ;
47
+
48
+ private previousRepresentedFilename : string | undefined ;
30
49
private applicationVersion : string | undefined ;
50
+ private hasCloudPrefix : boolean | undefined ;
31
51
32
52
@postConstruct ( )
33
53
protected init ( ) : void {
@@ -43,6 +63,18 @@ export class WindowTitleUpdater extends TheiaWindowTitleUpdater {
43
63
) ;
44
64
}
45
65
66
+ override onStart ( app : FrontendApplication ) : void {
67
+ super . onStart ( app ) ;
68
+ this . toDispose . pushAll ( [
69
+ this . sketchesServiceClient . onCurrentSketchDidChange ( ( ) =>
70
+ this . maybeSetCloudPrefix ( )
71
+ ) ,
72
+ this . configServiceClient . onDidChangeDataDirUri ( ( ) =>
73
+ this . maybeSetCloudPrefix ( )
74
+ ) ,
75
+ ] ) ;
76
+ }
77
+
46
78
protected override handleWidgetChange ( widget ?: Widget | undefined ) : void {
47
79
if ( isOSX ) {
48
80
this . maybeUpdateRepresentedFilename ( widget ) ;
@@ -54,7 +86,7 @@ export class WindowTitleUpdater extends TheiaWindowTitleUpdater {
54
86
55
87
protected override updateTitleWidget ( widget ?: Widget | undefined ) : void {
56
88
let activeEditorShort = '' ;
57
- const rootName = this . workspaceService . workspace ?. name ?? '' ;
89
+ let rootName = this . workspaceService . workspace ?. name ?? '' ;
58
90
let appName = `${ this . applicationName } ${
59
91
this . applicationVersion ? ` ${ this . applicationVersion } ` : ''
60
92
} `;
@@ -69,6 +101,12 @@ export class WindowTitleUpdater extends TheiaWindowTitleUpdater {
69
101
activeEditorShort = ` - ${ base } ` ;
70
102
}
71
103
}
104
+ if ( this . hasCloudPrefix ) {
105
+ rootName = `[${ nls . localize (
106
+ 'arduino/title/cloud' ,
107
+ 'Cloud'
108
+ ) } ] ${ rootName } `;
109
+ }
72
110
this . windowTitleService . update ( { rootName, appName, activeEditorShort } ) ;
73
111
}
74
112
@@ -77,10 +115,32 @@ export class WindowTitleUpdater extends TheiaWindowTitleUpdater {
77
115
const { uri } = widget . editor ;
78
116
const filename = uri . path . toString ( ) ;
79
117
// Do not necessarily require the current window if not needed. It's a synchronous, blocking call.
80
- if ( this . _previousRepresentedFilename !== filename ) {
118
+ if ( this . previousRepresentedFilename !== filename ) {
81
119
const currentWindow = remote . getCurrentWindow ( ) ;
82
120
currentWindow . setRepresentedFilename ( uri . path . toString ( ) ) ;
83
- this . _previousRepresentedFilename = filename ;
121
+ this . previousRepresentedFilename = filename ;
122
+ }
123
+ }
124
+ }
125
+
126
+ private maybeSetCloudPrefix ( ) : void {
127
+ if ( typeof this . hasCloudPrefix === 'boolean' ) {
128
+ return ;
129
+ }
130
+ const sketch = this . sketchesServiceClient . tryGetCurrentSketch ( ) ;
131
+ if ( ! CurrentSketch . isValid ( sketch ) ) {
132
+ return ;
133
+ }
134
+ const dataDirUri = this . configServiceClient . tryGetDataDirUri ( ) ;
135
+ if ( ! dataDirUri ) {
136
+ return ;
137
+ }
138
+ this . hasCloudPrefix = this . createFeatures . isCloud ( sketch , dataDirUri ) ;
139
+ if ( typeof this . hasCloudPrefix === 'boolean' ) {
140
+ const editor =
141
+ this . editorManager . activeEditor ?? this . editorManager . currentEditor ;
142
+ if ( editor ) {
143
+ this . updateTitleWidget ( editor ) ;
84
144
}
85
145
}
86
146
}
0 commit comments