funky-framadate-front/src/app/core/models/poll.model.ts

73 lines
1.8 KiB
TypeScript
Raw Normal View History

2020-05-12 19:16:23 +02:00
import { environment } from 'src/environments/environment';
2020-05-05 18:17:12 +02:00
import { Choice } from './choice.model';
import { Comment } from './comment.model';
2020-10-29 18:43:19 +01:00
import { PollConfiguration } from './configuration.model';
import { Owner } from './owner.model';
2021-04-30 12:37:04 +02:00
import { DateChoice, TimeSlices } from '../../../../mocks/old-stuff/config/defaultConfigs';
export class ChoiceGroup {
date_string: string;
choices: Choice[];
}
export class Poll {
public id = 0;
public default_expiracy_days_from_now = 60;
public kind: string;
public description?: string;
public expiracy_date?: string;
public creation_date?: string;
public creatorPseudo?: string;
public creatorEmail?: string;
public is_archived?: boolean;
2021-04-30 12:37:04 +02:00
public is_zero_knowledge?: boolean = false;
public allow_comments?: boolean = true;
public has_several_hours?: boolean = false;
public allowSeveralHours?: boolean;
public archiveNumberOfDays?: number;
2021-04-30 12:37:04 +02:00
public max_score?: number;
2021-04-30 12:37:04 +02:00
public max_count_of_answers?: number = 150;
public configuration: PollConfiguration = new PollConfiguration();
public comments: Comment[] = [];
public choices: Choice[] = [];
public choicesDateGrouped: ChoiceGroup[] = [];
public votes = [];
2021-04-26 17:04:16 +02:00
public stacks = [];
public allowed_answers = [];
2021-04-27 13:04:32 +02:00
public modification_policy = 'everybody';
2021-04-30 12:37:04 +02:00
public dateChoices: DateChoice[] = [];
// sets of days as strings, config to set identical time for days in a special days poll
2021-04-30 12:37:04 +02:00
public timeSlices: TimeSlices[] = []; // ranges of time expressed as strings
constructor(public owner: Owner = new Owner(), public title = 'mon titre', public custom_url: string = '') {}
2021-04-26 11:27:44 +02:00
public getAdministrationUrl(): string {
return `${environment.api.baseHref}/administration/polls/${this.custom_url}`;
2021-04-26 11:27:44 +02:00
}
public getParticipationUrl(): string {
return `${environment.api.baseHref}/participation/polls/${this.custom_url}`;
2021-04-26 11:27:44 +02:00
}
}