-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathx-terminal.js
515 lines (473 loc) · 16 KB
/
x-terminal.js
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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
/** @babel */
/** @module x-terminal */
/*
* Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
* Copyright 2017-2018 Andres Mejia <[email protected]>. All Rights Reserved.
* Copyright (c) 2020 UziTech All Rights Reserved.
* Copyright (c) 2020 bus-stop All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of this
* software and associated documentation files (the "Software"), to deal in the Software
* without restriction, including without limitation the rights to use, copy, modify,
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
* permit persons to whom the Software is furnished to do so.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
* OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
import { CompositeDisposable } from 'atom'
import { CONFIG_DATA } from './config'
import { XTerminalElement } from './element'
import { XTerminalModel, isXTerminalModel } from './model'
import { X_TERMINAL_BASE_URI, XTerminalProfilesSingleton } from './profiles'
import { XTerminalProfileMenuElement } from './profile-menu-element'
import { XTerminalProfileMenuModel } from './profile-menu-model'
import { XTerminalDeleteProfileElement } from './delete-profile-element'
import { XTerminalDeleteProfileModel } from './delete-profile-model'
import { XTerminalOverwriteProfileElement } from './overwrite-profile-element'
import { XTerminalOverwriteProfileModel } from './overwrite-profile-model'
import { XTerminalSaveProfileElement } from './save-profile-element'
import { XTerminalSaveProfileModel } from './save-profile-model'
import { URL } from 'whatwg-url'
const XTerminalSingletonSymbol = Symbol('XTerminalSingleton sentinel')
class XTerminalSingleton {
constructor (symbolCheck) {
if (XTerminalSingletonSymbol !== symbolCheck) {
throw new Error('XTerminalSingleton cannot be instantiated directly.')
}
}
static get instance () {
if (!this[XTerminalSingletonSymbol]) {
this[XTerminalSingletonSymbol] = new XTerminalSingleton(XTerminalSingletonSymbol)
}
return this[XTerminalSingletonSymbol]
}
activate (state) {
// Load profiles configuration.
this.profilesSingleton = XTerminalProfilesSingleton.instance
// Reset base profile in case this package was deactivated then
// reactivated.
this.profilesSingleton.resetBaseProfile()
// Disposables for this plugin.
this.disposables = new CompositeDisposable()
// Set holding all terminals available at any moment.
this.terminals_set = new Set()
// Monitor for changes to all config values.
for (const data of CONFIG_DATA) {
this.disposables.add(atom.config.onDidChange(data.keyPath, ({ newValue, oldValue }) => {
this.profilesSingleton.resetBaseProfile()
}))
}
// Register view provider for terminal emulator item.
this.disposables.add(atom.views.addViewProvider(XTerminalModel, (atomXtermModel) => {
const atomXtermElement = new XTerminalElement()
atomXtermElement.initialize(atomXtermModel)
return atomXtermElement
}))
// Register view provider for terminal emulator profile menu item.
this.disposables.add(atom.views.addViewProvider(XTerminalProfileMenuModel, (atomXtermProfileMenuModel) => {
const atomXtermProfileMenuElement = new XTerminalProfileMenuElement()
atomXtermProfileMenuElement.initialize(atomXtermProfileMenuModel)
return atomXtermProfileMenuElement
}))
// Register view profile for modal items.
this.disposables.add(atom.views.addViewProvider(XTerminalDeleteProfileModel, (atomXtermDeleteProfileModel) => {
const atomXtermDeleteProfileElement = new XTerminalDeleteProfileElement()
atomXtermDeleteProfileElement.initialize(atomXtermDeleteProfileModel)
return atomXtermDeleteProfileElement
}))
this.disposables.add(atom.views.addViewProvider(XTerminalOverwriteProfileModel, (atomXtermOverwriteProfileModel) => {
const atomXtermOverwriteProfileElement = new XTerminalOverwriteProfileElement()
atomXtermOverwriteProfileElement.initialize(atomXtermOverwriteProfileModel)
return atomXtermOverwriteProfileElement
}))
this.disposables.add(atom.views.addViewProvider(XTerminalSaveProfileModel, (atomXtermSaveProfileModel) => {
const atomXtermSaveProfileElement = new XTerminalSaveProfileElement()
atomXtermSaveProfileElement.initialize(atomXtermSaveProfileModel)
return atomXtermSaveProfileElement
}))
// Add opener for terminal emulator item.
this.disposables.add(atom.workspace.addOpener((uri) => {
if (uri.startsWith(X_TERMINAL_BASE_URI)) {
const item = new XTerminalModel({
uri: uri,
terminals_set: this.terminals_set,
})
return item
}
}))
// Set callback to run on current and future panes.
this.disposables.add(atom.workspace.observePanes((pane) => {
// In callback, set another callback to run on current and future items.
this.disposables.add(pane.observeItems((item) => {
// In callback, set current pane for terminal items.
if (isXTerminalModel(item)) {
item.setNewPane(pane)
}
}))
}))
// Add callbacks to run for current and future active items on active panes.
this.disposables.add(atom.workspace.observeActivePaneItem((item) => {
// In callback, focus specifically on terminal when item is terminal item.
if (isXTerminalModel(item)) {
item.focusOnTerminal()
}
}))
// Add commands.
this.disposables.add(atom.commands.add('atom-workspace', {
'x-terminal:open': () => this.open(
this.profilesSingleton.generateNewUri(),
this.addDefaultPosition(),
),
'x-terminal:open-center': () => this.openInCenterOrDock(atom.workspace),
'x-terminal:open-split-up': () => this.open(
this.profilesSingleton.generateNewUri(),
{ split: 'up' },
),
'x-terminal:open-split-down': () => this.open(
this.profilesSingleton.generateNewUri(),
{ split: 'down' },
),
'x-terminal:open-split-left': () => this.open(
this.profilesSingleton.generateNewUri(),
{ split: 'left' },
),
'x-terminal:open-split-right': () => this.open(
this.profilesSingleton.generateNewUri(),
{ split: 'right' },
),
'x-terminal:open-split-bottom-dock': () => this.openInCenterOrDock(atom.workspace.getBottomDock()),
'x-terminal:open-split-left-dock': () => this.openInCenterOrDock(atom.workspace.getLeftDock()),
'x-terminal:open-split-right-dock': () => this.openInCenterOrDock(atom.workspace.getRightDock()),
'x-terminal:toggle-profile-menu': () => this.toggleProfileMenu(),
'x-terminal:reorganize': () => this.reorganize('current'),
'x-terminal:reorganize-top': () => this.reorganize('top'),
'x-terminal:reorganize-bottom': () => this.reorganize('bottom'),
'x-terminal:reorganize-left': () => this.reorganize('left'),
'x-terminal:reorganize-right': () => this.reorganize('right'),
'x-terminal:reorganize-bottom-dock': () => this.reorganize('bottom-dock'),
'x-terminal:reorganize-left-dock': () => this.reorganize('left-dock'),
'x-terminal:reorganize-right-dock': () => this.reorganize('right-dock'),
'x-terminal:close-all': () => this.exitAllTerminals(),
}))
this.disposables.add(atom.commands.add('x-terminal', {
'x-terminal:close': () => this.close(),
'x-terminal:restart': () => this.restart(),
'x-terminal:copy': () => this.copy(),
'x-terminal:paste': () => this.paste(),
}))
}
deactivate () {
this.exitAllTerminals()
this.disposables.dispose()
}
deserializeXTerminalModel (serializedModel, atomEnvironment) {
const pack = atom.packages.enablePackage('x-terminal')
pack.preload()
pack.activateNow()
const allowRelaunchingTerminalsOnStartup = atom.config.get('x-terminal.terminalSettings.allowRelaunchingTerminalsOnStartup')
if (!allowRelaunchingTerminalsOnStartup) {
return
}
const url = new URL(serializedModel.uri)
const relaunchTerminalOnStartup = url.searchParams.get('relaunchTerminalOnStartup')
if (relaunchTerminalOnStartup === 'false') {
return
}
return new XTerminalModel({
uri: url.href,
terminals_set: this.terminals_set,
})
}
openInCenterOrDock (centerOrDock, options = {}) {
const pane = centerOrDock.getActivePane()
if (pane) {
options.pane = pane
}
return this.open(
this.profilesSingleton.generateNewUri(),
options,
)
}
refitAllTerminals () {
const currentActivePane = atom.workspace.getActivePane()
const currentActiveItem = currentActivePane.getActiveItem()
for (const terminal of this.terminals_set) {
// To refit, simply bring the terminal in focus in order for the
// resize event to refit the terminal.
const paneActiveItem = terminal.pane.getActiveItem()
terminal.pane.getElement().focus()
terminal.pane.setActiveItem(terminal)
terminal.pane.setActiveItem(paneActiveItem)
}
currentActivePane.getElement().focus()
currentActivePane.setActiveItem(currentActiveItem)
}
exitAllTerminals () {
for (const terminal of this.terminals_set) {
terminal.exit()
}
}
async open (uri, options = {}) {
const url = new URL(uri)
let relaunchTerminalOnStartup = url.searchParams.get('relaunchTerminalOnStartup')
if (relaunchTerminalOnStartup === null) {
relaunchTerminalOnStartup = this.profilesSingleton.getBaseProfile().relaunchTerminalOnStartup
if (!relaunchTerminalOnStartup) {
url.searchParams.set('relaunchTerminalOnStartup', false)
}
}
return atom.workspace.open(url.href, options)
}
/**
* Service function which is a wrapper around 'atom.workspace.open()'. The
* only difference with this function from 'atom.workspace.open()' is that it
* accepts a profile Object as the first argument.
*
* @async
* @function
* @param {Object} profile Profile data to use when opening terminal.
* @param {Object} options Options to pass to call to 'atom.workspace.open()'.
* @return {XTerminalModel} Instance of XTerminalModel.
*/
async openTerminal (profile, options = {}) {
options = this.addDefaultPosition(options)
return this.open(
XTerminalProfilesSingleton.instance.generateNewUrlFromProfileData(profile),
options,
)
}
/**
* Service function which opens a terminal and runs the commands.
*
* @async
* @function
* @param {string[]} commands Commands to run in the terminal.
* @return {XTerminalModel} Instance of XTerminalModel.
*/
async runCommands (commands) {
const options = this.addDefaultPosition()
const model = await this.open(
XTerminalProfilesSingleton.instance.generateNewUri(),
options,
)
await model.element.initializedPromise
for (const command of commands) {
model.runCommand(command)
}
}
addDefaultPosition (options = {}) {
const position = atom.config.get('x-terminal.terminalSettings.defaultOpenPosition')
switch (position) {
case 'Center': {
const pane = atom.workspace.getActivePane()
if (pane && !('pane' in options)) {
options.pane = pane
}
break
}
case 'Split Up':
if (!('split' in options)) {
options.split = 'up'
}
break
case 'Split Down':
if (!('split' in options)) {
options.split = 'down'
}
break
case 'Split Left':
if (!('split' in options)) {
options.split = 'left'
}
break
case 'Split Right':
if (!('split' in options)) {
options.split = 'right'
}
break
case 'Bottom Dock': {
const pane = atom.workspace.getBottomDock().getActivePane()
if (pane && !('pane' in options)) {
options.pane = pane
}
break
}
case 'Left Dock': {
const pane = atom.workspace.getLeftDock().getActivePane()
if (pane && !('pane' in options)) {
options.pane = pane
}
break
}
case 'Right Dock': {
const pane = atom.workspace.getRightDock().getActivePane()
if (pane && !('pane' in options)) {
options.pane = pane
}
break
}
}
return options
}
/**
* Function providing service functions offered by 'atom-xterm' service.
*
* @function
* @returns {Object} Object holding service functions.
*/
provideAtomXtermService () {
return {
openTerminal: async (...args) => {
return this.openTerminal(...args)
},
}
}
/**
* Function providing service functions offered by 'platformioIDETerminal' service.
*
* @function
* @returns {Object} Object holding service functions.
*/
providePlatformIOIDEService () {
return {
updateProcessEnv (vars) {
for (const name in vars) {
process.env[name] = vars[name]
}
},
run: (commands) => {
return this.runCommands(commands)
},
getTerminalViews: () => {
return this.terminals_set
},
open: () => {
return this.openTerminal()
},
}
}
performOperationOnItem (operation) {
const item = atom.workspace.getActivePaneItem()
if (isXTerminalModel(item)) {
switch (operation) {
case 'close':
item.exit()
break
case 'restart':
item.restartPtyProcess()
break
case 'copy':
atom.clipboard.write(item.copyFromTerminal())
break
case 'paste':
item.pasteToTerminal(atom.clipboard.read())
break
default:
throw new Error('Unknown operation: ' + operation)
}
}
}
close () {
this.performOperationOnItem('close')
}
restart () {
this.performOperationOnItem('restart')
}
copy () {
this.performOperationOnItem('copy')
}
paste () {
this.performOperationOnItem('paste')
}
toggleProfileMenu () {
const item = atom.workspace.getActivePaneItem()
if (isXTerminalModel(item)) {
item.toggleProfileMenu()
}
}
reorganize (orientation) {
if (this.terminals_set.size === 0) {
return
}
const activePane = atom.workspace.getActivePane()
let activeItem = activePane.getActiveItem()
let newPane
switch (orientation) {
case 'current':
newPane = activePane
break
case 'top':
newPane = activePane.findTopmostSibling().splitUp()
break
case 'bottom':
newPane = activePane.findBottommostSibling().splitDown()
break
case 'left':
newPane = activePane.findLeftmostSibling().splitLeft()
break
case 'right':
newPane = activePane.findRightmostSibling().splitRight()
break
case 'bottom-dock':
newPane = atom.workspace.getBottomDock().getActivePane()
break
case 'left-dock':
newPane = atom.workspace.getLeftDock().getActivePane()
break
case 'right-dock':
newPane = atom.workspace.getRightDock().getActivePane()
break
default:
throw new Error('Unknown orientation: ' + orientation)
}
for (const item of this.terminals_set) {
item.pane.moveItemToPane(item, newPane, -1)
}
if (isXTerminalModel(activeItem)) {
if (atom.workspace.getPanes().length > 1) {
// When reorganizing still leaves more than one pane in the
// workspace, another pane that doesn't include the newly
// reorganized terminal tabs needs to be focused in order for
// the terminal views to get properly resized in the new pane.
// All this is yet another quirk.
for (const pane of atom.workspace.getPanes()) {
if (pane !== activeItem.pane) {
pane.getElement().focus()
break
}
}
}
activeItem.pane.getElement().focus()
activeItem.pane.setActiveItem(activeItem)
} else if (activeItem instanceof HTMLElement) {
activeItem.focus()
} else if (typeof activeItem.getElement === 'function') {
activeItem = activeItem.getElement()
activeItem.focus()
}
}
}
export { config } from './config'
export function activate (state) {
return XTerminalSingleton.instance.activate(state)
}
export function deactivate () {
return XTerminalSingleton.instance.deactivate()
}
export function deserializeXTerminalModel (serializedModel, atomEnvironment) {
return XTerminalSingleton.instance.deserializeXTerminalModel(
serializedModel,
atomEnvironment,
)
}
export function provideAtomXtermService () {
return XTerminalSingleton.instance.provideAtomXtermService()
}
export function providePlatformIOIDEService () {
return XTerminalSingleton.instance.providePlatformIOIDEService()
}