funky-framadate-front/src/app/features/administration/stepper/stepper.component.ts

56 lines
2.0 KiB
TypeScript
Raw Normal View History

import { Component, Input, OnInit } from '@angular/core';
import { FormBuilder, FormGroup, Validators } from '@angular/forms';
import { Poll } from '../../../core/models/poll.model';
import { UuidService } from '../../../core/services/uuid.service';
import { DateService } from '../../../core/services/date.service';
2020-05-01 19:10:17 +02:00
@Component({
selector: 'app-stepper',
templateUrl: './stepper.component.html',
styleUrls: ['./stepper.component.scss'],
})
export class StepperComponent implements OnInit {
@Input()
public poll?: Poll;
public pollFormGroup: FormGroup;
public configurationFormGroup: FormGroup;
public choicesFormGroup: FormGroup;
2021-04-30 22:49:55 +02:00
public urlPrefix = '/participation/';
constructor(private fb: FormBuilder, private uuidService: UuidService) {}
2020-05-01 19:10:17 +02:00
ngOnInit(): void {
this.pollFormGroup = this.fb.group({
2020-10-29 18:43:19 +01:00
question: [this.poll ? this.poll.title : '', [Validators.required]],
2021-04-30 11:27:54 +02:00
slug: [this.poll ? this.poll.custom_url : this.uuidService.getUUID(), [Validators.required]],
description: [this.poll ? this.poll.description : ''],
});
this.configurationFormGroup = this.fb.group({
2021-04-30 23:43:44 +02:00
title: [this.poll ? this.poll : false, [Validators.required]],
isAboutDate: [this.poll ? this.poll.kind === 'date' : false, [Validators.required]],
isProtectedByPassword: [this.poll ? this.poll.password.length : false, [Validators.required]],
isOwnerNotifiedByEmailOnNewVote: [
2021-04-30 23:43:44 +02:00
this.poll ? this.poll.isOwnerNotifiedByEmailOnNewVote : false,
[Validators.required],
],
isOwnerNotifiedByEmailOnNewComment: [
2021-04-30 23:43:44 +02:00
this.poll ? this.poll.isOwnerNotifiedByEmailOnNewComment : false,
[Validators.required],
],
2021-04-30 23:43:44 +02:00
areResultsPublic: [this.poll ? this.poll.areResultsPublic : true, [Validators.required]],
expiracyNumberOfDays: [this.poll ? this.poll.default_expiracy_days_from_now : '60', [Validators.required]],
});
}
2020-05-01 19:10:17 +02:00
public savePoll(): void {
if (this.pollFormGroup.valid && this.configurationFormGroup.valid) {
console.log('Le sondage est correctement rempli, prêt à enregistrer.');
// TODO : save the poll
}
2020-05-01 19:10:17 +02:00
}
}