add email to creation

This commit is contained in:
Baptiste Lemoine 2020-01-16 11:46:31 +01:00
parent 2720b65962
commit 7c64f1f8f0
5 changed files with 103 additions and 84 deletions

View File

@ -47,13 +47,14 @@ export const defaultAnswers = [{
*/
export class PollConfig {
expiracyDateDefaultInDays = 60;
deletionDateAfterLastModification = 180;
step = 0;
stepMax = 3;
pollType = 'classic';// classic or date
title = 'titre';
description = 'ma description';
myName = 'mon pseudo';
myEmail: string = "";
// 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 = 'false';
// access

View File

@ -7,27 +7,31 @@
Votre sondage « 
<span class="poll-title">
{{config.title}} </span>
{{config.title}}
</span>
 » a bien été créé !
</p>
<p>
Voici les liens daccès au sondage, conservez-les soigneusement !
(Si vous les perdez vous pourrez toujours les recevoir par email)
</p>
<p>
Pour accéder au sondage et à tous ses paramètres : https://framadate.org/urladmindusondage
Pour accéder au sondage et à tous ses paramètres : {{config.urlAdmin}}
</p>
<button
class="btn"
(click)="copyLink(adminLink)"
(click)="copyLink(config.urlAdmin)"
>
<i class="fa fa-copy"></i>
Copier le lien
</button>
<a href="{{adminLink}}">
<a href="{{config.urlAdmin}}">
Voir le sondage coté administrateur·ice
</a>
<p class="note">
Note : Le sondage sera supprimé 180 jours après la date de sa dernière modification.
Note : Le sondage sera supprimé {{config.deletionDateAfterLastModification}} jours après la date de sa dernière
modification.
</p>
@ -36,15 +40,16 @@
<h2 i18n>{{"resume.users"|translate}}</h2>
<p>
Pour accéder au sondage : https://framadate.org/urladmindusondage
Pour accéder au sondage : {{config.urlPublic}}
</p>
<button
class="btn"
(click)="copyLink(publicLink)"
(click)="copyLink(config.urlPublic)"
>
<i class="fa fa-copy"></i>
Copier le lien
</button>
<a href="{{publicLink}}">
<a href="{{config.urlPublic}}">
Voir le sondage
</a>
</section>
@ -60,15 +65,16 @@
[(ngModel)]="mailToRecieve"
paceholder="email"
>
</p>
<button
class="btn"
(click)="sendToEmail()"
>
><i class="fa fa-paper-plane"></i>
Envoyer les liens du sondage
</button>
<a href="{{publicLink}}">
<a href="{{config.urlPublic}}">
Voir le sondage
</a>

View File

@ -9,18 +9,17 @@ import {ConfigService} from "../../services/config.service";
styleUrls: ['./end-confirmation.component.scss']
})
export class EndConfirmationComponent extends BaseComponent implements OnInit {
public adminLink = '';
public publicLink = '';
mailToRecieve = '';
constructor(public config: ConfigService, public http: HttpClient) {
super(config);
this.mailToRecieve = this.config.myEmail;
}
ngOnInit() {
}
copyLink(adminLink: any) {
copyLink(str: any) {
}

View File

@ -1,79 +1,92 @@
<div class="description">
<router-outlet></router-outlet>
<h1 i18n>
{{"creation.title"|translate}}
</h1>
<span
class="pre-selector"
i18n
>
<router-outlet></router-outlet>
<h1 i18n>
{{"creation.title"|translate}}
</h1>
<span
class="pre-selector"
i18n
>
{{"creation.want"|translate}}
</span>
<select
id="selector"
name="selector"
autofocus="autofocus"
[(ngModel)]="config.pollType"
>
<option value="dates">
{{"creation.kind.date"|translate}}
</option>
<option value="classic">
{{"creation.kind.classic"|translate}}
</option>
</select>
<select
[(ngModel)]="config.pollType"
autofocus="autofocus"
id="selector"
name="selector"
>
<option value="dates">
{{"creation.kind.date"|translate}}
</option>
<option value="classic">
{{"creation.kind.classic"|translate}}
</option>
</select>
<span class="post-selector">
<span class="post-selector">
</span>
<div>
<div>
<label
for="poll_title"
class="title-label"
i18n
>
{{"creation.choose_title"|translate}}
</label>
<input
type="name"
id="poll_title"
name="poll_title"
placeholder="{{'creation.choose_title_placeholder'|translate}}"
[(ngModel)]="config.title"
>
</div>
<label
class="title-label"
for="poll_title"
i18n
>
{{"creation.choose_title"|translate}}
</label>
<input
[(ngModel)]="config.title"
id="poll_title"
name="poll_title"
placeholder="{{'creation.choose_title_placeholder'|translate}}"
type="name"
>
</div>
<div>
<label for="my_name">
{{"creation.name"|translate}} :
</label>
<input
type="name"
name="my_name"
id="my_name"
placeholder="{{'creation.name_placeholder'|translate}}"
[(ngModel)]="config.myName"
>
</div>
<div>
<label for="my_name">
{{"creation.name"|translate}} :
</label>
<input
[(ngModel)]="config.myName"
id="my_name"
name="my_name"
placeholder="{{'creation.name_placeholder'|translate}}"
type="name"
>
</div>
<div>
<label
for="poll_description"
class="title-label"
i18n
>
{{"creation.description"|translate}}
</label>
<textarea
id="poll_description"
name="poll_description"
[(ngModel)]="config.description"
placeholder="description"
cols="50"
lines="5"
></textarea>
</div>
<div>
<label
class="title-label"
for="poll_description"
i18n
>
{{"creation.description"|translate}}
</label>
<textarea
[(ngModel)]="config.description"
cols="50"
id="poll_description"
lines="5"
name="poll_description"
placeholder="description"
></textarea>
</div>
<div>
<label for="email">
Mon email pour administrer le sondage est
</label>
<input
[(ngModel)]="config.myEmail"
autofocus="autofocus"
id="email"
name="mail"
required="required"
type="email"
/>
</div>
<button
[routerLink]="'/step/answers'"
@ -88,6 +101,6 @@
i18n
>
Retour
</a>
<hr>
</a>
<hr>
</div>

View File

@ -11,7 +11,7 @@ import {MessageService} from 'primeng/api';
providedIn: 'root'
})
export class ConfigService extends PollConfig {
myEmail: string;
loading: boolean = false;
baseHref: any = environment.baseApiHref;
myPolls: any;// list of retrieved polls from the backend api