funky-framadate-front/src/app/debugger/debugger.component.ts

31 lines
656 B
TypeScript
Raw Normal View History

2019-08-10 16:21:12 +02:00
import {Component, OnInit} from '@angular/core';
2019-12-03 17:20:57 +01:00
import {ConfigService} from '../services/config.service';
2019-08-10 16:21:12 +02:00
@Component({
selector: 'framadate-debugger',
templateUrl: './debugger.component.html',
styleUrls: ['./debugger.component.scss']
})
export class DebuggerComponent implements OnInit {
2019-08-11 16:21:49 +02:00
formIsValid = true;
2019-08-10 16:21:12 +02:00
2019-08-11 16:21:49 +02:00
constructor(public config: ConfigService) {
2019-08-10 16:21:12 +02:00
}
ngOnInit() {
}
selectOption(key: string, val: any) {
if (!this.config[key]) {
return false;
}
this.config[key] = val;
return true;
}
2020-01-15 17:55:22 +01:00
launchToast() {
this.config.handleError({message: "hop"})
}
2019-08-10 16:21:12 +02:00
}