funky-framadate-front/src/app/features/administration/form/steps/step-one/step-one.component.ts

45 lines
1.1 KiB
TypeScript
Raw Normal View History

import { Component, Inject, Input, OnInit } from '@angular/core';
2021-11-07 14:52:49 +01:00
import { FormGroup } from '@angular/forms';
import { PollService } from '../../../../../core/services/poll.service';
import { DOCUMENT } from '@angular/common';
2021-11-17 15:06:36 +01:00
import { ConfirmationService } from 'primeng/api';
import { Router } from '@angular/router';
2021-11-07 14:52:49 +01:00
@Component({
selector: 'app-step-one',
templateUrl: './step-one.component.html',
styleUrls: ['./step-one.component.scss'],
})
export class StepOneComponent implements OnInit {
@Input()
step_max: any;
@Input()
form: FormGroup;
2021-11-17 15:06:36 +01:00
constructor(
public pollService: PollService,
@Inject(DOCUMENT) private document: any,
private router: Router,
private confirmationService: ConfirmationService
) {
this.step_max = this.pollService.step_max;
}
2021-11-17 15:06:36 +01:00
ngOnInit(): void {
2021-11-16 16:16:30 +01:00
this.pollService.step_current = 1;
const selector = '#title';
const firstField = this.document.querySelector(selector);
if (firstField) {
firstField.focus();
}
}
2021-11-17 15:06:36 +01:00
2021-11-30 17:37:23 +01:00
leave(event: any) {
console.log('event', event);
if (event) {
event.preventDefault();
}
this.router.navigate(['/']);
}
2021-11-07 14:52:49 +01:00
}