Sengi-Windows-MacOS-Linux/src/app/components/floating-column/settings/settings.component.ts

83 lines
2.8 KiB
TypeScript
Raw Normal View History

2018-09-22 06:22:51 +02:00
import { Component, OnInit } from '@angular/core';
import { FormBuilder, FormGroup } from '@angular/forms';
import { Howl } from 'howler';
2019-05-22 02:18:01 +02:00
import { environment } from '../../../../environments/environment';
import { ToolsService } from '../../../services/tools.service';
import { UserNotificationService, NotificationSoundDefinition } from '../../../services/user-notification.service';
2018-09-22 06:22:51 +02:00
@Component({
2019-05-21 07:19:34 +02:00
selector: 'app-settings',
templateUrl: './settings.component.html',
styleUrls: ['./settings.component.scss']
2018-09-22 06:22:51 +02:00
})
export class SettingsComponent implements OnInit {
2019-11-15 04:58:09 +01:00
notificationSounds: NotificationSoundDefinition[];
notificationSoundId: string;
notificationForm: FormGroup;
2018-09-22 06:22:51 +02:00
2019-11-15 04:58:09 +01:00
disableAutofocusEnabled: boolean;
disableAvatarNotificationsEnabled: boolean;
disableSoundsEnabled: boolean;
version: string;
constructor(
private formBuilder: FormBuilder,
private readonly toolsService: ToolsService,
private readonly userNotificationsService: UserNotificationService) { }
2019-05-21 07:19:34 +02:00
ngOnInit() {
this.version = environment.VERSION;
2019-11-16 23:27:29 +01:00
const settings = this.toolsService.getSettings();
this.notificationSounds = this.userNotificationsService.getAllNotificationSounds();
2019-11-16 23:27:29 +01:00
this.notificationSoundId = settings.notificationSoundFileId;
this.notificationForm = this.formBuilder.group({
countryControl: [this.notificationSounds[this.notificationSoundId].id]
});
2019-11-16 23:27:29 +01:00
this.disableAutofocusEnabled = settings.disableAutofocus;
this.disableAvatarNotificationsEnabled = settings.disableAvatarNotifications;
this.disableSoundsEnabled = settings.disableSounds;
}
onChange(soundId: string) {
this.notificationSoundId = soundId;
let settings = this.toolsService.getSettings()
settings.notificationSoundFileId = soundId;
this.toolsService.saveSettings(settings);
}
playNotificationSound(): boolean {
let soundData = this.notificationSounds.find(x => x.id === this.notificationSoundId);
let sound = new Howl({
src: [soundData.path]
});
sound.play();
return false;
2019-05-21 07:19:34 +02:00
}
2019-11-15 04:58:09 +01:00
onDisableAutofocusChanged(){
2019-11-16 23:27:29 +01:00
let settings = this.toolsService.getSettings();
settings.disableAutofocus = this.disableAutofocusEnabled;
this.toolsService.saveSettings(settings);
2019-11-15 04:58:09 +01:00
}
onDisableAvatarNotificationsChanged(){
2019-11-16 23:27:29 +01:00
let settings = this.toolsService.getSettings();
settings.disableAvatarNotifications = this.disableAvatarNotificationsEnabled;
this.toolsService.saveSettings(settings);
2019-11-15 04:58:09 +01:00
}
onDisableSoundsEnabledChanged(){
2019-11-16 23:27:29 +01:00
let settings = this.toolsService.getSettings();
settings.disableSounds = this.disableSoundsEnabled;
this.toolsService.saveSettings(settings);
2019-11-15 04:58:09 +01:00
}
2019-05-22 02:18:01 +02:00
}