Merge remote-tracking branch 'origin/develop' into feature/CSR-1146
This commit is contained in:
commit
278eec4291
1 changed files with 70 additions and 19 deletions
|
|
@ -55,6 +55,13 @@ import {
|
||||||
PREMIUM_FEE_PART_TYPE,
|
PREMIUM_FEE_PART_TYPE,
|
||||||
RouteCodeFlags,
|
RouteCodeFlags,
|
||||||
} from "@/constants/schedule-constants";
|
} from "@/constants/schedule-constants";
|
||||||
|
const cmsWidgetFieldMappings = {
|
||||||
|
MODAL_CLOSE_BUTTON: "FooterText",
|
||||||
|
SUPPLEMENTAL_INFORMATION: "BodyText",
|
||||||
|
TIME_SLOT_BUTTON: "HeaderText",
|
||||||
|
DISCLAIMER: "FooterText",
|
||||||
|
DURATION: "SubheaderText",
|
||||||
|
};
|
||||||
|
|
||||||
// Validation for the modal button
|
// Validation for the modal button
|
||||||
defineRule("time-slot-required", required(errorMessages.OPTION_REQUIRED));
|
defineRule("time-slot-required", required(errorMessages.OPTION_REQUIRED));
|
||||||
|
|
@ -124,30 +131,60 @@ export default {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return this.getCmsContent(appointmentTypeCmsWidgetName, "BodyText");
|
return this.getCmsContent(
|
||||||
|
appointmentTypeCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.SUPPLEMENTAL_INFORMATION
|
||||||
|
);
|
||||||
},
|
},
|
||||||
footerCloseButtonText() {
|
footerCloseButtonText() {
|
||||||
return this.getCmsContent(this.cmsWidgetName, "FooterText");
|
return this.getCmsContent(
|
||||||
|
this.cmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.MODAL_CLOSE_BUTTON
|
||||||
|
);
|
||||||
},
|
},
|
||||||
premiumAppointmentButtonText() {
|
premiumAppointmentButtonText() {
|
||||||
return this.getCmsContent(this.mobilePremiumCmsWidgetName, "HeaderText");
|
return this.getCmsContent(
|
||||||
|
this.mobilePremiumCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.TIME_SLOT_BUTTON
|
||||||
|
);
|
||||||
},
|
},
|
||||||
dropoffButtonText() {
|
dropoffButtonText() {
|
||||||
return this.getCmsContent(this.dropoffCmsWidgetName, "HeaderText");
|
return this.getCmsContent(
|
||||||
|
this.dropoffCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.TIME_SLOT_BUTTON
|
||||||
|
);
|
||||||
|
},
|
||||||
|
sameDayDropoffButtonText() {
|
||||||
|
return this.getCmsContent(
|
||||||
|
this.sameDayDropOffCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.TIME_SLOT_BUTTON
|
||||||
|
);
|
||||||
},
|
},
|
||||||
overnightDropoffButtonText() {
|
overnightDropoffButtonText() {
|
||||||
return this.getCmsContent(this.overnightDropOffCmsWidgetName, "HeaderText");
|
return this.getCmsContent(
|
||||||
|
this.overnightDropOffCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.TIME_SLOT_BUTTON
|
||||||
|
);
|
||||||
},
|
},
|
||||||
dropoffDisclaimerText() {
|
dropoffDisclaimerText() {
|
||||||
return this.getCmsContent(this.dropoffCmsWidgetName, "FooterText");
|
return this.getCmsContent(this.dropoffCmsWidgetName, cmsWidgetFieldMappings.DISCLAIMER);
|
||||||
|
},
|
||||||
|
sameDayDropOffDisclaimerText() {
|
||||||
|
return this.getCmsContent(
|
||||||
|
this.sameDayDropOffCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.DISCLAIMER
|
||||||
|
);
|
||||||
},
|
},
|
||||||
overnightDropOffDisclaimerText() {
|
overnightDropOffDisclaimerText() {
|
||||||
return this.getCmsContent(this.overnightDropOffCmsWidgetName, "FooterText");
|
return this.getCmsContent(
|
||||||
|
this.overnightDropOffCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.DISCLAIMER
|
||||||
|
);
|
||||||
},
|
},
|
||||||
disclaimerTextBlockCopy() {
|
disclaimerTextBlockCopy() {
|
||||||
if (this.appointmentType === AppointmentTypeStrings.DROP_OFF) {
|
if (this.appointmentType === AppointmentTypeStrings.DROP_OFF) {
|
||||||
if (this.isSameDay) {
|
if (this.isSameDay) {
|
||||||
return null;
|
return this.sameDayDropOffDisclaimerText;
|
||||||
} else if (this.selectedTimeSlotId?.includes(RouteCodeFlags.ALL_DAY_DROP_OFF)) {
|
} else if (this.selectedTimeSlotId?.includes(RouteCodeFlags.ALL_DAY_DROP_OFF)) {
|
||||||
return this.dropoffDisclaimerText;
|
return this.dropoffDisclaimerText;
|
||||||
} else if (this.selectedTimeSlotId?.includes(RouteCodeFlags.OVERNIGHT_DROP_OFF)) {
|
} else if (this.selectedTimeSlotId?.includes(RouteCodeFlags.OVERNIGHT_DROP_OFF)) {
|
||||||
|
|
@ -160,15 +197,24 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
dropOffDurationText() {
|
dropOffDurationText() {
|
||||||
return this.getCmsContent(this.dropoffCmsWidgetName, "SubheaderText");
|
return this.getCmsContent(this.dropoffCmsWidgetName, cmsWidgetFieldMappings.DURATION);
|
||||||
|
},
|
||||||
|
sameDayDropoffDurationText() {
|
||||||
|
return this.getCmsContent(
|
||||||
|
this.sameDayDropOffCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.DURATION
|
||||||
|
);
|
||||||
},
|
},
|
||||||
overnightDropoffDurationText() {
|
overnightDropoffDurationText() {
|
||||||
return this.getCmsContent(this.overnightDropOffCmsWidgetName, "SubheaderText");
|
return this.getCmsContent(
|
||||||
|
this.overnightDropOffCmsWidgetName,
|
||||||
|
cmsWidgetFieldMappings.DURATION
|
||||||
|
);
|
||||||
},
|
},
|
||||||
inshopDurationText() {
|
inshopDurationText() {
|
||||||
const inshopDurationTextWithoutTime = this.getCmsContent(
|
const inshopDurationTextWithoutTime = this.getCmsContent(
|
||||||
this.cmsWidgetName,
|
this.cmsWidgetName,
|
||||||
"SubheaderText"
|
cmsWidgetFieldMappings.DURATION
|
||||||
);
|
);
|
||||||
const inshopDurationTime = this.getDisplayTextForDurationLength(
|
const inshopDurationTime = this.getDisplayTextForDurationLength(
|
||||||
this.estimatedServiceMinutesMinimum,
|
this.estimatedServiceMinutesMinimum,
|
||||||
|
|
@ -185,15 +231,16 @@ export default {
|
||||||
if (this.selectedTimeSlotId?.includes(RouteCodeFlags.OVERNIGHT_DROP_OFF)) {
|
if (this.selectedTimeSlotId?.includes(RouteCodeFlags.OVERNIGHT_DROP_OFF)) {
|
||||||
return this.overnightDropoffDurationText;
|
return this.overnightDropoffDurationText;
|
||||||
} else if (this.selectedTimeSlotId?.includes(RouteCodeFlags.ALL_DAY_DROP_OFF)) {
|
} else if (this.selectedTimeSlotId?.includes(RouteCodeFlags.ALL_DAY_DROP_OFF)) {
|
||||||
return this.dropOffDurationText;
|
if (this.isSameDay) {
|
||||||
|
return this.sameDayDropoffDurationText;
|
||||||
|
} else {
|
||||||
|
return this.dropOffDurationText;
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
shouldShowDropoffDisclaimerText() {
|
|
||||||
return this.appointmentType === AppointmentTypeStrings.DROP_OFF && !this.isSameDay;
|
|
||||||
},
|
|
||||||
isSameDay() {
|
isSameDay() {
|
||||||
if (!this.dateAndTimeSlotData) {
|
if (!this.dateAndTimeSlotData) {
|
||||||
return false;
|
return false;
|
||||||
|
|
@ -202,7 +249,6 @@ export default {
|
||||||
const todaysDate = new Date().toISOString().split("T")[0];
|
const todaysDate = new Date().toISOString().split("T")[0];
|
||||||
return selectedDate === todaysDate;
|
return selectedDate === todaysDate;
|
||||||
},
|
},
|
||||||
|
|
||||||
dateSelectedReadableDate() {
|
dateSelectedReadableDate() {
|
||||||
if (!this.dateAndTimeSlotData) {
|
if (!this.dateAndTimeSlotData) {
|
||||||
return null;
|
return null;
|
||||||
|
|
@ -303,9 +349,14 @@ export default {
|
||||||
},
|
},
|
||||||
getAvailableTimeSlotsForDropOff(timeSlotsForSelectedDate) {
|
getAvailableTimeSlotsForDropOff(timeSlotsForSelectedDate) {
|
||||||
const availableTimeSlots = timeSlotsForSelectedDate.map((timeSlot) => {
|
const availableTimeSlots = timeSlotsForSelectedDate.map((timeSlot) => {
|
||||||
const buttonLabelValue = timeSlot.id.includes(RouteCodeFlags.OVERNIGHT_DROP_OFF)
|
let buttonLabelValue;
|
||||||
? this.overnightDropoffButtonText
|
if (timeSlot.id.includes(RouteCodeFlags.OVERNIGHT_DROP_OFF)) {
|
||||||
: this.dropoffButtonText;
|
buttonLabelValue = this.overnightDropoffButtonText;
|
||||||
|
} else if (this.isSameDay) {
|
||||||
|
buttonLabelValue = this.sameDayDropoffButtonText;
|
||||||
|
} else {
|
||||||
|
buttonLabelValue = this.dropoffButtonText;
|
||||||
|
}
|
||||||
return {
|
return {
|
||||||
value: timeSlot.id,
|
value: timeSlot.id,
|
||||||
buttonLabel: buttonLabelValue,
|
buttonLabel: buttonLabelValue,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue