-
Notifications
You must be signed in to change notification settings - Fork 374
/
Copy pathTransactionPage.js
441 lines (406 loc) · 14 KB
/
TransactionPage.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
import React from 'react';
import { array, arrayOf, bool, func, object, oneOf, shape, string, number } from 'prop-types';
import { compose } from 'redux';
import { connect } from 'react-redux';
import { withRouter } from 'react-router-dom';
import classNames from 'classnames';
import { FormattedMessage, intlShape, injectIntl } from '../../util/reactIntl';
import { createResourceLocatorString, findRouteByRouteName } from '../../util/routes';
import routeConfiguration from '../../routeConfiguration';
import { propTypes } from '../../util/types';
import { ensureListing, ensureTransaction } from '../../util/data';
import { timestampToDate, calculateQuantityFromHours } from '../../util/dates';
import { createSlug } from '../../util/urlHelpers';
import { txIsPaymentPending } from '../../util/transaction';
import { getMarketplaceEntities } from '../../ducks/marketplaceData.duck';
import { isScrollingDisabled, manageDisableScrolling } from '../../ducks/UI.duck';
import { initializeCardPaymentData } from '../../ducks/stripe.duck.js';
import {
NamedRedirect,
TransactionPanel,
Page,
LayoutSingleColumn,
LayoutWrapperTopbar,
LayoutWrapperMain,
LayoutWrapperFooter,
Footer,
} from '../../components';
import { TopbarContainer } from '../../containers';
import {
acceptSale,
declineSale,
sendMessage,
sendReview,
fetchMoreMessages,
fetchTimeSlots,
fetchTransactionLineItems,
} from './TransactionPage.duck';
import css from './TransactionPage.module.css';
const PROVIDER = 'provider';
const CUSTOMER = 'customer';
// TransactionPage handles data loading for Sale and Order views to transaction pages in Inbox.
export const TransactionPageComponent = props => {
const {
currentUser,
initialMessageFailedToTransaction,
savePaymentMethodFailed,
fetchMessagesError,
fetchMessagesInProgress,
totalMessagePages,
oldestMessagePageFetched,
fetchTransactionError,
history,
intl,
messages,
onFetchTimeSlots,
onManageDisableScrolling,
onSendMessage,
onSendReview,
onShowMoreMessages,
params,
scrollingDisabled,
sendMessageError,
sendMessageInProgress,
sendReviewError,
sendReviewInProgress,
transaction,
transactionRole,
acceptInProgress,
acceptSaleError,
declineInProgress,
declineSaleError,
onAcceptSale,
onDeclineSale,
monthlyTimeSlots,
processTransitions,
callSetInitialValues,
onInitializeCardPaymentData,
onFetchTransactionLineItems,
lineItems,
fetchLineItemsInProgress,
fetchLineItemsError,
} = props;
const currentTransaction = ensureTransaction(transaction);
const currentListing = ensureListing(currentTransaction.listing);
const isProviderRole = transactionRole === PROVIDER;
const isCustomerRole = transactionRole === CUSTOMER;
const redirectToCheckoutPageWithInitialValues = (initialValues, listing) => {
const routes = routeConfiguration();
// Customize checkout page state with current listing and selected bookingDates
const { setInitialValues } = findRouteByRouteName('CheckoutPage', routes);
callSetInitialValues(setInitialValues, initialValues);
// Clear previous Stripe errors from store if there is any
onInitializeCardPaymentData();
// Redirect to CheckoutPage
history.push(
createResourceLocatorString(
'CheckoutPage',
routes,
{ id: currentListing.id.uuid, slug: createSlug(currentListing.attributes.title) },
{}
)
);
};
// If payment is pending, redirect to CheckoutPage
if (
txIsPaymentPending(currentTransaction) &&
isCustomerRole &&
currentTransaction.attributes.lineItems
) {
const currentBooking = ensureListing(currentTransaction.booking);
const initialValues = {
listing: currentListing,
// Transaction with payment pending should be passed to CheckoutPage
transaction: currentTransaction,
// Original bookingData content is not available,
// but it is already used since booking is created.
// (E.g. quantity is used when booking is created.)
bookingData: {},
bookingDates: {
bookingStart: currentBooking.attributes.start,
bookingEnd: currentBooking.attributes.end,
},
};
redirectToCheckoutPageWithInitialValues(initialValues, currentListing);
}
// Customer can create a booking, if the tx is in "enquiry" state.
const handleSubmitBookingRequest = values => {
const { bookingStartTime, bookingEndTime, ...restOfValues } = values;
const bookingStart = timestampToDate(bookingStartTime);
const bookingEnd = timestampToDate(bookingEndTime);
const bookingData = {
quantity: calculateQuantityFromHours(bookingStart, bookingEnd),
...restOfValues,
};
const initialValues = {
listing: currentListing,
// enquired transaction should be passed to CheckoutPage
transaction: currentTransaction,
bookingData,
bookingDates: {
bookingStart,
bookingEnd,
},
confirmPaymentError: null,
};
redirectToCheckoutPageWithInitialValues(initialValues, currentListing);
};
const deletedListingTitle = intl.formatMessage({
id: 'TransactionPage.deletedListing',
});
const listingTitle = currentListing.attributes.deleted
? deletedListingTitle
: currentListing.attributes.title;
// Redirect users with someone else's direct link to their own inbox/sales or inbox/orders page.
const isDataAvailable =
currentUser &&
currentTransaction.id &&
currentTransaction.id.uuid === params.id &&
currentTransaction.attributes.lineItems &&
currentTransaction.customer &&
currentTransaction.provider &&
!fetchTransactionError;
const isOwnSale =
isDataAvailable &&
isProviderRole &&
currentUser.id.uuid === currentTransaction.provider.id.uuid;
const isOwnOrder =
isDataAvailable &&
isCustomerRole &&
currentUser.id.uuid === currentTransaction.customer.id.uuid;
if (isDataAvailable && isProviderRole && !isOwnSale) {
// eslint-disable-next-line no-console
console.error('Tried to access a sale that was not owned by the current user');
return <NamedRedirect name="InboxPage" params={{ tab: 'sales' }} />;
} else if (isDataAvailable && isCustomerRole && !isOwnOrder) {
// eslint-disable-next-line no-console
console.error('Tried to access an order that was not owned by the current user');
return <NamedRedirect name="InboxPage" params={{ tab: 'orders' }} />;
}
const detailsClassName = classNames(css.tabContent, css.tabContentVisible);
const fetchErrorMessage = isCustomerRole
? 'TransactionPage.fetchOrderFailed'
: 'TransactionPage.fetchSaleFailed';
const loadingMessage = isCustomerRole
? 'TransactionPage.loadingOrderData'
: 'TransactionPage.loadingSaleData';
const loadingOrFailedFetching = fetchTransactionError ? (
<p className={css.error}>
<FormattedMessage id={`${fetchErrorMessage}`} />
</p>
) : (
<p className={css.loading}>
<FormattedMessage id={`${loadingMessage}`} />
</p>
);
const initialMessageFailed = !!(
initialMessageFailedToTransaction &&
currentTransaction.id &&
initialMessageFailedToTransaction.uuid === currentTransaction.id.uuid
);
// TransactionPanel is presentational component
// that currently handles showing everything inside layout's main view area.
const panel = isDataAvailable ? (
<TransactionPanel
className={detailsClassName}
currentUser={currentUser}
transaction={currentTransaction}
fetchMessagesInProgress={fetchMessagesInProgress}
totalMessagePages={totalMessagePages}
oldestMessagePageFetched={oldestMessagePageFetched}
messages={messages}
initialMessageFailed={initialMessageFailed}
savePaymentMethodFailed={savePaymentMethodFailed}
fetchMessagesError={fetchMessagesError}
sendMessageInProgress={sendMessageInProgress}
sendMessageError={sendMessageError}
sendReviewInProgress={sendReviewInProgress}
sendReviewError={sendReviewError}
onFetchTimeSlots={onFetchTimeSlots}
onManageDisableScrolling={onManageDisableScrolling}
onShowMoreMessages={onShowMoreMessages}
onSendMessage={onSendMessage}
onSendReview={onSendReview}
transactionRole={transactionRole}
onAcceptSale={onAcceptSale}
onDeclineSale={onDeclineSale}
acceptInProgress={acceptInProgress}
declineInProgress={declineInProgress}
acceptSaleError={acceptSaleError}
declineSaleError={declineSaleError}
nextTransitions={processTransitions}
onSubmitBookingRequest={handleSubmitBookingRequest}
monthlyTimeSlots={monthlyTimeSlots}
onFetchTransactionLineItems={onFetchTransactionLineItems}
lineItems={lineItems}
fetchLineItemsInProgress={fetchLineItemsInProgress}
fetchLineItemsError={fetchLineItemsError}
/>
) : (
loadingOrFailedFetching
);
return (
<Page
title={intl.formatMessage({ id: 'TransactionPage.title' }, { title: listingTitle })}
scrollingDisabled={scrollingDisabled}
>
<LayoutSingleColumn>
<LayoutWrapperTopbar>
<TopbarContainer />
</LayoutWrapperTopbar>
<LayoutWrapperMain>
<div className={css.root}>{panel}</div>
</LayoutWrapperMain>
<LayoutWrapperFooter className={css.footer}>
<Footer />
</LayoutWrapperFooter>
</LayoutSingleColumn>
</Page>
);
};
TransactionPageComponent.defaultProps = {
currentUser: null,
fetchTransactionError: null,
acceptSaleError: null,
declineSaleError: null,
transaction: null,
fetchMessagesError: null,
initialMessageFailedToTransaction: null,
savePaymentMethodFailed: false,
sendMessageError: null,
monthlyTimeSlots: null,
lineItems: null,
fetchLineItemsError: null,
};
TransactionPageComponent.propTypes = {
params: shape({ id: string }).isRequired,
transactionRole: oneOf([PROVIDER, CUSTOMER]).isRequired,
currentUser: propTypes.currentUser,
fetchTransactionError: propTypes.error,
acceptSaleError: propTypes.error,
declineSaleError: propTypes.error,
acceptInProgress: bool.isRequired,
declineInProgress: bool.isRequired,
onAcceptSale: func.isRequired,
onDeclineSale: func.isRequired,
scrollingDisabled: bool.isRequired,
transaction: propTypes.transaction,
fetchMessagesError: propTypes.error,
totalMessagePages: number.isRequired,
oldestMessagePageFetched: number.isRequired,
messages: arrayOf(propTypes.message).isRequired,
initialMessageFailedToTransaction: propTypes.uuid,
savePaymentMethodFailed: bool,
sendMessageInProgress: bool.isRequired,
sendMessageError: propTypes.error,
onShowMoreMessages: func.isRequired,
onSendMessage: func.isRequired,
onFetchTimeSlots: func.isRequired,
monthlyTimeSlots: object,
// monthlyTimeSlots could be something like:
// monthlyTimeSlots: {
// '2019-11': {
// timeSlots: [],
// fetchTimeSlotsInProgress: false,
// fetchTimeSlotsError: null,
// }
// }
callSetInitialValues: func.isRequired,
onInitializeCardPaymentData: func.isRequired,
onFetchTransactionLineItems: func.isRequired,
// line items
lineItems: array,
fetchLineItemsInProgress: bool.isRequired,
fetchLineItemsError: propTypes.error,
// from withRouter
history: shape({
push: func.isRequired,
}).isRequired,
location: shape({
search: string,
}).isRequired,
// from injectIntl
intl: intlShape.isRequired,
};
const mapStateToProps = state => {
const {
fetchTransactionError,
acceptSaleError,
declineSaleError,
acceptInProgress,
declineInProgress,
transactionRef,
fetchMessagesInProgress,
fetchMessagesError,
totalMessagePages,
oldestMessagePageFetched,
messages,
initialMessageFailedToTransaction,
savePaymentMethodFailed,
sendMessageInProgress,
sendMessageError,
sendReviewInProgress,
sendReviewError,
monthlyTimeSlots,
processTransitions,
lineItems,
fetchLineItemsInProgress,
fetchLineItemsError,
} = state.TransactionPage;
const { currentUser } = state.user;
const transactions = getMarketplaceEntities(state, transactionRef ? [transactionRef] : []);
const transaction = transactions.length > 0 ? transactions[0] : null;
return {
currentUser,
fetchTransactionError,
acceptSaleError,
declineSaleError,
acceptInProgress,
declineInProgress,
scrollingDisabled: isScrollingDisabled(state),
transaction,
fetchMessagesInProgress,
fetchMessagesError,
totalMessagePages,
oldestMessagePageFetched,
messages,
initialMessageFailedToTransaction,
savePaymentMethodFailed,
sendMessageInProgress,
sendMessageError,
sendReviewInProgress,
sendReviewError,
monthlyTimeSlots,
processTransitions,
lineItems,
fetchLineItemsInProgress,
fetchLineItemsError,
};
};
const mapDispatchToProps = dispatch => {
return {
onAcceptSale: transactionId => dispatch(acceptSale(transactionId)),
onDeclineSale: transactionId => dispatch(declineSale(transactionId)),
onShowMoreMessages: txId => dispatch(fetchMoreMessages(txId)),
onSendMessage: (txId, message) => dispatch(sendMessage(txId, message)),
onManageDisableScrolling: (componentId, disableScrolling) =>
dispatch(manageDisableScrolling(componentId, disableScrolling)),
onSendReview: (role, tx, reviewRating, reviewContent) =>
dispatch(sendReview(role, tx, reviewRating, reviewContent)),
callSetInitialValues: (setInitialValues, values) => dispatch(setInitialValues(values)),
onInitializeCardPaymentData: () => dispatch(initializeCardPaymentData()),
onFetchTimeSlots: (listingId, start, end, timeZone) =>
dispatch(fetchTimeSlots(listingId, start, end, timeZone)),
onFetchTransactionLineItems: (bookingData, listingId, isOwnListing) =>
dispatch(fetchTransactionLineItems(bookingData, listingId, isOwnListing)),
};
};
const TransactionPage = compose(
withRouter,
connect(
mapStateToProps,
mapDispatchToProps
),
injectIntl
)(TransactionPageComponent);
export default TransactionPage;