@bytebrand/fe-ui-core 4.2.210 → 4.2.212
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/package.json +1 -1
- package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusCar.tsx +1 -1
- package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusSection.tsx +16 -16
- package/source/components/_common/Button/Button.tsx +4 -2
- package/source/components/_common/OfferRequestButtonWrapper/OfferRequestButtonWrapper.tsx +7 -3
package/package.json
CHANGED
|
@@ -105,7 +105,7 @@ const OrderStatusCar = ({
|
|
|
105
105
|
</div>
|
|
106
106
|
<div className={styles.requestId}>{request}</div>
|
|
107
107
|
<div className={styles.carPayment}>
|
|
108
|
-
{!!transformedDeliveryDate ? transformedDeliveryDate
|
|
108
|
+
{wonStatus === 'won' && !!transformedDeliveryDate ? transformedDeliveryDate
|
|
109
109
|
: <>
|
|
110
110
|
{t(`buyingType.${buyingType}`)},
|
|
111
111
|
{buyingType !== 'buy' && `${t('paybackPeriod', { paybackPeriod })},`}
|
package/source/components/UserDashboardPage/sections/OrderStatusSection/OrderStatusSection.tsx
CHANGED
|
@@ -44,23 +44,21 @@ const OrderStatusSection = ({
|
|
|
44
44
|
if (!!addressObj) {
|
|
45
45
|
Object.keys(addressObj).forEach((key) => {
|
|
46
46
|
switch (key) {
|
|
47
|
-
case '
|
|
48
|
-
case '
|
|
47
|
+
case 'firstname':
|
|
48
|
+
case 'lastname':
|
|
49
49
|
addressString = `${addressString} ${addressObj[key]}`;
|
|
50
50
|
break;
|
|
51
|
-
case '
|
|
52
|
-
case '
|
|
53
|
-
case '
|
|
54
|
-
case '
|
|
55
|
-
case 'deliveryZip':
|
|
51
|
+
case 'partner':
|
|
52
|
+
case 'street':
|
|
53
|
+
case 'zip':
|
|
54
|
+
case 'number':
|
|
56
55
|
if (!!addressString) {
|
|
57
56
|
addressString = `${addressString}, ${addressObj[key]}`;
|
|
58
57
|
} else {
|
|
59
58
|
addressString = `${addressString} ${addressObj[key]}`;
|
|
60
59
|
}
|
|
61
60
|
break;
|
|
62
|
-
case '
|
|
63
|
-
case 'deliveryCity':
|
|
61
|
+
case 'city':
|
|
64
62
|
addressString = `${addressString} ${addressObj[key]}`;
|
|
65
63
|
break;
|
|
66
64
|
default: addressString = `${addressString} ${addressObj[key]}`;
|
|
@@ -144,6 +142,7 @@ const OrderStatusSection = ({
|
|
|
144
142
|
request,
|
|
145
143
|
registration,
|
|
146
144
|
currentSalesPrice,
|
|
145
|
+
totalPrice,
|
|
147
146
|
deposit,
|
|
148
147
|
preparationCost,
|
|
149
148
|
licensePlateCost,
|
|
@@ -168,7 +167,7 @@ const OrderStatusSection = ({
|
|
|
168
167
|
const additionalOrderData = {
|
|
169
168
|
addressData: [
|
|
170
169
|
...customerAddress ? [{ label: t('MyOrderPage:billingAddress'), value: getTransformAddressToString(customerAddress) }] : [],
|
|
171
|
-
...deliveryAddress ? [{ label: t('MyOrderPage:vehicleDelivery'), value: getTransformAddressToString(deliveryAddress) }] : []
|
|
170
|
+
...deliveryAddress ? [{ label: t('MyOrderPage:vehicleDelivery'), value: selfPickup ? t('MyOrderPage:selfPickup') : getTransformAddressToString(deliveryAddress) }] : []
|
|
172
171
|
],
|
|
173
172
|
carPriceData: [
|
|
174
173
|
...currentSalesPrice ? [getDataPriceItem(currentSalesPriceWithWarranty, carPriceWithWarrantyTitle(warranty))] : [],
|
|
@@ -176,7 +175,7 @@ const OrderStatusSection = ({
|
|
|
176
175
|
...extrasSumCost ? [getDataPriceItem(extrasSumCost, t('MyOrderPage:extrasSumCost'))] : [],
|
|
177
176
|
...registrationCost && registration ? [getDataPriceItem(registrationCost, t('MyOrderPage:vehicleRegistration'))] : [],
|
|
178
177
|
...licensePlateCost && isLicensePlateFee ? [getDataPriceItem(licensePlateCost, t('MyOrderPage:licensePlates'))] : [],
|
|
179
|
-
|
|
178
|
+
...!!transportationCost && delivery ? [getDataPriceItem(transportationCost, t('MyOrderPage:delivery'))] : [],
|
|
180
179
|
...paymentProtectionInsuranceCost ? [getDataPriceItem(paymentProtectionInsuranceCost, t('MyOrderPage:paymentProtectionInsuranceCost'))]: [],
|
|
181
180
|
...firstRate ? [getDataPriceItem(firstRate, t('MyOrderPage:firstRate'))] : [],
|
|
182
181
|
...buyingType !== 'buy' ? [
|
|
@@ -191,7 +190,7 @@ const OrderStatusSection = ({
|
|
|
191
190
|
],
|
|
192
191
|
overallRate: {
|
|
193
192
|
label: t('MyOrderPage:yourOverallRate'),
|
|
194
|
-
value: buyingType === 'buy' ?
|
|
193
|
+
value: buyingType === 'buy' ? totalPrice : monthlyInstallment
|
|
195
194
|
}
|
|
196
195
|
};
|
|
197
196
|
|
|
@@ -225,10 +224,11 @@ const OrderStatusSection = ({
|
|
|
225
224
|
delivery
|
|
226
225
|
};
|
|
227
226
|
|
|
228
|
-
const title = <span>
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
227
|
+
const title = wonStatus === 'pending' ? <span>
|
|
228
|
+
{t('orderStatus.title')}:
|
|
229
|
+
<span className={styles.orderStatus}>{t(`orderStatus.${status}`)}</span>
|
|
230
|
+
</span>
|
|
231
|
+
: <span>{t('orderStatus.myOrder')}</span>;
|
|
232
232
|
|
|
233
233
|
return (
|
|
234
234
|
<DashboardSection key={index} title={title}>
|
|
@@ -15,6 +15,7 @@ export interface IButtonProps {
|
|
|
15
15
|
color?: variantColor;
|
|
16
16
|
children?: any;
|
|
17
17
|
variant?: variantType;
|
|
18
|
+
getRef?: (ref: HTMLButtonElement) => void;
|
|
18
19
|
|
|
19
20
|
disabled?: boolean;
|
|
20
21
|
loading?: boolean;
|
|
@@ -25,7 +26,7 @@ export interface IButtonProps {
|
|
|
25
26
|
onMouseLeave?: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
26
27
|
}
|
|
27
28
|
|
|
28
|
-
const Button: React.FC<IButtonProps> = ({ className, color, onClick, onMouseEnter, onMouseLeave, variant, loading, disabled, children }: IButtonProps) => {
|
|
29
|
+
const Button: React.FC<IButtonProps> = ({ getRef, className, color, onClick, onMouseEnter, onMouseLeave, variant, loading, disabled, children }: IButtonProps) => {
|
|
29
30
|
const onHandlerClick = (event: React.MouseEvent<HTMLButtonElement>) => {
|
|
30
31
|
event.stopPropagation();
|
|
31
32
|
event.nativeEvent.stopImmediatePropagation();
|
|
@@ -52,6 +53,7 @@ const Button: React.FC<IButtonProps> = ({ className, color, onClick, onMouseEnte
|
|
|
52
53
|
onClick: onHandlerClick,
|
|
53
54
|
onMouseEnter: onHandlerMouseEnter,
|
|
54
55
|
onMouseLeave: onHandlerMouseLeave,
|
|
56
|
+
ref:getRef,
|
|
55
57
|
disabled: disabled || loading
|
|
56
58
|
};
|
|
57
59
|
|
|
@@ -69,7 +71,7 @@ Button.defaultProps = {
|
|
|
69
71
|
buttonType: 'button',
|
|
70
72
|
|
|
71
73
|
onClick: () => { },
|
|
72
|
-
|
|
74
|
+
getRef: () => { },
|
|
73
75
|
onMouseEnter: () => { },
|
|
74
76
|
onMouseLeave: () => { }
|
|
75
77
|
};
|
|
@@ -23,13 +23,17 @@ const OfferRequestBtnWrapper: React.FunctionComponent<IOfferRequestButtonWrapper
|
|
|
23
23
|
const dealerId = _get(car, 'metaData.ownerId') || null;
|
|
24
24
|
const carId = _get(car, '_id', '');
|
|
25
25
|
const onAutoDeIdClick = () => {
|
|
26
|
-
btnEl.current
|
|
26
|
+
btnEl.current?.click();
|
|
27
27
|
};
|
|
28
28
|
|
|
29
29
|
const controlsContainerClassName = classnames(
|
|
30
30
|
styles.controlsContainer,
|
|
31
31
|
controlsClassContainer
|
|
32
32
|
);
|
|
33
|
+
|
|
34
|
+
const getRef = (ref: HTMLButtonElement): void => {
|
|
35
|
+
btnEl.current = ref;
|
|
36
|
+
};
|
|
33
37
|
return (
|
|
34
38
|
<>
|
|
35
39
|
<div className={controlsContainerClassName}>
|
|
@@ -42,7 +46,7 @@ const OfferRequestBtnWrapper: React.FunctionComponent<IOfferRequestButtonWrapper
|
|
|
42
46
|
isLoading: boolean,
|
|
43
47
|
isSale: boolean,
|
|
44
48
|
isAlternative: boolean
|
|
45
|
-
|
|
49
|
+
) => {
|
|
46
50
|
const { metaData } = car;
|
|
47
51
|
const isAlternativeType = !!metaData && !!metaData.type;
|
|
48
52
|
const offerButtonClassName = classnames(
|
|
@@ -63,10 +67,10 @@ const OfferRequestBtnWrapper: React.FunctionComponent<IOfferRequestButtonWrapper
|
|
|
63
67
|
|
|
64
68
|
return (
|
|
65
69
|
<StyledButton
|
|
66
|
-
refs={btnEl}
|
|
67
70
|
className={offerButtonClassName}
|
|
68
71
|
onClick={onClick}
|
|
69
72
|
loading={isLoading}
|
|
73
|
+
getRef={getRef}
|
|
70
74
|
>
|
|
71
75
|
{isOfferRequested
|
|
72
76
|
? null
|