2019-12-03 17:20:57 +01:00
|
|
|
import {Injectable} from '@angular/core';
|
|
|
|
import {PollConfig} from '../config/PollConfig';
|
2020-01-15 15:55:15 +01:00
|
|
|
import {HttpClient, HttpHeaders} from "@angular/common/http";
|
2019-12-03 17:20:57 +01:00
|
|
|
import {environment} from "../../environments/environment";
|
2020-01-16 14:37:11 +01:00
|
|
|
import {ConfirmationService, MessageService} from 'primeng/api';
|
|
|
|
import {Router} from "@angular/router";
|
2020-01-22 11:18:55 +01:00
|
|
|
import {mockMyPolls} from "../config/mocks/mockmypolls";
|
|
|
|
import {defaultAnswers, defaultDates, timeOfDay} from "../config/defaultConfigs";
|
2020-01-22 16:49:15 +01:00
|
|
|
import {mockPoll1} from "../config/mocks/mock1";
|
2019-12-03 17:20:57 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* le service transverse à chaque page qui permet de syncroniser la configuration de sondage souhaitée
|
|
|
|
*/
|
|
|
|
@Injectable({
|
|
|
|
providedIn: 'root'
|
|
|
|
})
|
|
|
|
export class ConfigService extends PollConfig {
|
2020-01-16 11:46:31 +01:00
|
|
|
|
2020-01-15 11:40:39 +01:00
|
|
|
loading: boolean = false;
|
2019-12-03 17:20:57 +01:00
|
|
|
baseHref: any = environment.baseApiHref;
|
|
|
|
|
|
|
|
|
2020-01-15 15:55:15 +01:00
|
|
|
constructor(private http: HttpClient,
|
2020-01-16 14:37:11 +01:00
|
|
|
private messageService: MessageService,
|
|
|
|
private router: Router,
|
|
|
|
private confirmationService: ConfirmationService,
|
|
|
|
) {
|
2019-12-03 17:20:57 +01:00
|
|
|
super();
|
2020-01-22 11:18:55 +01:00
|
|
|
// fill in mock values if we are not in production environment
|
|
|
|
if (!environment.production) {
|
2020-01-22 14:42:46 +01:00
|
|
|
console.info(' ######### framadate ######### we are not in production env, filling with mock values');
|
2020-01-22 16:49:15 +01:00
|
|
|
this.currentPoll = mockPoll1;
|
2020-01-22 11:18:55 +01:00
|
|
|
this.myPolls = mockMyPolls;
|
|
|
|
this.dateList = defaultDates;
|
|
|
|
this.timeList = timeOfDay;
|
|
|
|
this.answers = defaultAnswers;
|
|
|
|
}
|
2019-12-03 17:20:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
set(key, val) {
|
|
|
|
this[key] = val;
|
|
|
|
}
|
|
|
|
|
2020-01-15 15:55:15 +01:00
|
|
|
clear() {
|
|
|
|
this.messageService.clear();
|
|
|
|
}
|
|
|
|
|
2020-01-22 14:42:46 +01:00
|
|
|
// utils functions
|
2020-01-16 11:33:13 +01:00
|
|
|
/**
|
|
|
|
* generate unique id to have a default url for future poll
|
|
|
|
*/
|
|
|
|
makeUuid() {
|
|
|
|
return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g, function (c) {
|
|
|
|
var r = Math.random() * 16 | 0, v = c == 'x' ? r : (r & 0x3 | 0x8);
|
|
|
|
return v.toString(16);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-01-22 14:42:46 +01:00
|
|
|
/**
|
|
|
|
* make a uniq slug for the current poll creation
|
|
|
|
* @param str
|
|
|
|
*/
|
2020-01-16 11:33:13 +01:00
|
|
|
makeSlug(str?: string) {
|
|
|
|
if (!str) {
|
|
|
|
str = this.creationDate.getFullYear() + '_' + (this.creationDate.getMonth() + 1) + '_' + this.creationDate.getDate() + '_' + this.myName + '_' + this.title;
|
|
|
|
}
|
|
|
|
str = str.replace(/^\s+|\s+$/g, ''); // trim
|
|
|
|
str = str.toLowerCase();
|
|
|
|
|
|
|
|
// remove accents, swap ñ for n, etc
|
|
|
|
var from = "àáäâèéëêìíïîòóöôùúüûñç·/_,:;";
|
|
|
|
var to = "aaaaeeeeiiiioooouuuunc------";
|
|
|
|
for (var i = 0, l = from.length; i < l; i++) {
|
|
|
|
str = str.replace(new RegExp(from.charAt(i), 'g'), to.charAt(i));
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace(/[^a-z0-9 -]/g, '') // remove invalid chars
|
|
|
|
.replace(/\s+/g, '-') // collapse whitespace and replace by -
|
|
|
|
.replace(/-+/g, '-'); // collapse dashes
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* add some days to a date, to compute intervals
|
|
|
|
* @param days
|
|
|
|
* @param date
|
|
|
|
*/
|
|
|
|
addDaysToDate(days: number, date: Date) {
|
|
|
|
date = new Date(date.valueOf());
|
|
|
|
date.setDate(date.getDate() + days);
|
|
|
|
return date;
|
|
|
|
};
|
|
|
|
|
2019-12-04 12:45:50 +01:00
|
|
|
/** ==================================
|
|
|
|
*
|
|
|
|
* poll public calls to get non authenticated info
|
|
|
|
*
|
|
|
|
* ==================================/
|
|
|
|
/**
|
|
|
|
* convert current poll config to a payload to send to the backend API
|
|
|
|
*/
|
2019-12-03 17:20:57 +01:00
|
|
|
getPollConfig() {
|
|
|
|
const jsonConfig = {
|
2020-01-22 14:42:46 +01:00
|
|
|
owner: {
|
|
|
|
email: this.myEmail,
|
|
|
|
pseudo: this.myName,
|
|
|
|
},
|
|
|
|
title: this.title,
|
|
|
|
description: this.description,
|
2020-01-23 17:36:56 +01:00
|
|
|
pollType: this.pollType,
|
2020-01-22 14:42:46 +01:00
|
|
|
visibility: this.visibility,
|
|
|
|
voteChoices: this.voteChoices,
|
|
|
|
allowSeveralHours: this.allowSeveralHours,
|
|
|
|
expirationDate: this.expirationDate,
|
|
|
|
passwordAccess: this.passwordAccess,
|
|
|
|
password: this.password,
|
|
|
|
customUrl: this.customUrl,
|
|
|
|
canModifyAnswers: this.canModifyAnswers,
|
|
|
|
whoModifiesAnswers: this.whoModifiesAnswers,
|
|
|
|
dateList: this.dateList,
|
|
|
|
timeList: this.timeList,
|
|
|
|
answers: this.answers,
|
2020-01-22 16:49:15 +01:00
|
|
|
expiracyDateDefaultInDays: this.expiracyDateDefaultInDays,
|
|
|
|
deletionDateAfterLastModification: this.deletionDateAfterLastModification,
|
2019-12-03 17:20:57 +01:00
|
|
|
};
|
|
|
|
return jsonConfig
|
|
|
|
}
|
|
|
|
|
2020-01-22 11:18:55 +01:00
|
|
|
/**
|
|
|
|
* prepare headers like the charset and json type for any call to the backend
|
|
|
|
* @param bodyContent
|
|
|
|
*/
|
2020-01-15 15:55:15 +01:00
|
|
|
makeHeaders(bodyContent?: any) {
|
|
|
|
|
|
|
|
const headerDict = {
|
|
|
|
'Charset': 'UTF-8',
|
|
|
|
'Content-Type': 'application/json',
|
|
|
|
'Accept': 'application/json',
|
2020-01-21 12:04:14 +01:00
|
|
|
'Access-Control-Allow-Methods': 'GET, POST, PUT, DELETE, OPTIONS',
|
2020-01-15 15:55:15 +01:00
|
|
|
'Access-Control-Allow-Origin': '*'
|
|
|
|
};
|
|
|
|
|
|
|
|
const requestOptions = {
|
|
|
|
headers: new HttpHeaders(headerDict),
|
|
|
|
body: bodyContent
|
|
|
|
};
|
|
|
|
|
|
|
|
return requestOptions;
|
|
|
|
}
|
|
|
|
|
2020-01-22 11:18:55 +01:00
|
|
|
checkIfSlugIsUniqueInDatabase(slug: string = '') {
|
2020-01-16 11:33:13 +01:00
|
|
|
this.customUrlIsUnique = null;
|
2020-01-22 11:18:55 +01:00
|
|
|
if (!slug) {
|
|
|
|
slug = this.makeSlug();
|
|
|
|
}
|
2020-01-16 11:33:13 +01:00
|
|
|
|
|
|
|
this.loading = true;
|
2020-01-21 12:04:14 +01:00
|
|
|
// TODO
|
|
|
|
this.todo('check slug is unique');
|
2020-01-22 11:18:55 +01:00
|
|
|
this.http.get(`${this.baseHref}/check-slug-is-uniq/${slug}`,
|
2020-01-16 11:33:13 +01:00
|
|
|
this.makeHeaders({slug: this.customUrl}),
|
|
|
|
)
|
|
|
|
.subscribe((res: any) => {
|
|
|
|
|
|
|
|
this.customUrlIsUnique = res.data.isUnique;
|
|
|
|
this.loading = false;
|
|
|
|
},
|
|
|
|
(e) => this.handleError(e))
|
|
|
|
;
|
|
|
|
}
|
|
|
|
|
2019-12-04 12:45:50 +01:00
|
|
|
/**
|
|
|
|
* search in localstorage, fallback asking the backend to send an email to the owner if it exists
|
|
|
|
* @param email
|
|
|
|
*/
|
|
|
|
findPollsByEmail(email: string) {
|
|
|
|
|
|
|
|
|
|
|
|
this.findLocalStorageData();
|
|
|
|
// If no key is found in the localstorage, ask the backend to send an email to the user
|
|
|
|
|
|
|
|
this.myEmail = email;
|
|
|
|
|
|
|
|
|
2020-01-22 16:49:15 +01:00
|
|
|
this.todo('send email for real : TODO');
|
2020-01-15 11:40:39 +01:00
|
|
|
this.loading = true;
|
2020-01-22 16:05:37 +01:00
|
|
|
this.http.get(`${this.baseHref}/send-polls-to-user/${this.myEmail}`,
|
|
|
|
this.makeHeaders(),
|
2020-01-15 11:40:39 +01:00
|
|
|
)
|
2019-12-04 12:45:50 +01:00
|
|
|
.subscribe(res => {
|
|
|
|
// message: 'Trouvé! Allez voir votre boite email',
|
2020-01-16 12:05:54 +01:00
|
|
|
this.myPolls = res;
|
|
|
|
this.loading = false;
|
2020-01-15 15:55:15 +01:00
|
|
|
this.messageService.add({
|
|
|
|
severity: 'success',
|
2020-01-22 16:05:37 +01:00
|
|
|
summary: 'Succès',
|
|
|
|
detail: `Vos infos de sondages vous ont été transmises. Allez voir votre boite email ${this.myEmail}`
|
2020-01-15 15:55:15 +01:00
|
|
|
});
|
|
|
|
}, (e) => {
|
2020-01-15 17:55:22 +01:00
|
|
|
this.handleError(e)
|
2020-01-15 15:55:15 +01:00
|
|
|
}
|
2019-12-04 12:45:50 +01:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* display error message depending on the response of the backend
|
|
|
|
* @param err
|
|
|
|
*/
|
2019-12-03 17:20:57 +01:00
|
|
|
handleError(err: any) {
|
2020-01-15 15:55:15 +01:00
|
|
|
console.error('err', err);
|
2020-01-15 11:40:39 +01:00
|
|
|
this.loading = false;
|
2020-01-16 12:05:54 +01:00
|
|
|
this.messageService.add({severity: 'warning', summary: "Erreur lors de l'appel ", detail: err.message});
|
2019-12-03 17:20:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
findLocalStorageData() {
|
|
|
|
// TODO check if the person has a key to retrieve her polls
|
2020-01-20 16:03:12 +01:00
|
|
|
console.log('localStorage', localStorage);
|
2020-01-16 14:37:11 +01:00
|
|
|
if (localStorage) {
|
|
|
|
console.log('localStorage', localStorage)
|
|
|
|
}
|
2019-12-03 17:20:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-15 15:55:15 +01:00
|
|
|
* get one poll by its slug name
|
2019-12-03 17:20:57 +01:00
|
|
|
* @param url
|
|
|
|
*/
|
|
|
|
getPollByURL(url: string) {
|
2020-01-21 12:04:14 +01:00
|
|
|
|
|
|
|
this.todo();
|
2020-01-22 14:42:46 +01:00
|
|
|
return this.http.get(`${this.baseHref}/poll/slug/${url}`, this.makeHeaders())
|
2019-12-03 17:20:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-12-04 12:45:50 +01:00
|
|
|
* GET
|
|
|
|
* api/v1/poll/{id}
|
2019-12-03 17:20:57 +01:00
|
|
|
* @param id
|
|
|
|
*/
|
2020-01-20 15:50:09 +01:00
|
|
|
getPollById(id: string, password?: string) {
|
2020-01-15 11:40:39 +01:00
|
|
|
|
2020-01-20 15:50:09 +01:00
|
|
|
return this.http
|
2019-12-04 12:45:50 +01:00
|
|
|
.get(`${this.baseHref}/poll/${id}`,
|
2020-01-15 15:55:15 +01:00
|
|
|
this.makeHeaders({body: password}))
|
2020-01-23 14:23:07 +01:00
|
|
|
}
|
2020-01-20 15:50:09 +01:00
|
|
|
|
2020-01-23 14:23:07 +01:00
|
|
|
fetchPollFromRoute(event) {
|
|
|
|
console.log('time to fetch poll', event)
|
2019-12-04 12:45:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GET
|
|
|
|
* api/v1/my-polls
|
|
|
|
* @param ownerEmail
|
|
|
|
*/
|
|
|
|
getMyPolls(ownerEmail: string) {
|
|
|
|
this.http
|
|
|
|
.get(`${this.baseHref}/my-polls`,
|
2020-01-15 15:55:15 +01:00
|
|
|
this.makeHeaders({ownerEmail: ownerEmail})
|
|
|
|
)
|
2019-12-04 12:45:50 +01:00
|
|
|
.subscribe(
|
|
|
|
(res: any) => {
|
|
|
|
this.myPolls = res.data;
|
2020-01-15 15:55:15 +01:00
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
2019-12-04 12:45:50 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2020-01-20 15:23:26 +01:00
|
|
|
* launch creation call to the api
|
2019-12-04 12:45:50 +01:00
|
|
|
*/
|
|
|
|
createPoll() {
|
2020-01-20 15:23:26 +01:00
|
|
|
this.loading = true;
|
2020-01-22 16:05:37 +01:00
|
|
|
this.createPollFromConfig(this.getPollConfig())
|
2019-12-04 12:45:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* POST
|
|
|
|
* /api/v1/poll/{id}/poll
|
|
|
|
* @param config
|
|
|
|
*/
|
|
|
|
createPollFromConfig(config: any) {
|
2020-01-20 15:50:09 +01:00
|
|
|
this.loading = true;
|
2020-01-23 15:08:52 +01:00
|
|
|
console.log('config', config)
|
2020-01-20 15:23:26 +01:00
|
|
|
return this.http.post(`${this.baseHref}/poll`,
|
2020-01-22 16:05:37 +01:00
|
|
|
config,
|
|
|
|
this.makeHeaders())
|
2019-12-04 12:45:50 +01:00
|
|
|
.subscribe((res: any) => {
|
|
|
|
// redirect to the page to administrate the new poll
|
2020-01-15 15:55:15 +01:00
|
|
|
this.messageService.add({severity: 'success', summary: 'Sondage Créé',});
|
2020-01-23 15:08:52 +01:00
|
|
|
this.currentPoll = res.data;
|
|
|
|
this.currentPoll.admin_key = res.admin_key;
|
|
|
|
this.pollId = res.data.id;
|
2020-01-23 16:47:53 +01:00
|
|
|
this.urlPublic = this.baseHref + '#/vote/poll/id/' + res.data.id;
|
|
|
|
this.urlSlugPublic = this.baseHref + '#/vote/poll/slug/' + res.data.id;
|
|
|
|
if (res.data.customUrl) {
|
|
|
|
this.urlSlugPublic = this.baseHref + '#/vote/poll/id/' + res.data.customUrl;
|
|
|
|
}
|
|
|
|
this.urlAdmin = this.baseHref + '#/admin/' + res.admin_key;
|
2020-01-20 15:23:26 +01:00
|
|
|
this.loading = false;
|
2020-01-22 16:49:15 +01:00
|
|
|
if (!this.myPolls) {
|
|
|
|
this.myPolls = [];
|
|
|
|
}
|
2020-01-23 15:08:52 +01:00
|
|
|
this.myPolls.push(res);
|
2020-01-20 15:23:26 +01:00
|
|
|
this.router.navigate(['step/end']);
|
2020-01-22 11:18:55 +01:00
|
|
|
// TODO save new poll to localstorage
|
|
|
|
// reset all fields in current config
|
|
|
|
this.resetConfig();
|
2020-01-15 15:55:15 +01:00
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
2019-12-04 12:45:50 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-01-23 11:16:55 +01:00
|
|
|
/**
|
|
|
|
* conversion to send to back
|
|
|
|
* @param choiceList
|
|
|
|
*/
|
|
|
|
convertChoicesAnsweredToSend(choiceList) {
|
|
|
|
const converted = choiceList.map(elem => {
|
|
|
|
return {
|
|
|
|
choice_id: elem.id,
|
|
|
|
value: elem.answer
|
|
|
|
}
|
|
|
|
});
|
|
|
|
console.log('converted', converted);
|
|
|
|
return converted;
|
|
|
|
}
|
2019-12-04 12:45:50 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* POST
|
|
|
|
* /api/v1/poll/{id}/vote
|
|
|
|
* @param voteStack
|
|
|
|
*/
|
2020-01-16 15:35:11 +01:00
|
|
|
addVote(voteStack?: any) {
|
|
|
|
if (!voteStack) {
|
|
|
|
voteStack = {
|
|
|
|
pseudo: this.myName,
|
2020-01-22 16:49:15 +01:00
|
|
|
email: this.myEmail,
|
2020-01-23 11:16:55 +01:00
|
|
|
votes: this.convertChoicesAnsweredToSend(this.currentPoll.choices),
|
2020-01-16 15:35:11 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-23 15:08:52 +01:00
|
|
|
this.myVoteStack = voteStack;
|
|
|
|
|
2020-01-15 15:55:15 +01:00
|
|
|
this.http.post(
|
2020-01-23 15:08:52 +01:00
|
|
|
`${this.baseHref}/poll/${this.pollId}/vote`,
|
2020-01-15 15:55:15 +01:00
|
|
|
voteStack,
|
|
|
|
this.makeHeaders())
|
2019-12-04 12:45:50 +01:00
|
|
|
.subscribe((res: any) => {
|
|
|
|
|
2020-01-15 15:55:15 +01:00
|
|
|
this.messageService.add({severity: 'success', summary: 'Vote ajouté'});
|
2020-01-23 15:08:52 +01:00
|
|
|
|
|
|
|
// save modifier token
|
|
|
|
voteStack['modifier_token'] = res.modifier_token;
|
|
|
|
voteStack['id'] = res.vote_stack.id;
|
2020-01-20 15:58:35 +01:00
|
|
|
this.currentPoll = res;
|
2020-01-15 15:55:15 +01:00
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
2019-12-04 12:45:50 +01:00
|
|
|
);
|
2019-12-03 17:20:57 +01:00
|
|
|
}
|
|
|
|
|
2019-12-04 12:45:50 +01:00
|
|
|
/**
|
|
|
|
* UPDATE
|
|
|
|
* /api/v1/poll/{id}/vote
|
|
|
|
* @param voteStack
|
|
|
|
*/
|
2020-01-23 15:08:52 +01:00
|
|
|
updateVote(voteStack?: any) {
|
|
|
|
if (!this.myVoteStack) {
|
|
|
|
return;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
voteStack = this.myVoteStack;
|
|
|
|
}
|
2020-01-15 15:55:15 +01:00
|
|
|
this.http.put(
|
2020-01-23 15:08:52 +01:00
|
|
|
`${this.baseHref}/vote-stack/${voteStack.id}/token/${voteStack.modifierToken}`,
|
2020-01-15 15:55:15 +01:00
|
|
|
voteStack,
|
|
|
|
this.makeHeaders())
|
2019-12-04 12:45:50 +01:00
|
|
|
.subscribe((res: any) => {
|
2020-01-15 15:55:15 +01:00
|
|
|
this.messageService.add({severity: 'success', summary: 'Vote mis à jour'});
|
2020-01-20 15:58:35 +01:00
|
|
|
this.currentPoll = res;
|
2020-01-15 15:55:15 +01:00
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
2019-12-04 12:45:50 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* POST
|
|
|
|
* /api/v1/poll/{id}/comment
|
|
|
|
* @param comment
|
|
|
|
*/
|
2020-01-16 15:35:11 +01:00
|
|
|
addComment(comment?: any) {
|
2020-01-20 15:58:35 +01:00
|
|
|
if (!comment && this.myComment) {
|
2020-01-16 15:35:11 +01:00
|
|
|
comment = {
|
2020-01-20 15:58:35 +01:00
|
|
|
name: this.myName,
|
2020-01-22 16:58:38 +01:00
|
|
|
pseudo: this.myName,
|
2020-01-22 16:05:37 +01:00
|
|
|
email: this.myEmail,
|
2020-01-20 15:58:35 +01:00
|
|
|
date: new Date(),
|
|
|
|
text: this.myComment,
|
2020-01-16 15:35:11 +01:00
|
|
|
}
|
|
|
|
}
|
2020-01-23 14:23:07 +01:00
|
|
|
console.log('comment', comment)
|
2020-01-15 15:55:15 +01:00
|
|
|
this.http.post(
|
2020-01-23 14:23:07 +01:00
|
|
|
`${this.baseHref}/poll/${this.pollId}/comment`,
|
2020-01-15 15:55:15 +01:00
|
|
|
comment,
|
|
|
|
this.makeHeaders())
|
2019-12-04 12:45:50 +01:00
|
|
|
.subscribe((res: any) => {
|
2020-01-15 15:55:15 +01:00
|
|
|
this.messageService.add({
|
|
|
|
severity: 'success',
|
|
|
|
summary: 'Commentaire Créé',
|
2020-01-22 16:05:37 +01:00
|
|
|
detail: comment.text
|
2020-01-15 15:55:15 +01:00
|
|
|
});
|
2020-01-16 15:35:11 +01:00
|
|
|
// empty comment after success
|
|
|
|
this.myComment = '';
|
2020-01-22 16:58:38 +01:00
|
|
|
comment.date = {
|
|
|
|
date: comment.date
|
|
|
|
};
|
2020-01-20 15:58:35 +01:00
|
|
|
this.currentPoll.comments.push(comment);
|
2020-01-15 15:55:15 +01:00
|
|
|
}, (e) => {
|
2020-01-20 15:58:35 +01:00
|
|
|
this.handleError(e);
|
2020-01-15 15:55:15 +01:00
|
|
|
}
|
2019-12-04 12:45:50 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* administrator calls
|
|
|
|
*/
|
|
|
|
|
2020-01-16 14:37:11 +01:00
|
|
|
deleteComments() {
|
|
|
|
// prompt for confirmation
|
|
|
|
this.confirmationService.confirm({
|
|
|
|
message: 'Are you sure that you want to completely delete the comments of this poll (' + this.title + ') permanentely?',
|
|
|
|
accept: () => {
|
|
|
|
this.http.delete(
|
|
|
|
`${this.baseHref}/poll/${this.pollId}/comments`,
|
|
|
|
this.makeHeaders())
|
|
|
|
.subscribe((res: any) => {
|
|
|
|
this.messageService.add({
|
|
|
|
severity: 'success',
|
|
|
|
summary: 'Commentaires bien supprimés',
|
|
|
|
detail: 'Commentaires du sondage "' + this.title + '" supprimé'
|
|
|
|
});
|
|
|
|
|
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
deleteVotes() {
|
2020-01-22 11:18:55 +01:00
|
|
|
// prompt for confirmation
|
2020-01-16 14:37:11 +01:00
|
|
|
this.confirmationService.confirm({
|
|
|
|
message: 'Are you sure that you want to completely delete the votes of this poll (' + this.title + ') permanentely?',
|
|
|
|
accept: () => {
|
|
|
|
this.http.delete(
|
|
|
|
`${this.baseHref}/poll/${this.pollId}/votes`,
|
|
|
|
this.makeHeaders())
|
|
|
|
.subscribe((res: any) => {
|
|
|
|
this.messageService.add({
|
|
|
|
severity: 'success',
|
|
|
|
summary: 'Votes bien supprimés',
|
|
|
|
detail: 'Votes du sondage "' + this.title + '" supprimé'
|
|
|
|
});
|
|
|
|
|
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
deletePoll() {
|
|
|
|
if (!this.pollId) {
|
|
|
|
this.messageService.add({
|
|
|
|
summary: 'this poll is not administrable, it has no ID',
|
|
|
|
severity: 'warning'
|
|
|
|
});
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
let self = this;
|
|
|
|
// prompt for confirmation
|
|
|
|
this.confirmationService.confirm({
|
|
|
|
message: 'Are you sure that you want to completely delete this poll (' + self.title + ') and all is data permanentely?',
|
|
|
|
accept: () => {
|
|
|
|
this.http.delete(
|
|
|
|
`${this.baseHref}/poll/${this.pollId}`,
|
|
|
|
this.makeHeaders())
|
|
|
|
.subscribe((res: any) => {
|
|
|
|
this.messageService.add({
|
|
|
|
severity: 'success',
|
|
|
|
summary: 'Sondage bien supprimé',
|
|
|
|
detail: 'sondage "' + this.title + '" supprimé'
|
|
|
|
});
|
|
|
|
|
|
|
|
this.router.navigate(['home']);
|
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* UPDATE
|
|
|
|
* /api/v1/poll/{id}/vote
|
|
|
|
* @param voteStack
|
|
|
|
*/
|
|
|
|
updatePoll(voteStack: any) {
|
|
|
|
this.http.put(
|
|
|
|
`${this.baseHref}/poll/${this.pollId}`,
|
|
|
|
voteStack,
|
|
|
|
this.makeHeaders()
|
|
|
|
)
|
|
|
|
.subscribe((res: any) => {
|
|
|
|
this.messageService.add({
|
|
|
|
severity: 'success',
|
|
|
|
summary: 'Sondage mis à jour',
|
|
|
|
});
|
2020-01-20 15:58:35 +01:00
|
|
|
this.currentPoll = res;
|
2020-01-16 14:37:11 +01:00
|
|
|
}, (e) => {
|
|
|
|
this.handleError(e)
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
2020-01-16 15:35:11 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* export all the poll data available to the public as a CSV single file
|
|
|
|
*/
|
|
|
|
exportCSV() {
|
|
|
|
|
|
|
|
// TODO
|
|
|
|
const rows = [
|
|
|
|
["name1", "city1", "some other info"],
|
|
|
|
["name2", "city2", "more info"]
|
|
|
|
];
|
|
|
|
|
|
|
|
let csvContent = "data:text/csv;charset=utf-8,"
|
|
|
|
+ rows.map(e => e.join(",")).join("\n");
|
|
|
|
var encodedUri = encodeURI(csvContent);
|
|
|
|
var link = document.createElement("a");
|
|
|
|
link.setAttribute("href", encodedUri);
|
|
|
|
link.setAttribute("download", this.makeSlug() + "_export_" + new Date() + ".csv");
|
|
|
|
document.body.appendChild(link); // Required for FF
|
|
|
|
this.todo();
|
|
|
|
link.click(); // This will download the data file named "my_data.csv".
|
|
|
|
}
|
|
|
|
|
|
|
|
print() {
|
|
|
|
alert('TODO');
|
|
|
|
}
|
|
|
|
|
2020-01-21 12:04:14 +01:00
|
|
|
todo(message = '') {
|
2020-01-16 15:35:11 +01:00
|
|
|
this.messageService.add({
|
2020-01-21 12:04:14 +01:00
|
|
|
severity: 'info' + message,
|
2020-01-16 15:35:11 +01:00
|
|
|
detail: "cette fonctionnalité n'est pas encore disponible. Venez en discuter sur framateam.org / Ux et design libre / Framasoft",
|
|
|
|
summary: "Work in progress",
|
|
|
|
});
|
|
|
|
}
|
2019-12-03 17:20:57 +01:00
|
|
|
}
|