@rango-dev/widget-embedded 0.36.1-next.2 → 0.36.1-next.4
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/components/Quote/Quote.d.ts.map +1 -1
- package/dist/components/Quote/Quote.types.d.ts +2 -0
- package/dist/components/Quote/Quote.types.d.ts.map +1 -1
- package/dist/components/Quote/QuoteCostDetails.d.ts.map +1 -1
- package/dist/components/Quote/QuoteCostDetails.styles.d.ts.map +1 -1
- package/dist/constants/quote.d.ts +2 -0
- package/dist/constants/quote.d.ts.map +1 -1
- package/dist/containers/ExpandedQuotes/ExpandedQuotes.styles.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/widget-embedded.build.json +1 -1
- package/package.json +3 -3
- package/src/components/Quote/Quote.tsx +22 -3
- package/src/components/Quote/Quote.types.ts +2 -0
- package/src/components/Quote/QuoteCostDetails.styles.ts +0 -1
- package/src/components/Quote/QuoteCostDetails.tsx +23 -4
- package/src/constants/quote.ts +2 -0
- package/src/containers/ExpandedQuotes/ExpandedQuotes.styles.ts +1 -0
- package/src/containers/ExpandedQuotes/ExpandedQuotes.tsx +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/widget-embedded",
|
|
3
|
-
"version": "0.36.1-next.
|
|
3
|
+
"version": "0.36.1-next.4",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/index.ts",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@rango-dev/queue-manager-rango-preset": "^0.40.1-next.1",
|
|
31
31
|
"@rango-dev/queue-manager-react": "^0.27.0",
|
|
32
32
|
"@rango-dev/signer-solana": "^0.35.0",
|
|
33
|
-
"@rango-dev/ui": "^0.42.1-next.
|
|
33
|
+
"@rango-dev/ui": "^0.42.1-next.3",
|
|
34
34
|
"@rango-dev/wallets-core": "^0.40.1-next.1",
|
|
35
35
|
"@rango-dev/wallets-react": "^0.26.1-next.1",
|
|
36
36
|
"@rango-dev/wallets-shared": "^0.40.1-next.1",
|
|
@@ -54,4 +54,4 @@
|
|
|
54
54
|
"publishConfig": {
|
|
55
55
|
"access": "public"
|
|
56
56
|
}
|
|
57
|
-
}
|
|
57
|
+
}
|
|
@@ -17,7 +17,11 @@ import {
|
|
|
17
17
|
import BigNumber from 'bignumber.js';
|
|
18
18
|
import React, { useRef, useState } from 'react';
|
|
19
19
|
|
|
20
|
-
import {
|
|
20
|
+
import {
|
|
21
|
+
GAS_FEE_MAX,
|
|
22
|
+
ROUTE_TIME_MAX,
|
|
23
|
+
SECONDS_IN_MINUTE,
|
|
24
|
+
} from '../../constants/quote';
|
|
21
25
|
import {
|
|
22
26
|
GAS_FEE_MAX_DECIMALS,
|
|
23
27
|
GAS_FEE_MIN_DECIMALS,
|
|
@@ -311,7 +315,8 @@ export function Quote(props: QuoteProps) {
|
|
|
311
315
|
const container = propContainer || getContainer();
|
|
312
316
|
const sortedQuoteTags = sortTags(props.quote.tags || []);
|
|
313
317
|
const showAllRoutesButton = !!onClickAllRoutes;
|
|
314
|
-
const
|
|
318
|
+
const totalDurationSeconds = totalArrivalTime(quote?.swaps);
|
|
319
|
+
const totalTime = roundedSecondsToString(totalDurationSeconds);
|
|
315
320
|
const totalFee = getTotalFeeInUsd(quote?.swaps ?? [], findToken);
|
|
316
321
|
const fee = numberToString(
|
|
317
322
|
totalFee,
|
|
@@ -320,6 +325,8 @@ export function Quote(props: QuoteProps) {
|
|
|
320
325
|
);
|
|
321
326
|
|
|
322
327
|
const feeWarning = totalFee.gte(new BigNumber(GAS_FEE_MAX));
|
|
328
|
+
const timeWarning =
|
|
329
|
+
totalDurationSeconds / SECONDS_IN_MINUTE >= ROUTE_TIME_MAX;
|
|
323
330
|
|
|
324
331
|
return fullExpandedMode ? (
|
|
325
332
|
<FullExpandedQuote
|
|
@@ -329,7 +336,18 @@ export function Quote(props: QuoteProps) {
|
|
|
329
336
|
tooltipContainer={getExpanded()}
|
|
330
337
|
steps={steps}
|
|
331
338
|
tags={sortedQuoteTags}
|
|
332
|
-
|
|
339
|
+
quoteCost={
|
|
340
|
+
<QuoteCostDetails
|
|
341
|
+
quote={quote}
|
|
342
|
+
fullExpandedMode
|
|
343
|
+
time={totalTime}
|
|
344
|
+
fee={fee}
|
|
345
|
+
feeWarning={feeWarning}
|
|
346
|
+
timeWarning={timeWarning}
|
|
347
|
+
showModalFee={showModalFee}
|
|
348
|
+
steps={numberOfSteps}
|
|
349
|
+
/>
|
|
350
|
+
}
|
|
333
351
|
percentageChange={percentageChange}
|
|
334
352
|
warningLevel={priceImpactWarningLevel}
|
|
335
353
|
outputPrice={{
|
|
@@ -368,6 +386,7 @@ export function Quote(props: QuoteProps) {
|
|
|
368
386
|
time={totalTime}
|
|
369
387
|
fee={fee}
|
|
370
388
|
feeWarning={feeWarning}
|
|
389
|
+
timeWarning={timeWarning}
|
|
371
390
|
showModalFee={showModalFee}
|
|
372
391
|
steps={numberOfSteps}
|
|
373
392
|
/>
|
|
@@ -21,7 +21,7 @@ import {
|
|
|
21
21
|
USD_VALUE_MAX_DECIMALS,
|
|
22
22
|
USD_VALUE_MIN_DECIMALS,
|
|
23
23
|
} from '../../constants/routing';
|
|
24
|
-
import { getContainer } from '../../utils/common';
|
|
24
|
+
import { getContainer, getExpanded } from '../../utils/common';
|
|
25
25
|
import { numberToString } from '../../utils/numbers';
|
|
26
26
|
import { getFeesGroup, getTotalFeesInUsd, getUsdFee } from '../../utils/swap';
|
|
27
27
|
import { WatermarkedModal } from '../common/WatermarkedModal';
|
|
@@ -57,9 +57,18 @@ const NonPayableFee = (props: { fee: BigNumber; label: string }) => {
|
|
|
57
57
|
export function QuoteCostDetails(props: QuoteCostDetailsProps) {
|
|
58
58
|
const [open, setOpen] = useState<boolean>(false);
|
|
59
59
|
const [openCollapse, setOpenCollapse] = useState<boolean>(false);
|
|
60
|
-
const {
|
|
60
|
+
const {
|
|
61
|
+
steps,
|
|
62
|
+
quote,
|
|
63
|
+
fee,
|
|
64
|
+
time,
|
|
65
|
+
feeWarning,
|
|
66
|
+
timeWarning,
|
|
67
|
+
showModalFee,
|
|
68
|
+
fullExpandedMode = false,
|
|
69
|
+
} = props;
|
|
61
70
|
const swaps = quote?.swaps ?? [];
|
|
62
|
-
const container = getContainer();
|
|
71
|
+
const container = fullExpandedMode ? getExpanded() : getContainer();
|
|
63
72
|
|
|
64
73
|
const feesGroup = getFeesGroup(swaps);
|
|
65
74
|
|
|
@@ -76,6 +85,7 @@ export function QuoteCostDetails(props: QuoteCostDetailsProps) {
|
|
|
76
85
|
}
|
|
77
86
|
fee={fee}
|
|
78
87
|
feeWarning={feeWarning}
|
|
88
|
+
timeWarning={timeWarning}
|
|
79
89
|
time={time}
|
|
80
90
|
steps={steps}
|
|
81
91
|
tooltipGas={showModalFee ? i18n.t('View more info') : undefined}
|
|
@@ -85,8 +95,17 @@ export function QuoteCostDetails(props: QuoteCostDetailsProps) {
|
|
|
85
95
|
<WatermarkedModal
|
|
86
96
|
container={container}
|
|
87
97
|
open={open}
|
|
98
|
+
anchor={fullExpandedMode ? 'center' : 'bottom'}
|
|
99
|
+
styles={{
|
|
100
|
+
container: {
|
|
101
|
+
maxWidth: fullExpandedMode ? '484px' : 'unset',
|
|
102
|
+
},
|
|
103
|
+
}}
|
|
88
104
|
header={
|
|
89
|
-
<ModalHeader
|
|
105
|
+
<ModalHeader
|
|
106
|
+
style={{
|
|
107
|
+
textAlign: fullExpandedMode ? 'left' : 'center',
|
|
108
|
+
}}>
|
|
90
109
|
<Typography variant="title" size="medium">
|
|
91
110
|
{i18n.t('Gas & Fee Explanation')}
|
|
92
111
|
</Typography>
|
package/src/constants/quote.ts
CHANGED