Merged in feat/SW-431-payment-flow (pull request #635)
Feat/SW-431 payment flow * feat(SW-431): Update mock hotel data * feat(SW-431): Added route handler and trpc routes * feat(SW-431): List payment methods and handle booking status and redirection * feat(SW-431): Updated booking page to poll for booking status * feat(SW-431): Updated create booking contract * feat(SW-431): small fix * fix(SW-431): Added intl string and sorted dictionaries * fix(SW-431): Changes from PR * fix(SW-431): fixes from PR * fix(SW-431): add todo comments * fix(SW-431): update schema prop Approved-by: Simon.Emanuelsson
This commit is contained in:
7
constants/booking.ts
Normal file
7
constants/booking.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export enum BookingStatusEnum {
|
||||
CreatedInOhip = "CreatedInOhip",
|
||||
PaymentRegistered = "PaymentRegistered",
|
||||
BookingCompleted = "BookingCompleted",
|
||||
}
|
||||
|
||||
export const BOOKING_CONFIRMATION_NUMBER = "bookingConfirmationNumber"
|
||||
@@ -28,4 +28,24 @@ export const selectHotelMap = {
|
||||
de: `${selectHotel.de}/map`,
|
||||
}
|
||||
|
||||
/** @type {import('@/types/routes').LangRoute} */
|
||||
export const payment = {
|
||||
en: `${hotelReservation.en}/payment`,
|
||||
sv: `${hotelReservation.sv}/betalning`,
|
||||
no: `${hotelReservation.no}/betaling`,
|
||||
fi: `${hotelReservation.fi}/maksu`,
|
||||
da: `${hotelReservation.da}/payment`,
|
||||
de: `${hotelReservation.de}/bezahlung`,
|
||||
}
|
||||
|
||||
/** @type {import('@/types/routes').LangRoute} */
|
||||
export const bookingConfirmation = {
|
||||
en: `${hotelReservation.en}/booking-confirmation`,
|
||||
sv: `${hotelReservation.sv}/bokningsbekraftelse`,
|
||||
no: `${hotelReservation.no}/booking-confirmation`,
|
||||
fi: `${hotelReservation.fi}/varausvahvistus`,
|
||||
da: `${hotelReservation.da}/booking-confirmation`,
|
||||
de: `${hotelReservation.de}/buchungsbesttigung`,
|
||||
}
|
||||
|
||||
export const bookingFlow = [...Object.values(hotelReservation)]
|
||||
|
||||
Reference in New Issue
Block a user