@voyantjs/travel-composer-react 0.105.7 → 0.105.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/admin/admin-trip-composer-page.d.ts +6 -0
- package/dist/admin/admin-trip-composer-page.d.ts.map +1 -0
- package/dist/admin/admin-trip-composer-page.js +793 -0
- package/dist/admin/admin-trip-composer-panels.d.ts +180 -0
- package/dist/admin/admin-trip-composer-panels.d.ts.map +1 -0
- package/dist/admin/admin-trip-composer-panels.js +1372 -0
- package/dist/admin/index.d.ts +63 -0
- package/dist/admin/index.d.ts.map +1 -0
- package/dist/admin/index.js +119 -0
- package/dist/admin/pages/trip-detail-page.d.ts +10 -0
- package/dist/admin/pages/trip-detail-page.d.ts.map +1 -0
- package/dist/admin/pages/trip-detail-page.js +12 -0
- package/dist/admin/trip-component-display.d.ts +10 -0
- package/dist/admin/trip-component-display.d.ts.map +1 -0
- package/dist/admin/trip-component-display.js +137 -0
- package/dist/admin/trip-detail-host.d.ts +12 -0
- package/dist/admin/trip-detail-host.d.ts.map +1 -0
- package/dist/admin/trip-detail-host.js +257 -0
- package/dist/admin/trip-list-filters.d.ts +33 -0
- package/dist/admin/trip-list-filters.d.ts.map +1 -0
- package/dist/admin/trip-list-filters.js +94 -0
- package/dist/admin/trips-host.d.ts +15 -0
- package/dist/admin/trips-host.d.ts.map +1 -0
- package/dist/admin/trips-host.js +232 -0
- package/package.json +59 -3
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import { type Draft } from "@voyantjs/bookings-react/journey";
|
|
2
|
+
import { type PaymentScheduleValue, type PersonPickerValue, type VoucherPickerValue } from "@voyantjs/bookings-react/ui";
|
|
3
|
+
import type { AncillaryCatalog, AncillarySelection, CabinClass, FlightOffer } from "@voyantjs/flights/contract/types";
|
|
4
|
+
import type { Trip, TripComponent } from "@voyantjs/travel-composer";
|
|
5
|
+
import * as React from "react";
|
|
6
|
+
export type PendingVerticalKind = "product" | "stay" | "flight" | "cruise" | "manual";
|
|
7
|
+
type CatalogPendingFields = {
|
|
8
|
+
localId: string;
|
|
9
|
+
catalogEntityId: string | null;
|
|
10
|
+
catalogEntityName: string | null;
|
|
11
|
+
catalogSourceKind: string | null;
|
|
12
|
+
catalogSourceConnectionId: string | null;
|
|
13
|
+
catalogSourceRef: string | null;
|
|
14
|
+
catalogThumbnailUrl: string | null;
|
|
15
|
+
bookingDraft: Draft | null;
|
|
16
|
+
startsAt: string;
|
|
17
|
+
endsAt: string;
|
|
18
|
+
commitError: string | null;
|
|
19
|
+
};
|
|
20
|
+
export type PendingComponent = ({
|
|
21
|
+
kind: "product";
|
|
22
|
+
} & CatalogPendingFields) | ({
|
|
23
|
+
kind: "stay";
|
|
24
|
+
} & CatalogPendingFields) | {
|
|
25
|
+
kind: "flight";
|
|
26
|
+
localId: string;
|
|
27
|
+
tripType: "one_way" | "round_trip";
|
|
28
|
+
origin: string | null;
|
|
29
|
+
destination: string | null;
|
|
30
|
+
departDate: string;
|
|
31
|
+
returnDate: string;
|
|
32
|
+
cabin: CabinClass;
|
|
33
|
+
selectedOffer: FlightOffer | null;
|
|
34
|
+
ancillaryCatalog: AncillaryCatalog | null;
|
|
35
|
+
fareBundlePicks: NonNullable<AncillarySelection["fareBundle"]>;
|
|
36
|
+
baggagePicks: NonNullable<AncillarySelection["baggage"]>;
|
|
37
|
+
assistancePicks: NonNullable<AncillarySelection["assistance"]>;
|
|
38
|
+
extrasPicks: NonNullable<AncillarySelection["extras"]>;
|
|
39
|
+
sameFareForAllPassengers: boolean;
|
|
40
|
+
sameBaggageBothDirections: boolean;
|
|
41
|
+
commitError: string | null;
|
|
42
|
+
} | {
|
|
43
|
+
kind: "cruise";
|
|
44
|
+
localId: string;
|
|
45
|
+
description: string;
|
|
46
|
+
cabin: string;
|
|
47
|
+
embarkationDate: string;
|
|
48
|
+
estimatedAmount: string;
|
|
49
|
+
commitError: string | null;
|
|
50
|
+
} | {
|
|
51
|
+
kind: "manual";
|
|
52
|
+
localId: string;
|
|
53
|
+
name: string;
|
|
54
|
+
description: string;
|
|
55
|
+
currency: string;
|
|
56
|
+
subtotalCents: number | null;
|
|
57
|
+
taxRatePct: string;
|
|
58
|
+
startsAt: string;
|
|
59
|
+
endsAt: string;
|
|
60
|
+
commitError: string | null;
|
|
61
|
+
};
|
|
62
|
+
export declare function newPendingComponent(kind: PendingVerticalKind): PendingComponent;
|
|
63
|
+
export declare function computePlaceholderTotals(subtotalCents: number | null, taxRatePct: string): {
|
|
64
|
+
subtotal: number;
|
|
65
|
+
tax: number;
|
|
66
|
+
total: number;
|
|
67
|
+
};
|
|
68
|
+
export declare function Section({ title, description, action, children, className, }: {
|
|
69
|
+
title?: string;
|
|
70
|
+
description?: string;
|
|
71
|
+
action?: React.ReactNode;
|
|
72
|
+
children: React.ReactNode;
|
|
73
|
+
className?: string;
|
|
74
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
75
|
+
export declare function Field({ label, className, children, }: {
|
|
76
|
+
label: string;
|
|
77
|
+
className?: string;
|
|
78
|
+
children: React.ReactNode;
|
|
79
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
80
|
+
export declare function StatusAlert({ title, message, tone, }: {
|
|
81
|
+
title: string;
|
|
82
|
+
message: string;
|
|
83
|
+
tone?: "error";
|
|
84
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
85
|
+
export declare function AddComponentMenu({ onAdd, disabled, }: {
|
|
86
|
+
onAdd(kind: PendingVerticalKind): void;
|
|
87
|
+
disabled?: boolean;
|
|
88
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
89
|
+
export declare function PendingComponentCard({ pending, onChange, onRemove, onCommit, committing, travelers, }: {
|
|
90
|
+
pending: PendingComponent;
|
|
91
|
+
onChange(next: PendingComponent): void;
|
|
92
|
+
onRemove(): void;
|
|
93
|
+
onCommit(): void;
|
|
94
|
+
committing: boolean;
|
|
95
|
+
travelers: TripTraveler[];
|
|
96
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
97
|
+
interface FlightPricingBreakdown {
|
|
98
|
+
currency: string;
|
|
99
|
+
subtotalAmountCents: number;
|
|
100
|
+
taxAmountCents: number;
|
|
101
|
+
ancillaryAmountCents: number;
|
|
102
|
+
totalAmountCents: number;
|
|
103
|
+
}
|
|
104
|
+
export declare function flightPricingFromPending(pending: Extract<PendingComponent, {
|
|
105
|
+
kind: "flight";
|
|
106
|
+
}>): FlightPricingBreakdown;
|
|
107
|
+
export declare function pendingComponentIsValid(pending: PendingComponent): boolean;
|
|
108
|
+
export declare function ComponentsEmpty(): import("react/jsx-runtime").JSX.Element;
|
|
109
|
+
export type TravelerCategory = "adult" | "child" | "infant";
|
|
110
|
+
export type TripTravelerRole = "lead" | TravelerCategory;
|
|
111
|
+
export interface TripTraveler {
|
|
112
|
+
localId: string;
|
|
113
|
+
personId: string | null;
|
|
114
|
+
firstName: string;
|
|
115
|
+
lastName: string;
|
|
116
|
+
email: string;
|
|
117
|
+
dateOfBirth: string | null;
|
|
118
|
+
role: TripTravelerRole;
|
|
119
|
+
}
|
|
120
|
+
export declare function newTripTraveler(): TripTraveler;
|
|
121
|
+
export declare function TripTravelersSection({ value, onChange, billingPersonId, }: {
|
|
122
|
+
value: TripTraveler[];
|
|
123
|
+
onChange(next: TripTraveler[]): void;
|
|
124
|
+
billingPersonId?: string | null;
|
|
125
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
126
|
+
export declare function CommittedComponentCard({ component, selectable, selected, onSelectedChange, onRemove, removePending, bookingSetupEditable, bookingSetupSaving, onBookingSetupChange, }: {
|
|
127
|
+
component: TripComponent;
|
|
128
|
+
index: number;
|
|
129
|
+
selectable?: boolean;
|
|
130
|
+
selected?: boolean;
|
|
131
|
+
onSelectedChange?: (checked: boolean) => void;
|
|
132
|
+
onRemove?: () => void;
|
|
133
|
+
removePending?: boolean;
|
|
134
|
+
bookingSetupEditable?: boolean;
|
|
135
|
+
bookingSetupSaving?: boolean;
|
|
136
|
+
onBookingSetupChange?: (component: TripComponent, setup: ComponentBookingSetup) => void;
|
|
137
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
138
|
+
export interface ComponentBookingSetup {
|
|
139
|
+
paymentSchedule: PaymentScheduleValue;
|
|
140
|
+
generateContractDocument: boolean;
|
|
141
|
+
generateInvoiceDocument: boolean;
|
|
142
|
+
}
|
|
143
|
+
export declare function componentBookingSetupFor(component: TripComponent): ComponentBookingSetup;
|
|
144
|
+
export declare function TripPreviewRail({ trip, pendingCount, travelers, billing, billingPersonId, voucher, onVoucherChange, paymentCurrency, }: {
|
|
145
|
+
trip: Trip | null;
|
|
146
|
+
pendingCount: number;
|
|
147
|
+
travelers: TripTraveler[];
|
|
148
|
+
billing: PersonPickerValue;
|
|
149
|
+
billingPersonId?: string | null;
|
|
150
|
+
voucher: VoucherPickerValue;
|
|
151
|
+
onVoucherChange(value: VoucherPickerValue): void;
|
|
152
|
+
paymentCurrency: string;
|
|
153
|
+
}): import("react/jsx-runtime").JSX.Element;
|
|
154
|
+
export declare function PrimaryAction({ status, componentCount, isBusy, pricePending, reservePending, onReserve, }: {
|
|
155
|
+
status: string | undefined;
|
|
156
|
+
componentCount: number;
|
|
157
|
+
isBusy: boolean;
|
|
158
|
+
pricePending: boolean;
|
|
159
|
+
reservePending: boolean;
|
|
160
|
+
onReserve(): void;
|
|
161
|
+
}): import("react/jsx-runtime").JSX.Element | null;
|
|
162
|
+
export declare function readComponentSchedule(component: TripComponent): {
|
|
163
|
+
start: string | null;
|
|
164
|
+
end: string | null;
|
|
165
|
+
};
|
|
166
|
+
export declare function formatScheduleLabel(component: TripComponent): string | null;
|
|
167
|
+
export declare function sortComponentsBySchedule(components: TripComponent[]): TripComponent[];
|
|
168
|
+
export declare function readPendingSchedule(pending: PendingComponent): {
|
|
169
|
+
start: string | null;
|
|
170
|
+
end: string | null;
|
|
171
|
+
};
|
|
172
|
+
export declare function findOverlappingComponent(pending: PendingComponent, committed: TripComponent[]): TripComponent | null;
|
|
173
|
+
export declare function componentTitleFor(component: TripComponent, resolvedEntityName?: string | null): string;
|
|
174
|
+
export declare function componentOptionSummaryFor(component: TripComponent): string | null;
|
|
175
|
+
export declare function componentThumbnailFor(component: TripComponent): string | null;
|
|
176
|
+
export declare function componentReferenceLabelFor(component: TripComponent): string;
|
|
177
|
+
export declare function formatDateTime(iso: string): string;
|
|
178
|
+
export declare function formatMoney(amountCents: number | null | undefined, currencyCode: string | null | undefined): string;
|
|
179
|
+
export {};
|
|
180
|
+
//# sourceMappingURL=admin-trip-composer-panels.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"admin-trip-composer-panels.d.ts","sourceRoot":"","sources":["../../src/admin/admin-trip-composer-panels.tsx"],"names":[],"mappings":"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"}
|