zgo/src/app/settings/settings.component.ts

93 lines
2.2 KiB
TypeScript
Raw Normal View History

2021-10-28 20:34:48 +00:00
import { Inject, Component, OnInit, OnDestroy, ViewEncapsulation } from '@angular/core';
import { MatDialog, MatDialogRef, MAT_DIALOG_DATA } from '@angular/material/dialog';
2022-03-07 19:46:00 +00:00
import { MatSlideToggleChange } from '@angular/material/slide-toggle';
2022-07-13 12:20:47 +00:00
import { UntypedFormBuilder, Validators, UntypedFormGroup, FormControl } from '@angular/forms';
import { User } from '../user.model';
import { Owner } from '../owner.model';
2021-10-28 20:34:48 +00:00
@Component({
selector: 'app-settings',
templateUrl: './settings.component.html',
styleUrls: ['/settings.component.css']
})
export class SettingsComponent implements OnInit {
2022-07-13 12:20:47 +00:00
settingsForm: UntypedFormGroup;
2021-10-28 20:34:48 +00:00
owner: Owner;
2022-03-07 19:46:00 +00:00
useZats: boolean;
useVKey: boolean = false;
2021-11-22 20:37:45 +00:00
coins = [
{
label: 'US Dollar',
symbol: 'usd'
},{
label: 'Euro',
symbol: 'eur'
},{
label: 'British Pound',
symbol: 'gbp'
},{
label: 'Canadian Dollar',
symbol: 'cad'
},{
label: 'Australian Dollar',
symbol: 'aud'
}
];
2021-10-28 20:34:48 +00:00
constructor(
2022-07-13 12:20:47 +00:00
private fb: UntypedFormBuilder,
2021-10-28 20:34:48 +00:00
private dialogRef: MatDialogRef<SettingsComponent>,
@Inject(MAT_DIALOG_DATA) public data: Owner) {
this.useZats = data.zats;
this.useVKey = data.payconf;
this.settingsForm = fb.group({
name: [data.name, Validators.required],
currency: [data.currency, Validators.required],
useZats: [data.zats, Validators.required],
useVKey: [data.payconf, Validators.required],
vKey: [data.viewkey]
});
if (data.payconf) {
this.settingsForm.get('vKey')!.enable();
}
this.owner = data;
2021-10-28 20:34:48 +00:00
}
ngOnInit() {
}
close() {
this.dialogRef.close();
}
save() {
this.owner.name = this.settingsForm.value.name;
2021-11-22 20:37:45 +00:00
this.owner.currency = this.settingsForm.value.currency;
this.owner.zats = this.settingsForm.value.useZats;
2022-07-20 16:10:24 +00:00
this.owner.payconf = this.settingsForm.value.useVKey;
2022-07-20 16:10:24 +00:00
this.owner.viewkey = this.settingsForm.value.vKey;
2022-07-20 16:03:18 +00:00
2021-10-28 20:34:48 +00:00
this.dialogRef.close(this.owner);
}
2022-03-07 19:46:00 +00:00
onChange(ob: MatSlideToggleChange) {
this.useZats = ob.checked;
}
onChangeVKeyOn(ob: MatSlideToggleChange) {
// console.log("Viewing key switch is " +
// ( ob.checked ? "[ON]." : "[OFF]." ) );
this.useVKey = ob.checked;
if ( ob.checked )
2022-07-20 15:31:23 +00:00
this.settingsForm.get('vKey')!.enable();
else
2022-07-20 15:31:23 +00:00
this.settingsForm.get('vKey')!.disable();
}
2021-10-28 20:34:48 +00:00
}