mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-21 03:49:57 +00:00
114 lines
3.5 KiB
TypeScript
114 lines
3.5 KiB
TypeScript
import { Component, Input, Injector } from '@angular/core'
|
|
import { BaseTabProcess, WIN_BUILD_CONPTY_SUPPORTED, isWindowsBuild } from 'tabby-core'
|
|
import { BaseTerminalTabComponent } from 'tabby-terminal'
|
|
import { SessionOptions } from '../api'
|
|
import { Session } from '../session'
|
|
import { UACService } from '../services/uac.service'
|
|
|
|
/** @hidden */
|
|
@Component({
|
|
selector: 'terminalTab',
|
|
template: BaseTerminalTabComponent.template,
|
|
styles: BaseTerminalTabComponent.styles,
|
|
animations: BaseTerminalTabComponent.animations,
|
|
})
|
|
export class TerminalTabComponent extends BaseTerminalTabComponent {
|
|
@Input() sessionOptions: SessionOptions
|
|
session: Session|null = null
|
|
|
|
// eslint-disable-next-line @typescript-eslint/no-useless-constructor
|
|
constructor (
|
|
injector: Injector,
|
|
private uac: UACService,
|
|
) {
|
|
super(injector)
|
|
}
|
|
|
|
ngOnInit (): void {
|
|
this.logger = this.log.create('terminalTab')
|
|
this.session = new Session(this.injector)
|
|
|
|
const isConPTY = isWindowsBuild(WIN_BUILD_CONPTY_SUPPORTED) && this.config.store.terminal.useConPTY
|
|
|
|
this.subscribeUntilDestroyed(this.hotkeys.hotkey$, hotkey => {
|
|
if (!this.hasFocus) {
|
|
return
|
|
}
|
|
switch (hotkey) {
|
|
case 'home':
|
|
this.sendInput(isConPTY ? '\x1b[H' : '\x1bOH')
|
|
break
|
|
case 'end':
|
|
this.sendInput(isConPTY ? '\x1b[F' : '\x1bOF')
|
|
break
|
|
}
|
|
})
|
|
|
|
super.ngOnInit()
|
|
}
|
|
|
|
protected onFrontendReady (): void {
|
|
this.initializeSession(this.size.columns, this.size.rows)
|
|
this.savedStateIsLive = this.sessionOptions.restoreFromPTYID === this.session?.getPTYID()
|
|
super.onFrontendReady()
|
|
}
|
|
|
|
initializeSession (columns: number, rows: number): void {
|
|
if (this.sessionOptions.runAsAdministrator && this.uac.isAvailable) {
|
|
this.sessionOptions = this.uac.patchSessionOptionsForUAC(this.sessionOptions)
|
|
}
|
|
|
|
this.session!.start({
|
|
...this.sessionOptions,
|
|
width: columns,
|
|
height: rows,
|
|
})
|
|
|
|
this.attachSessionHandlers(true)
|
|
this.recoveryStateChangedHint.next()
|
|
}
|
|
|
|
async getRecoveryToken (): Promise<any> {
|
|
const cwd = this.session ? await this.session.getWorkingDirectory() : null
|
|
return {
|
|
type: 'app:terminal-tab',
|
|
sessionOptions: {
|
|
...this.sessionOptions,
|
|
cwd: cwd ?? this.sessionOptions.cwd,
|
|
restoreFromPTYID: this.session?.getPTYID(),
|
|
},
|
|
savedState: this.frontend?.saveState(),
|
|
}
|
|
}
|
|
|
|
async getCurrentProcess (): Promise<BaseTabProcess|null> {
|
|
const children = await this.session?.getChildProcesses()
|
|
if (!children?.length) {
|
|
return null
|
|
}
|
|
return {
|
|
name: children[0].command,
|
|
}
|
|
}
|
|
|
|
async canClose (): Promise<boolean> {
|
|
const children = await this.session?.getChildProcesses()
|
|
if (!children?.length) {
|
|
return true
|
|
}
|
|
return (await this.platform.showMessageBox(
|
|
{
|
|
type: 'warning',
|
|
message: `"${children[0].command}" is still running. Close?`,
|
|
buttons: ['Cancel', 'Kill'],
|
|
defaultId: 1,
|
|
}
|
|
)).response === 1
|
|
}
|
|
|
|
ngOnDestroy (): void {
|
|
super.ngOnDestroy()
|
|
this.session?.destroy()
|
|
}
|
|
}
|