feat/SW-415: Added select-rate to hotelReservation
This commit is contained in:
@@ -42,3 +42,4 @@ GOOGLE_STATIC_MAP_SIGNATURE_SECRET="test"
|
|||||||
GOOGLE_STATIC_MAP_ID="test"
|
GOOGLE_STATIC_MAP_ID="test"
|
||||||
GOOGLE_DYNAMIC_MAP_ID="test"
|
GOOGLE_DYNAMIC_MAP_ID="test"
|
||||||
HIDE_FOR_NEXT_RELEASE="true"
|
HIDE_FOR_NEXT_RELEASE="true"
|
||||||
|
SALESFORCE_PREFERENCE_BASE_URL="test"
|
||||||
|
|||||||
@@ -7,13 +7,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
.content {
|
||||||
max-width: 1134px;
|
max-width: 1434px;
|
||||||
margin-top: var(--Spacing-x5);
|
margin-top: var(--Spacing-x5);
|
||||||
margin-left: auto;
|
margin-left: auto;
|
||||||
margin-right: auto;
|
margin-right: auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
gap: var(--Spacing-x7);
|
gap: var(--Spacing-x7);
|
||||||
|
padding: var(--Spacing-x2);
|
||||||
}
|
}
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
|
|||||||
@@ -31,6 +31,7 @@
|
|||||||
|
|
||||||
.card img {
|
.card img {
|
||||||
max-width: 100%;
|
max-width: 100%;
|
||||||
aspect-ratio: 1.5;
|
aspect-ratio: 16/9;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
|
border-radius: var(--Corner-radius-Medium) var(--Corner-radius-Medium) 0 0;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,6 +18,16 @@ export const selectHotel = {
|
|||||||
de: `${hotelReservation.de}/select-hotel`,
|
de: `${hotelReservation.de}/select-hotel`,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO: Translate paths
|
||||||
|
export const selectRate = {
|
||||||
|
en: `${hotelReservation.en}/select-rate`,
|
||||||
|
sv: `${hotelReservation.sv}/select-rate`,
|
||||||
|
no: `${hotelReservation.no}/select-rate`,
|
||||||
|
fi: `${hotelReservation.fi}/select-rate`,
|
||||||
|
da: `${hotelReservation.da}/select-rate`,
|
||||||
|
de: `${hotelReservation.de}/select-rate`,
|
||||||
|
}
|
||||||
|
|
||||||
// TODO: Translate paths
|
// TODO: Translate paths
|
||||||
export const selectBed = {
|
export const selectBed = {
|
||||||
en: `${hotelReservation.en}/select-bed`,
|
en: `${hotelReservation.en}/select-bed`,
|
||||||
@@ -95,4 +105,5 @@ export const bookingFlow = [
|
|||||||
...Object.values(details),
|
...Object.values(details),
|
||||||
...Object.values(payments),
|
...Object.values(payments),
|
||||||
...Object.values(selectHotelMap),
|
...Object.values(selectHotelMap),
|
||||||
|
...Object.values(selectRate),
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import { findLang } from "@/utils/languages"
|
|||||||
export const middleware: NextMiddleware = async (request, event) => {
|
export const middleware: NextMiddleware = async (request, event) => {
|
||||||
const headers = getDefaultRequestHeaders(request)
|
const headers = getDefaultRequestHeaders(request)
|
||||||
const lang = findLang(request.nextUrl.pathname)
|
const lang = findLang(request.nextUrl.pathname)
|
||||||
|
|
||||||
if (!lang) {
|
if (!lang) {
|
||||||
// Lang is required for all our middleware.
|
// Lang is required for all our middleware.
|
||||||
// Without it we shortcircuit early.
|
// Without it we shortcircuit early.
|
||||||
|
|||||||
Reference in New Issue
Block a user