2020-05-12 19:16:23 +02:00
|
|
|
<h1 class="title is-1"><i class="fa fa-calendar" aria-hidden="true"></i> {{ 'dates.title' | translate }}</h1>
|
2019-08-12 14:40:33 +02:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
<div>
|
2020-04-21 10:50:26 +02:00
|
|
|
<label for="multi_hours">
|
|
|
|
<span>
|
|
|
|
{{ 'dates.hours_different' | translate }}
|
|
|
|
</span>
|
|
|
|
<select [(ngModel)]="config.allowSeveralHours" id="multi_hours" name="multi_hours">
|
|
|
|
<option value="true">{{ 'dates.multiple.different' | translate }}</option>
|
|
|
|
<option value="false">{{ 'dates.multiple.identical' | translate }}</option>
|
|
|
|
</select>
|
|
|
|
<span i18n>
|
|
|
|
{{ 'dates.hours_each_day' | translate }}
|
|
|
|
</span>
|
|
|
|
</label>
|
2020-04-14 11:28:33 +02:00
|
|
|
</div>
|
2019-08-12 14:40:33 +02:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
<button (click)="addDate()" class="btn btn--primary" id="add_date_button">
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-plus" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
{{ 'dates.add' | translate }}
|
2020-04-14 11:28:33 +02:00
|
|
|
</button>
|
2019-08-10 16:20:59 +02:00
|
|
|
<button
|
2020-04-21 10:50:26 +02:00
|
|
|
(click)="showDateInterval = !showDateInterval"
|
|
|
|
[ngClass]="{ active: showDateInterval }"
|
|
|
|
class="btn btn--primary"
|
|
|
|
id="toggle_interval_button"
|
2019-11-19 14:23:51 +01:00
|
|
|
>
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
{{ 'dates.add_interval' | translate }}
|
2020-04-14 11:28:33 +02:00
|
|
|
</button>
|
2019-11-15 15:19:42 +01:00
|
|
|
|
2020-04-14 11:28:33 +02:00
|
|
|
<button (click)="emptyAll()" class="btn btn--warning" id="empty_button">
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-trash" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
{{ 'dates.empty' | translate }}
|
2020-04-14 11:28:33 +02:00
|
|
|
</button>
|
|
|
|
<section *ngIf="showDateInterval" class="date-interval">
|
2020-04-21 10:50:26 +02:00
|
|
|
<!-- TODO à mettre en popup-->
|
|
|
|
<hr />
|
|
|
|
<h2>{{ 'dates.add_interval' | translate }}</h2>
|
|
|
|
<p>
|
|
|
|
{{ 'dates.interval_propose' | translate }}
|
|
|
|
<input (change)="countDays()" [(ngModel)]="startDateInterval" type="date" />
|
|
|
|
{{ 'dates.interval_span' | translate }}
|
|
|
|
<input (change)="countDays()" [(ngModel)]="endDateInterval" type="date" />
|
|
|
|
<br />
|
|
|
|
</p>
|
|
|
|
<button (click)="addIntervalOfDates()" class="btn btn-block btn--primary">
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-plus" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
{{ 'dates.interval_button' | translate }}
|
|
|
|
{{ intervalDays }}
|
|
|
|
{{ 'dates.interval_button_dates' | translate }}
|
|
|
|
</button>
|
|
|
|
<hr />
|
2020-04-14 11:28:33 +02:00
|
|
|
</section>
|
|
|
|
<div class="columns">
|
2020-04-21 10:50:26 +02:00
|
|
|
<div class="column">
|
|
|
|
<div class="dates-list">
|
|
|
|
<div class="title">
|
|
|
|
<span class="count-dates">
|
|
|
|
{{ config.timeList.length }}
|
|
|
|
</span>
|
|
|
|
<span class="count-dates-txt">
|
|
|
|
{{ 'dates.count_time' | translate }}
|
|
|
|
(pour chaque jour)
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="actions">
|
|
|
|
<button
|
|
|
|
(click)="addTime()"
|
|
|
|
*ngIf="'false' === config.allowSeveralHours"
|
|
|
|
class="btn btn--primary"
|
|
|
|
id="add_time_button"
|
|
|
|
>
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-plus" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
{{ 'dates.add_time' | translate }}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
(click)="removeAllTimes()"
|
|
|
|
*ngIf="'false' === config.allowSeveralHours"
|
|
|
|
class="btn btn--warning"
|
|
|
|
id="remove_time_button"
|
|
|
|
>
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-trash" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
Aucune plage horaire
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
(click)="resetTimes()"
|
|
|
|
*ngIf="'false' === config.allowSeveralHours"
|
|
|
|
class="btn btn--warning"
|
|
|
|
id="reset_time_button"
|
|
|
|
>
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-refresh" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
réinitialiser
|
|
|
|
</button>
|
|
|
|
</div>
|
2019-11-19 11:18:58 +01:00
|
|
|
|
2020-04-21 10:50:26 +02:00
|
|
|
<div *ngIf="'false' === config.allowSeveralHours" class="identical-dates">
|
|
|
|
<div *ngFor="let time of config.timeList; index as id" class="time-choice">
|
|
|
|
<label for="timeChoices_{{ id }}">
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-clock-o" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
[(ngModel)]="time.literal"
|
|
|
|
name="timeChoices_{{ id }}"
|
|
|
|
type="text"
|
|
|
|
id="timeChoices_{{ id }}"
|
|
|
|
/>
|
|
|
|
<button (click)="time.timeList.splice(id, 1)" class="btn btn-warning">
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-times" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<hr />
|
|
|
|
<span class="count-dates title">
|
|
|
|
{{ config.dateList.length }}
|
|
|
|
</span>
|
|
|
|
<span>
|
|
|
|
{{ 'dates.count_dates' | translate }}
|
|
|
|
</span>
|
|
|
|
<button class="btn btn--primary" (click)="addDate()">
|
|
|
|
{{ 'dates.add' | translate }}
|
|
|
|
</button>
|
|
|
|
<div *ngFor="let choice of config.dateList; index as id" class="date-choice">
|
|
|
|
{{ id }})
|
|
|
|
<input
|
|
|
|
[(ngModel)]="choice.date_object"
|
|
|
|
name="dateChoices_{{ id }}"
|
|
|
|
id="dateChoices_{{ id }}"
|
|
|
|
useValueAsDate
|
|
|
|
type="date"
|
|
|
|
/>
|
|
|
|
<button (click)="config.dateList.splice(id, 1)" class="btn btn-warning">
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-times" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
(click)="addTimeToDate(choice, id)"
|
|
|
|
*ngIf="'true' === config.allowSeveralHours"
|
|
|
|
class="btn btn--primary"
|
|
|
|
>
|
|
|
|
{{ 'dates.add_time' | translate }}
|
|
|
|
</button>
|
|
|
|
<div *ngIf="'true' === config.allowSeveralHours" class="several-times">
|
|
|
|
<div *ngFor="let timeItem of choice.timeList; index as idTime" class="time-choice">
|
|
|
|
<input
|
|
|
|
[(ngModel)]="timeItem.literal"
|
|
|
|
name="dateTime_{{ id }}_Choices_{{ idTime }}"
|
|
|
|
id="dateTime_{{ id }}_Choices_{{ idTime }}"
|
|
|
|
type="text"
|
|
|
|
/>
|
|
|
|
<button (click)="choice.timeList.splice(idTime, 1)" class="btn btn-warning">
|
2020-05-12 19:16:23 +02:00
|
|
|
<i class="fa fa-times" aria-hidden="true"></i>
|
2020-04-21 10:50:26 +02:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="column">
|
2020-04-22 12:56:18 +02:00
|
|
|
<app-resume></app-resume>
|
2020-04-21 10:50:26 +02:00
|
|
|
</div>
|
2020-04-14 11:28:33 +02:00
|
|
|
</div>
|
2020-02-13 17:41:36 +01:00
|
|
|
|
2020-05-01 19:10:17 +02:00
|
|
|
<a routerLink="../resume" class="btn btn--full btn--primary">
|
2020-04-21 10:50:26 +02:00
|
|
|
C'est parfait!
|
2020-04-14 11:28:33 +02:00
|
|
|
</a>
|
2020-05-01 19:10:17 +02:00
|
|
|
<a routerLink="../../home" class="prev">
|
2020-04-21 10:50:26 +02:00
|
|
|
Retour
|
2020-04-14 11:28:33 +02:00
|
|
|
</a>
|