2020-06-03 16:41:23 +00:00
|
|
|
import * as glasstron from 'glasstron'
|
2020-06-14 14:16:00 +00:00
|
|
|
if (process.platform === 'win32' || process.platform === 'linux') {
|
2020-06-05 08:08:20 +00:00
|
|
|
glasstron.init()
|
|
|
|
}
|
|
|
|
|
2018-08-31 13:41:28 +00:00
|
|
|
import { Subject, Observable } from 'rxjs'
|
2018-12-29 12:27:45 +00:00
|
|
|
import { debounceTime } from 'rxjs/operators'
|
2020-12-24 13:03:14 +00:00
|
|
|
import { BrowserWindow, app, ipcMain, Rectangle, Menu, screen, BrowserWindowConstructorOptions } from 'electron'
|
2018-08-31 13:41:28 +00:00
|
|
|
import ElectronConfig = require('electron-config')
|
2018-10-05 18:12:06 +00:00
|
|
|
import * as os from 'os'
|
2019-11-26 14:51:31 +00:00
|
|
|
import * as path from 'path'
|
2018-10-06 18:50:06 +00:00
|
|
|
|
2020-05-02 15:23:35 +00:00
|
|
|
import { parseArgs } from './cli'
|
2018-10-06 18:50:06 +00:00
|
|
|
import { loadConfig } from './config'
|
2018-08-31 13:41:28 +00:00
|
|
|
|
2020-12-24 13:03:14 +00:00
|
|
|
let DwmEnableBlurBehindWindow: any = null
|
2018-10-05 18:12:06 +00:00
|
|
|
if (process.platform === 'win32') {
|
2019-05-06 12:09:30 +00:00
|
|
|
DwmEnableBlurBehindWindow = require('windows-blurbehind').DwmEnableBlurBehindWindow
|
2018-10-05 18:12:06 +00:00
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
|
2018-11-11 12:24:27 +00:00
|
|
|
export interface WindowOptions {
|
|
|
|
hidden?: boolean
|
|
|
|
}
|
|
|
|
|
2018-08-31 13:41:28 +00:00
|
|
|
export class Window {
|
|
|
|
ready: Promise<void>
|
|
|
|
private visible = new Subject<boolean>()
|
2020-04-19 09:47:31 +00:00
|
|
|
private closed = new Subject<void>()
|
2018-08-31 13:41:28 +00:00
|
|
|
private window: BrowserWindow
|
|
|
|
private windowConfig: ElectronConfig
|
2018-09-12 23:25:08 +00:00
|
|
|
private windowBounds: Rectangle
|
2018-11-22 16:51:12 +00:00
|
|
|
private closing = false
|
2020-02-05 13:02:58 +00:00
|
|
|
private lastVibrancy: {enabled: boolean, type?: string} | null = null
|
|
|
|
private disableVibrancyWhileDragging = false
|
2020-04-19 09:47:31 +00:00
|
|
|
private configStore: any
|
2018-08-31 13:41:28 +00:00
|
|
|
|
|
|
|
get visible$ (): Observable<boolean> { return this.visible }
|
2020-04-19 09:47:31 +00:00
|
|
|
get closed$ (): Observable<void> { return this.closed }
|
2018-08-31 13:41:28 +00:00
|
|
|
|
2018-11-11 12:24:27 +00:00
|
|
|
constructor (options?: WindowOptions) {
|
2020-04-19 09:47:31 +00:00
|
|
|
this.configStore = loadConfig()
|
2018-08-31 13:41:28 +00:00
|
|
|
|
2018-11-11 12:24:27 +00:00
|
|
|
options = options || {}
|
|
|
|
|
2018-08-31 13:41:28 +00:00
|
|
|
this.windowConfig = new ElectronConfig({ name: 'window' })
|
2018-09-12 23:25:08 +00:00
|
|
|
this.windowBounds = this.windowConfig.get('windowBoundaries')
|
2018-08-31 13:41:28 +00:00
|
|
|
|
2020-12-24 13:03:14 +00:00
|
|
|
const maximized = this.windowConfig.get('maximized')
|
|
|
|
const bwOptions: BrowserWindowConstructorOptions = {
|
2018-08-31 13:41:28 +00:00
|
|
|
width: 800,
|
|
|
|
height: 600,
|
|
|
|
title: 'Terminus',
|
|
|
|
minWidth: 400,
|
2020-12-24 13:03:14 +00:00
|
|
|
minHeight: 300,
|
2019-02-20 00:57:38 +00:00
|
|
|
webPreferences: {
|
|
|
|
nodeIntegration: true,
|
2019-11-26 14:51:31 +00:00
|
|
|
preload: path.join(__dirname, 'sentry.js'),
|
2020-02-05 12:22:35 +00:00
|
|
|
backgroundThrottling: false,
|
2020-12-23 20:45:47 +00:00
|
|
|
enableRemoteModule: true,
|
2019-02-20 00:57:38 +00:00
|
|
|
},
|
2018-08-31 13:41:28 +00:00
|
|
|
frame: false,
|
|
|
|
show: false,
|
2019-10-26 19:11:27 +00:00
|
|
|
backgroundColor: '#00000000',
|
2018-08-31 13:41:28 +00:00
|
|
|
}
|
|
|
|
|
2019-07-04 10:04:24 +00:00
|
|
|
if (this.windowBounds) {
|
|
|
|
Object.assign(bwOptions, this.windowBounds)
|
2020-02-05 12:16:31 +00:00
|
|
|
const closestDisplay = screen.getDisplayNearestPoint( { x: this.windowBounds.x, y: this.windowBounds.y } )
|
2019-06-28 02:46:47 +00:00
|
|
|
|
2020-02-05 12:16:31 +00:00
|
|
|
const [left1, top1, right1, bottom1] = [this.windowBounds.x, this.windowBounds.y, this.windowBounds.x + this.windowBounds.width, this.windowBounds.y + this.windowBounds.height]
|
|
|
|
const [left2, top2, right2, bottom2] = [closestDisplay.bounds.x, closestDisplay.bounds.y, closestDisplay.bounds.x + closestDisplay.bounds.width, closestDisplay.bounds.y + closestDisplay.bounds.height]
|
2019-06-28 02:46:47 +00:00
|
|
|
|
2019-07-04 10:04:24 +00:00
|
|
|
if ((left2 > right1 || right2 < left1 || top2 > bottom1 || bottom2 < top1) && !maximized) {
|
2020-02-05 12:16:31 +00:00
|
|
|
bwOptions.x = closestDisplay.bounds.width / 2 - bwOptions.width / 2
|
|
|
|
bwOptions.y = closestDisplay.bounds.height / 2 - bwOptions.height / 2
|
2019-07-04 10:04:24 +00:00
|
|
|
}
|
2019-06-28 02:46:47 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 09:47:31 +00:00
|
|
|
if ((this.configStore.appearance || {}).frame === 'native') {
|
2018-11-11 12:24:27 +00:00
|
|
|
bwOptions.frame = true
|
2018-08-31 13:41:28 +00:00
|
|
|
} else {
|
|
|
|
if (process.platform === 'darwin') {
|
2018-11-11 12:24:27 +00:00
|
|
|
bwOptions.titleBarStyle = 'hiddenInset'
|
2018-08-31 13:41:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-03 16:41:23 +00:00
|
|
|
this.window = new BrowserWindow(bwOptions)
|
|
|
|
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.once('ready-to-show', () => {
|
|
|
|
if (process.platform === 'darwin') {
|
2019-10-26 19:11:27 +00:00
|
|
|
this.window.setVibrancy('window')
|
2020-04-19 09:47:31 +00:00
|
|
|
} else if (process.platform === 'win32' && (this.configStore.appearance || {}).vibrancy) {
|
2018-08-31 13:41:28 +00:00
|
|
|
this.setVibrancy(true)
|
|
|
|
}
|
2018-11-11 12:24:27 +00:00
|
|
|
|
|
|
|
if (!options.hidden) {
|
|
|
|
if (maximized) {
|
|
|
|
this.window.maximize()
|
|
|
|
} else {
|
|
|
|
this.window.show()
|
|
|
|
}
|
|
|
|
this.window.focus()
|
2020-05-26 15:04:39 +00:00
|
|
|
this.window.moveTop()
|
2018-09-12 23:25:08 +00:00
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
})
|
2019-06-28 02:46:47 +00:00
|
|
|
|
2020-04-20 17:21:48 +00:00
|
|
|
this.window.on('blur', () => {
|
2020-04-20 17:01:10 +00:00
|
|
|
if (this.configStore.appearance?.dockHideOnBlur) {
|
|
|
|
this.hide()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.loadURL(`file://${app.getAppPath()}/dist/index.html?${this.window.id}`, { extraHeaders: 'pragma: no-cache\n' })
|
|
|
|
|
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
this.window.setMenu(null)
|
|
|
|
}
|
|
|
|
|
|
|
|
this.setupWindowManagement()
|
|
|
|
|
|
|
|
this.ready = new Promise(resolve => {
|
|
|
|
const listener = event => {
|
|
|
|
if (event.sender === this.window.webContents) {
|
2019-09-09 14:23:47 +00:00
|
|
|
ipcMain.removeListener('app:ready', listener as any)
|
2018-08-31 13:41:28 +00:00
|
|
|
resolve()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ipcMain.on('app:ready', listener)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-03-01 15:10:45 +00:00
|
|
|
setVibrancy (enabled: boolean, type?: string): void {
|
2020-02-05 13:02:58 +00:00
|
|
|
this.lastVibrancy = { enabled, type }
|
2018-10-05 18:12:06 +00:00
|
|
|
if (process.platform === 'win32') {
|
|
|
|
if (parseFloat(os.release()) >= 10) {
|
2020-06-14 14:16:00 +00:00
|
|
|
glasstron.update(this.window, {
|
2020-06-14 15:26:57 +00:00
|
|
|
windows: { blurType: enabled ? type === 'fluent' ? 'acrylic' : 'blurbehind' : null },
|
2020-06-14 14:16:00 +00:00
|
|
|
})
|
2018-10-05 18:12:06 +00:00
|
|
|
} else {
|
|
|
|
DwmEnableBlurBehindWindow(this.window, enabled)
|
|
|
|
}
|
2020-12-24 13:03:14 +00:00
|
|
|
} else if (process.platform === 'linux') {
|
2020-06-14 14:16:00 +00:00
|
|
|
glasstron.update(this.window, {
|
|
|
|
linux: { requestBlur: enabled },
|
|
|
|
})
|
2020-06-04 11:34:33 +00:00
|
|
|
this.window.setBackgroundColor(enabled ? '#00000000' : '#131d27')
|
2020-02-05 13:02:58 +00:00
|
|
|
} else {
|
|
|
|
this.window.setVibrancy(enabled ? 'dark' : null as any) // electron issue 20269
|
2018-08-31 13:41:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-01 15:10:45 +00:00
|
|
|
show (): void {
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.show()
|
2020-05-26 15:04:39 +00:00
|
|
|
this.window.moveTop()
|
2018-08-31 13:41:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-01 15:10:45 +00:00
|
|
|
focus (): void {
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.focus()
|
|
|
|
}
|
|
|
|
|
2020-12-24 13:03:14 +00:00
|
|
|
send (event: string, ...args: any[]): void {
|
2018-10-26 14:17:20 +00:00
|
|
|
if (!this.window) {
|
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.webContents.send(event, ...args)
|
2020-04-19 09:47:31 +00:00
|
|
|
if (event === 'host:config-change') {
|
|
|
|
this.configStore = args[0]
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
}
|
|
|
|
|
2020-03-01 16:07:11 +00:00
|
|
|
isDestroyed (): boolean {
|
2020-02-05 12:16:31 +00:00
|
|
|
return !this.window || this.window.isDestroyed()
|
2019-07-17 03:36:24 +00:00
|
|
|
}
|
|
|
|
|
2020-04-19 09:47:31 +00:00
|
|
|
isFocused (): boolean {
|
|
|
|
return this.window.isFocused()
|
|
|
|
}
|
|
|
|
|
2020-04-20 09:25:20 +00:00
|
|
|
hide (): void {
|
2020-04-19 09:47:31 +00:00
|
|
|
if (process.platform === 'darwin') {
|
|
|
|
// Lose focus
|
|
|
|
Menu.sendActionToFirstResponder('hide:')
|
|
|
|
}
|
|
|
|
this.window.blur()
|
|
|
|
if (process.platform !== 'darwin') {
|
|
|
|
this.window.hide()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-20 09:25:20 +00:00
|
|
|
present (): void {
|
2020-04-19 09:47:31 +00:00
|
|
|
if (!this.window.isVisible()) {
|
|
|
|
// unfocused, invisible
|
|
|
|
this.window.show()
|
|
|
|
this.window.focus()
|
|
|
|
} else {
|
|
|
|
if (!this.configStore.appearance?.dock || this.configStore.appearance?.dock === 'off') {
|
|
|
|
// not docked, visible
|
|
|
|
setTimeout(() => {
|
|
|
|
this.window.show()
|
|
|
|
this.window.focus()
|
|
|
|
})
|
|
|
|
} else {
|
2020-04-20 17:19:41 +00:00
|
|
|
if (this.configStore.appearance?.dockAlwaysOnTop) {
|
2020-04-20 16:38:02 +00:00
|
|
|
// docked, visible, on top
|
|
|
|
this.window.hide()
|
|
|
|
} else {
|
|
|
|
// docked, visible, not on top
|
|
|
|
this.window.focus()
|
|
|
|
}
|
2020-04-19 09:47:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-02 15:23:35 +00:00
|
|
|
handleSecondInstance (argv: string[], cwd: string): void {
|
2020-12-06 14:39:49 +00:00
|
|
|
this.send('host:second-instance', parseArgs(argv, cwd), cwd)
|
2020-05-02 15:23:35 +00:00
|
|
|
}
|
|
|
|
|
2018-08-31 13:41:28 +00:00
|
|
|
private setupWindowManagement () {
|
|
|
|
this.window.on('show', () => {
|
|
|
|
this.visible.next(true)
|
2019-11-26 14:51:31 +00:00
|
|
|
this.send('host:window-shown')
|
2018-08-31 13:41:28 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
this.window.on('hide', () => {
|
|
|
|
this.visible.next(false)
|
|
|
|
})
|
|
|
|
|
2020-12-24 13:03:14 +00:00
|
|
|
const moveSubscription = new Observable<void>(observer => {
|
2018-12-29 12:27:45 +00:00
|
|
|
this.window.on('move', () => observer.next())
|
|
|
|
}).pipe(debounceTime(250)).subscribe(() => {
|
2019-11-26 14:51:31 +00:00
|
|
|
this.send('host:window-moved')
|
2018-12-29 12:27:45 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
this.window.on('closed', () => {
|
|
|
|
moveSubscription.unsubscribe()
|
|
|
|
})
|
|
|
|
|
2019-11-26 14:51:31 +00:00
|
|
|
this.window.on('enter-full-screen', () => this.send('host:window-enter-full-screen'))
|
|
|
|
this.window.on('leave-full-screen', () => this.send('host:window-leave-full-screen'))
|
2018-08-31 13:41:28 +00:00
|
|
|
|
2018-11-22 16:51:12 +00:00
|
|
|
this.window.on('close', event => {
|
|
|
|
if (!this.closing) {
|
|
|
|
event.preventDefault()
|
2019-11-26 14:51:31 +00:00
|
|
|
this.send('host:window-close-request')
|
2018-11-22 16:51:12 +00:00
|
|
|
return
|
|
|
|
}
|
2018-09-12 23:25:08 +00:00
|
|
|
this.windowConfig.set('windowBoundaries', this.windowBounds)
|
|
|
|
this.windowConfig.set('maximized', this.window.isMaximized())
|
2018-08-31 13:41:28 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
this.window.on('closed', () => {
|
|
|
|
this.destroy()
|
|
|
|
})
|
|
|
|
|
2018-09-12 23:25:08 +00:00
|
|
|
this.window.on('resize', () => {
|
2018-09-20 09:46:24 +00:00
|
|
|
if (!this.window.isMaximized()) {
|
2018-09-12 23:25:08 +00:00
|
|
|
this.windowBounds = this.window.getBounds()
|
2018-09-20 09:46:24 +00:00
|
|
|
}
|
2018-09-12 23:25:08 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
this.window.on('move', () => {
|
2018-09-20 09:46:24 +00:00
|
|
|
if (!this.window.isMaximized()) {
|
2018-09-12 23:25:08 +00:00
|
|
|
this.windowBounds = this.window.getBounds()
|
2018-09-20 09:46:24 +00:00
|
|
|
}
|
2018-09-12 23:25:08 +00:00
|
|
|
})
|
|
|
|
|
2019-12-31 22:20:07 +00:00
|
|
|
this.window.on('focus', () => {
|
|
|
|
this.send('host:window-focused')
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-focus', event => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.focus()
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-maximize', event => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.maximize()
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-unmaximize', event => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.unmaximize()
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-toggle-maximize', event => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
if (this.window.isMaximized()) {
|
|
|
|
this.window.unmaximize()
|
|
|
|
} else {
|
|
|
|
this.window.maximize()
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-minimize', event => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.minimize()
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-set-bounds', (event, bounds) => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.setBounds(bounds)
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-set-always-on-top', (event, flag) => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-08-31 13:41:28 +00:00
|
|
|
this.window.setAlwaysOnTop(flag)
|
|
|
|
})
|
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-set-vibrancy', (event, enabled, type) => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-10-13 11:30:12 +00:00
|
|
|
this.setVibrancy(enabled, type)
|
2018-08-31 13:41:28 +00:00
|
|
|
})
|
2018-09-20 09:42:51 +00:00
|
|
|
|
2018-10-26 14:17:20 +00:00
|
|
|
ipcMain.on('window-set-title', (event, title) => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-26 14:17:20 +00:00
|
|
|
return
|
|
|
|
}
|
2018-09-20 09:42:51 +00:00
|
|
|
this.window.setTitle(title)
|
|
|
|
})
|
2018-10-13 11:35:16 +00:00
|
|
|
|
2018-10-31 16:37:34 +00:00
|
|
|
ipcMain.on('window-bring-to-front', event => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-10-31 16:37:34 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if (this.window.isMinimized()) {
|
|
|
|
this.window.restore()
|
|
|
|
}
|
|
|
|
this.window.show()
|
|
|
|
this.window.moveTop()
|
|
|
|
})
|
|
|
|
|
2018-12-29 11:41:32 +00:00
|
|
|
ipcMain.on('window-close', event => {
|
2019-02-09 21:38:45 +00:00
|
|
|
if (!this.window || event.sender !== this.window.webContents) {
|
2018-12-29 11:41:32 +00:00
|
|
|
return
|
|
|
|
}
|
2018-11-22 16:51:12 +00:00
|
|
|
this.closing = true
|
|
|
|
this.window.close()
|
|
|
|
})
|
|
|
|
|
2018-10-13 11:35:16 +00:00
|
|
|
this.window.webContents.on('new-window', event => event.preventDefault())
|
2020-02-05 13:02:58 +00:00
|
|
|
|
|
|
|
ipcMain.on('window-set-disable-vibrancy-while-dragging', (_event, value) => {
|
|
|
|
this.disableVibrancyWhileDragging = value
|
|
|
|
})
|
|
|
|
|
|
|
|
this.window.on('will-move', () => {
|
|
|
|
if (!this.lastVibrancy?.enabled || !this.disableVibrancyWhileDragging) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
let timeout: number|null = null
|
|
|
|
const oldVibrancy = this.lastVibrancy
|
|
|
|
this.setVibrancy(false)
|
|
|
|
const onMove = () => {
|
|
|
|
if (timeout) {
|
|
|
|
clearTimeout(timeout)
|
|
|
|
}
|
|
|
|
timeout = setTimeout(() => {
|
|
|
|
this.window.off('move', onMove)
|
|
|
|
this.setVibrancy(oldVibrancy.enabled, oldVibrancy.type)
|
|
|
|
}, 500)
|
|
|
|
}
|
|
|
|
this.window.on('move', onMove)
|
|
|
|
})
|
2018-08-31 13:41:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private destroy () {
|
|
|
|
this.window = null
|
2020-04-19 09:47:31 +00:00
|
|
|
this.closed.next()
|
2018-08-31 13:41:28 +00:00
|
|
|
this.visible.complete()
|
2020-04-19 09:47:31 +00:00
|
|
|
this.closed.complete()
|
2018-08-31 13:41:28 +00:00
|
|
|
}
|
|
|
|
}
|