mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
put back leaving modal, and focus on hour choice when we add one for a day
This commit is contained in:
parent
5e92466854
commit
778f5b4716
@ -39,7 +39,7 @@
|
|||||||
<div class="add-time-choice">
|
<div class="add-time-choice">
|
||||||
<button
|
<button
|
||||||
class="has-text-primary has-no-border is-large-button has-text-left has-background-transparent has-background-plus has-background-icon-left is-filtered-icon-primary"
|
class="has-text-primary has-no-border is-large-button has-text-left has-background-transparent has-background-plus has-background-icon-left is-filtered-icon-primary"
|
||||||
(click)="addChoiceForDay(day_id, dayChoice)"
|
(click)="addChoiceHourForDay(day_id, dayChoice)"
|
||||||
>
|
>
|
||||||
{{ 'hours.add' | translate }}
|
{{ 'hours.add' | translate }}
|
||||||
</button>
|
</button>
|
||||||
|
@ -51,25 +51,16 @@ export class StepFourComponent implements OnInit {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
addChoiceForDay(day_id, dayChoice: DateChoice): void {
|
addChoiceHourForDay(day_id, dayChoice: DateChoice): void {
|
||||||
let lastDateChoice = this.pollService.dateChoiceList[this.pollService.dateChoiceList.length];
|
let lastDateChoice = this.pollService.dateChoiceList[this.pollService.dateChoiceList.length];
|
||||||
let lastDateChoiceObject = this.dateUtilitiesService.addDaysToDate(
|
|
||||||
this.pollService.dateChoiceList.length,
|
|
||||||
new Date()
|
|
||||||
);
|
|
||||||
|
|
||||||
if (lastDateChoice && lastDateChoice.date_object) {
|
|
||||||
lastDateChoiceObject = lastDateChoice.date_object;
|
|
||||||
} else {
|
|
||||||
lastDateChoiceObject = new Date();
|
|
||||||
}
|
|
||||||
dayChoice.timeSlices.push({
|
dayChoice.timeSlices.push({
|
||||||
literal: '',
|
literal: '',
|
||||||
});
|
});
|
||||||
dayChoice.timeSlices.sort((a: any, b: any) => {
|
dayChoice.timeSlices.sort((a: any, b: any) => {
|
||||||
return a.date_object - b.date_object;
|
return a.date_object - b.date_object;
|
||||||
});
|
});
|
||||||
this.focusOnChoice(day_id, this.storageService.dateChoices.length - 1);
|
this.focusOnChoice(day_id, dayChoice.timeSlices.length - 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
focusOnChoice(day_id, index): void {
|
focusOnChoice(day_id, index): void {
|
||||||
|
Loading…
Reference in New Issue
Block a user