mirror of
https://github.com/Myxelium/Bridge-Multi.git
synced 2026-04-11 14:19:38 +00:00
158 lines
4.5 KiB
TypeScript
158 lines
4.5 KiB
TypeScript
import { ChangeDetectorRef, Component, ElementRef, OnInit, ViewChild } from '@angular/core'
|
|
import { FormControl } from '@angular/forms'
|
|
|
|
import _ from 'lodash'
|
|
import { SettingsService } from 'src-angular/app/core/services/settings.service'
|
|
import { themes } from 'src-shared/Settings'
|
|
|
|
@Component({
|
|
selector: 'app-settings',
|
|
templateUrl: './settings.component.html',
|
|
})
|
|
export class SettingsComponent implements OnInit {
|
|
@ViewChild('themeDropdown', { static: true }) themeDropdown: ElementRef
|
|
|
|
public isSng: FormControl<boolean>
|
|
public isCompactTable: FormControl<boolean>
|
|
|
|
updateAvailable: 'yes' | 'no' | 'error' = 'no'
|
|
loginClicked = false
|
|
downloadUpdateText = 'Download Update'
|
|
retryUpdateText = 'Failed to check for update'
|
|
updateDownloading = false
|
|
updateDownloaded = false
|
|
updateRetrying = false
|
|
currentVersion = ''
|
|
|
|
constructor(
|
|
public settingsService: SettingsService,
|
|
private ref: ChangeDetectorRef
|
|
) {
|
|
this.isSng = new FormControl<boolean>(settingsService.isSng, { nonNullable: true })
|
|
this.isSng.valueChanges.subscribe(value => settingsService.isSng = value)
|
|
this.isCompactTable = new FormControl<boolean>(settingsService.isCompactTable, { nonNullable: true })
|
|
this.isCompactTable.valueChanges.subscribe(value => settingsService.isCompactTable = value)
|
|
}
|
|
|
|
async ngOnInit() {
|
|
window.electron.on.updateAvailable(result => {
|
|
this.updateAvailable = result !== null ? 'yes' : 'no'
|
|
this.updateRetrying = false
|
|
if (result !== null) {
|
|
this.downloadUpdateText = `Download Update (${result.version})`
|
|
}
|
|
this.ref.detectChanges()
|
|
})
|
|
window.electron.on.updateError(err => {
|
|
console.log(err)
|
|
this.updateAvailable = 'error'
|
|
this.updateRetrying = false
|
|
this.retryUpdateText = 'Failed to check for update'
|
|
this.ref.detectChanges()
|
|
})
|
|
window.electron.invoke.getCurrentVersion().then(version => {
|
|
this.currentVersion = `v${version}`
|
|
this.ref.detectChanges()
|
|
})
|
|
window.electron.invoke.getUpdateAvailable().then(isAvailable => {
|
|
this.updateAvailable = isAvailable
|
|
this.ref.detectChanges()
|
|
})
|
|
}
|
|
|
|
async downloadVideos(isChecked: boolean) {
|
|
this.settingsService.downloadVideos = isChecked
|
|
}
|
|
|
|
async getLibraryDirectory() {
|
|
const result = await window.electron.invoke.showOpenDialog({
|
|
title: 'Choose library folder',
|
|
defaultPath: this.settingsService.libraryDirectory || '',
|
|
properties: ['openDirectory'],
|
|
})
|
|
|
|
if (result.canceled === false) {
|
|
this.settingsService.libraryDirectory = result.filePaths[0]
|
|
}
|
|
}
|
|
|
|
async getCustomTheme() {
|
|
const result = await window.electron.invoke.showOpenDialog({
|
|
title: 'Choose custom theme',
|
|
defaultPath: this.settingsService.libraryDirectory || '',
|
|
properties: ['openFile'],
|
|
filters: [
|
|
{ name: "Themes", extensions: ["json"] },
|
|
],
|
|
})
|
|
|
|
if (result.canceled === false) {
|
|
const newThemeColors = await window.electron.invoke.getThemeColors(result.filePaths[0])
|
|
|
|
if (newThemeColors) {
|
|
this.settingsService.customTheme = newThemeColors
|
|
} else {
|
|
alert(`ERROR: ${result.filePaths[0]} was not a valid JSON file.`)
|
|
}
|
|
}
|
|
}
|
|
|
|
clearCustomTheme() {
|
|
this.settingsService.customTheme = null
|
|
}
|
|
|
|
openLibraryDirectory() {
|
|
if (this.settingsService.libraryDirectory) {
|
|
window.electron.emit.showFolder(this.settingsService.libraryDirectory)
|
|
}
|
|
}
|
|
|
|
openUrl(url: string) {
|
|
window.electron.emit.openUrl(url)
|
|
}
|
|
|
|
setTheme(theme: typeof themes[number]) {
|
|
this.settingsService.theme = theme
|
|
}
|
|
|
|
capitalize(text: string) {
|
|
return _.capitalize(text)
|
|
}
|
|
|
|
async downloadUpdate() {
|
|
if (this.updateDownloaded) {
|
|
window.electron.emit.quitAndInstall()
|
|
} else if (!this.updateDownloading) {
|
|
if (await window.electron.invoke.getPlatform() === 'darwin') { // Thanks Apple...
|
|
this.openUrl('https://github.com/Geomitron/Bridge/releases/latest')
|
|
} else {
|
|
this.updateDownloading = true
|
|
window.electron.emit.downloadUpdate()
|
|
this.downloadUpdateText = 'Downloading... (0%)'
|
|
window.electron.on.updateProgress(result => {
|
|
this.downloadUpdateText = `Downloading... (${result.percent.toFixed(0)}%)`
|
|
this.ref.detectChanges()
|
|
})
|
|
window.electron.on.updateDownloaded(() => {
|
|
this.downloadUpdateText = 'Quit and install update'
|
|
this.updateDownloaded = true
|
|
this.ref.detectChanges()
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
retryUpdate() {
|
|
if (this.updateRetrying === false) {
|
|
this.updateRetrying = true
|
|
this.retryUpdateText = 'Retrying...'
|
|
this.ref.detectChanges()
|
|
window.electron.emit.retryUpdate()
|
|
}
|
|
}
|
|
|
|
toggleDevTools() {
|
|
window.electron.emit.toggleDevTools()
|
|
}
|
|
}
|