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

45 lines
1.1 KiB
TypeScript

import { Component, Inject, Input, OnInit } from '@angular/core';
import { FormGroup } from '@angular/forms';
import { PollService } from '../../../../../core/services/poll.service';
import { DOCUMENT } from '@angular/common';
import { ConfirmationService } from 'primeng/api';
import { Router } from '@angular/router';
@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;
constructor(
public pollService: PollService,
@Inject(DOCUMENT) private document: any,
private router: Router,
private confirmationService: ConfirmationService
) {
this.step_max = this.pollService.step_max;
}
ngOnInit(): void {
this.pollService.step_current = 1;
const selector = '#title';
const firstField = this.document.querySelector(selector);
if (firstField) {
firstField.focus();
}
}
leave(event: any) {
console.log('event', event);
if (event) {
event.preventDefault();
}
this.router.navigate(['/']);
}
}