mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-08 21:40:03 +00:00
106 lines
3.7 KiB
TypeScript
106 lines
3.7 KiB
TypeScript
import { Component, Input, Optional, Inject, HostBinding, HostListener, ViewChild, ElementRef } from '@angular/core'
|
|
import { SortableComponent } from 'ng2-dnd'
|
|
import { NgbModal } from '@ng-bootstrap/ng-bootstrap'
|
|
import { TabContextMenuItemProvider } from '../api/tabContextMenuProvider'
|
|
import { BaseTabComponent } from './baseTab.component'
|
|
import { RenameTabModalComponent } from './renameTabModal.component'
|
|
import { HotkeysService } from '../services/hotkeys.service'
|
|
import { ElectronService } from '../services/electron.service'
|
|
import { AppService } from '../services/app.service'
|
|
import { HostAppService, Platform } from '../services/hostApp.service'
|
|
|
|
/** @hidden */
|
|
export interface SortableComponentProxy {
|
|
setDragHandle (_: HTMLElement)
|
|
}
|
|
|
|
/** @hidden */
|
|
@Component({
|
|
selector: 'tab-header',
|
|
templateUrl: './tabHeader.component.pug',
|
|
styleUrls: ['./tabHeader.component.scss'],
|
|
})
|
|
export class TabHeaderComponent {
|
|
@Input() index: number
|
|
@Input() @HostBinding('class.active') active: boolean
|
|
@Input() @HostBinding('class.has-activity') hasActivity: boolean
|
|
@Input() tab: BaseTabComponent
|
|
@Input() progress: number|null
|
|
@ViewChild('handle') handle: ElementRef
|
|
|
|
private constructor (
|
|
public app: AppService,
|
|
private electron: ElectronService,
|
|
private hostApp: HostAppService,
|
|
private ngbModal: NgbModal,
|
|
private hotkeys: HotkeysService,
|
|
@Inject(SortableComponent) private parentDraggable: SortableComponentProxy,
|
|
@Optional() @Inject(TabContextMenuItemProvider) protected contextMenuProviders: TabContextMenuItemProvider[],
|
|
) {
|
|
this.hotkeys.matchedHotkey.subscribe((hotkey) => {
|
|
if (this.app.activeTab === this.tab) {
|
|
if (hotkey === 'rename-tab') {
|
|
this.showRenameTabModal()
|
|
}
|
|
}
|
|
})
|
|
this.contextMenuProviders.sort((a, b) => a.weight - b.weight)
|
|
}
|
|
|
|
ngOnInit () {
|
|
if (this.hostApp.platform === Platform.macOS) {
|
|
this.parentDraggable.setDragHandle(this.handle.nativeElement)
|
|
}
|
|
this.tab.progress$.subscribe(progress => {
|
|
this.progress = progress
|
|
})
|
|
}
|
|
|
|
showRenameTabModal (): void {
|
|
const modal = this.ngbModal.open(RenameTabModalComponent)
|
|
modal.componentInstance.value = this.tab.customTitle || this.tab.title
|
|
modal.result.then(result => {
|
|
this.tab.setTitle(result)
|
|
this.tab.customTitle = result
|
|
}).catch(() => null)
|
|
}
|
|
|
|
async buildContextMenu (): Promise<Electron.MenuItemConstructorOptions[]> {
|
|
let items: Electron.MenuItemConstructorOptions[] = []
|
|
for (const section of await Promise.all(this.contextMenuProviders.map(x => x.getItems(this.tab, this)))) {
|
|
items.push({ type: 'separator' })
|
|
items = items.concat(section)
|
|
}
|
|
return items.slice(1)
|
|
}
|
|
|
|
@HostListener('dblclick') onDoubleClick (): void {
|
|
this.showRenameTabModal()
|
|
}
|
|
|
|
@HostListener('mousedown', ['$event']) async onMouseDown ($event: MouseEvent) {
|
|
if ($event.which === 2) {
|
|
$event.preventDefault()
|
|
}
|
|
}
|
|
|
|
@HostListener('mouseup', ['$event']) async onMouseUp ($event: MouseEvent) {
|
|
if ($event.which === 2) {
|
|
this.app.closeTab(this.tab, true)
|
|
}
|
|
}
|
|
|
|
@HostListener('auxclick', ['$event']) async onAuxClick ($event: MouseEvent) {
|
|
if ($event.which === 3) {
|
|
$event.preventDefault()
|
|
|
|
const contextMenu = this.electron.remote.Menu.buildFromTemplate(await this.buildContextMenu())
|
|
|
|
contextMenu.popup({
|
|
x: $event.pageX,
|
|
y: $event.pageY,
|
|
})
|
|
}
|
|
}
|
|
}
|