This commit is contained in:
tykayn 2019-08-12 15:14:37 +02:00
commit 912a9340f3
5 changed files with 25 additions and 8 deletions

3
.gitignore vendored
View File

@ -45,3 +45,6 @@ testem.log
# System Files
.DS_Store
Thumbs.db
# Editor-specific configuration
.vscode/

View File

@ -22,6 +22,10 @@ import { EndConfirmationComponent } from './pages/end-confirmation/end-confirmat
import { CreateOrRetrieveComponent } from './pages/create-or-retrieve/create-or-retrieve.component';
import { CalendarComponent } from './calendar/calendar.component';
import { registerLocaleData } from '@angular/common';
import localeFr from '@angular/common/locales/fr';
registerLocaleData(localeFr, 'fr');
@NgModule({
declarations: [

View File

@ -2,9 +2,7 @@
* une option de date dans les sondages spéciaux
*/
export interface DateOption {
text: string;
start?: string;
end?: string;
literal: string;
}
/**

View File

@ -1,6 +1,7 @@
<div i18n>
Config spécialement pour les dates
</div>
<div>
<select
name="multi_hours"
@ -10,15 +11,18 @@
<option value="true">possiblement différents</option>
<option value="false">identiques</option>
</select>
<label for="multi_hours">
<span i18n>
Je souhaite mettre des créneaux horaires
</span>
<span i18n>
pour chaque journée
</span>
</label>
</div>
<button
class="btn btn-primary"
(click)="addDate()"
@ -31,15 +35,24 @@
<span i18n>
choix de Dates
</span>
<div
*ngFor="let choice of config.dateList"
*ngFor="let choice of config.dateList; index as id"
class="date-choice"
>
{{choice.text}}
<input
type="text"
name="dateChoices[]"
[(ngModel)]="choice.literal"
>
<button (click)="config.dateList.splice(id, 1)">X</button>
</div>
</div>
<a
[routerLink]="'/step/end'"
class="btn btn-block"
>C'est parfait!
>
C'est parfait!
</a>

View File

@ -8,7 +8,6 @@ import {BaseComponent} from '../base-page/base.component';
styleUrls: ['./dates.component.scss']
})
export class DatesComponent extends BaseComponent implements OnInit {
constructor(public config: ConfigService) {
super(config);
}
@ -17,6 +16,6 @@ export class DatesComponent extends BaseComponent implements OnInit {
}
addDate() {
console.log('TODO');
this.config.dateList.push({ literal: '' });
}
}