funky-framadate-front/src/app/config/PollConfig.ts

79 lines
3.1 KiB
TypeScript
Raw Normal View History

/**
* une option de date dans les sondages spéciaux
*/
import {environment} from "../../environments/environment";
import {DateChoice, defaultAnswers, otherDefaultDates, PollAnswer} from "./defaultConfigs";
export interface DateOption {
timeList: any;
2019-08-12 14:40:33 +02:00
literal: string;
2020-01-24 11:15:38 +01:00
date_object?: object;
}
const baseConfigValues = {
pollType: "classic",
title: "",
description: "",
myName: "",
myEmail: "",
};
2019-11-15 15:19:42 +01:00
/**
2019-08-10 17:41:01 +02:00
* configuration of the poll, add new fields at will
*/
export class PollConfig {
2019-11-23 15:35:27 +01:00
expiracyDateDefaultInDays = 60;
2020-01-16 11:46:31 +01:00
deletionDateAfterLastModification = 180;
2020-01-20 14:36:26 +01:00
step: number = 0; // step in the progress of creating a poll
stepMax: number = 3; // step max in the progress of creating a poll
2020-01-24 11:10:50 +01:00
pollType: string = 'dates';// classic or dates
2020-04-02 16:36:09 +02:00
// front end choices
themeChoices: string[] = ['light-watermelon', 'dark-crystal', 'hot-covid'];
themeSelected: number = 0;
themeClass: string = 'theme-light-watermelon';
2020-01-20 14:36:26 +01:00
title: string = 'titre';
description: string = 'ma description';
myName: string = 'mon pseudo';
myComment: string = 'wouah trop bien framadate!';
2020-01-20 15:50:09 +01:00
isAdmin: boolean = true;
myVoteStack: any;
myTempVoteStack = 0;
2020-01-20 14:36:26 +01:00
myEmail: string = "tktest@tktest.com";
2020-01-22 16:49:15 +01:00
myPolls: any = [];// list of retrieved polls from the backend api
2019-11-22 16:46:12 +01:00
// date specific poll, we have the choice to setup different hours (timeList) for all possible dates (dateList), or use the same hours for all dates
allowSeveralHours = 'true';
// access
visibility = 'link_only'; // visible to anyone with the link:
voteChoices = 'only_yes'; // possible answers to a vote choice: only "yes", "yes, maybe, no"
creationDate = new Date();
2019-11-23 15:35:27 +01:00
expirationDate = ''; // expiracy date
voteStackId = null; // id of the vote stack to update
2019-12-04 12:45:50 +01:00
pollId = null; // id of the current poll when created. data given by the backend api
2020-01-23 14:23:07 +01:00
pollSlug = null; // id of the current poll when created. data given by the backend api
currentPoll; // current poll selected with createPoll or getPoll of ConfigService
passwordAccess = 0;
password = '';
customUrl = ''; // custom slug in the url, must be unique
customUrlIsUnique = null; // given by the backend
2020-01-23 16:47:53 +01:00
urlSlugPublic = null;
2020-02-04 12:51:18 +01:00
urlPublic = environment.baseHref + '/#/poll/id/4';
urlAdmin = environment.baseHref + '/#/admin/d65es45fd45sdf45sd345f312sdf31sgfd345';
2020-02-04 12:51:18 +01:00
adminKey = ''; // key to change config of the poll
owner_modifier_token = ''; // key to change a vote stack
canModifyAnswers: boolean = true;// bool for the frontend selector
2020-02-04 12:51:18 +01:00
whoModifiesAnswers = "everybody";// everybody, self, nobody (= just admin)
whoCanChangeAnswers = 'everybody';// everybody, self, nobody (= just admin)
2020-02-13 17:41:36 +01:00
dateList: any = otherDefaultDates; // sets of days as strings, config to set identical time for days in a special days poll
timeList: DateChoice[] = otherDefaultDates; // ranges of time expressed as strings
answers: PollAnswer[] = defaultAnswers;
2019-08-10 17:41:01 +02:00
resetConfig() {
const self = this;
Object.keys(baseConfigValues).forEach((key) => {
self[key] = baseConfigValues[key];
})
}
}