@rango-dev/widget-embedded 0.23.1-next.12 → 0.23.1-next.13
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/NoResult/NoResult.d.ts.map +1 -1
- package/dist/components/NoResult/NoResult.helpers.d.ts +8 -0
- package/dist/components/NoResult/NoResult.helpers.d.ts.map +1 -1
- package/dist/components/NoResult/NoResult.styles.d.ts +167 -1
- package/dist/components/NoResult/NoResult.styles.d.ts.map +1 -1
- package/dist/components/NoResult/NoResult.types.d.ts +1 -0
- package/dist/components/NoResult/NoResult.types.d.ts.map +1 -1
- package/dist/components/Quote/Quote.d.ts.map +1 -1
- package/dist/components/Quote/Quote.types.d.ts +1 -0
- package/dist/components/Quote/Quote.types.d.ts.map +1 -1
- package/dist/components/Quotes/Quotes.d.ts.map +1 -1
- package/dist/components/Quotes/Quotes.types.d.ts +1 -0
- package/dist/components/Quotes/Quotes.types.d.ts.map +1 -1
- package/dist/containers/ExpandedQuotes/ExpandedQuotes.d.ts.map +1 -1
- package/dist/containers/ExpandedQuotes/ExpandedQuotes.styles.d.ts +3 -1
- package/dist/containers/ExpandedQuotes/ExpandedQuotes.styles.d.ts.map +1 -1
- package/dist/containers/QuoteInfo/QuoteInfo.d.ts.map +1 -1
- package/dist/containers/QuoteInfo/QuoteInfo.types.d.ts +1 -0
- package/dist/containers/QuoteInfo/QuoteInfo.types.d.ts.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +3 -3
- package/dist/pages/Home.d.ts.map +1 -1
- package/dist/types/config.d.ts +3 -2
- package/dist/types/config.d.ts.map +1 -1
- package/dist/utils/configs.d.ts +2 -1
- package/dist/utils/configs.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/components/NoResult/NoResult.helpers.ts +13 -0
- package/src/components/NoResult/NoResult.styles.ts +19 -1
- package/src/components/NoResult/NoResult.tsx +27 -16
- package/src/components/NoResult/NoResult.types.ts +1 -0
- package/src/components/Quote/Quote.tsx +162 -145
- package/src/components/Quote/Quote.types.ts +1 -0
- package/src/components/Quotes/Quotes.tsx +17 -7
- package/src/components/Quotes/Quotes.types.ts +1 -0
- package/src/containers/ExpandedQuotes/ExpandedQuotes.styles.ts +12 -0
- package/src/containers/ExpandedQuotes/ExpandedQuotes.tsx +5 -0
- package/src/containers/QuoteInfo/QuoteInfo.tsx +2 -0
- package/src/containers/QuoteInfo/QuoteInfo.types.ts +1 -0
- package/src/pages/Home.tsx +2 -1
- package/src/types/config.ts +3 -2
- package/src/utils/configs.ts +5 -1
|
@@ -9,6 +9,7 @@ import { LayoutContainer } from '../../components/Layout/Layout.styles';
|
|
|
9
9
|
import { Quotes } from '../../components/Quotes';
|
|
10
10
|
import { SelectStrategy } from '../../components/Quotes/SelectStrategy';
|
|
11
11
|
import { WIDGET_UI_ID } from '../../constants';
|
|
12
|
+
import { useAppStore } from '../../store/AppStore';
|
|
12
13
|
import { getExpanded } from '../../utils/common';
|
|
13
14
|
|
|
14
15
|
import { Container, Content } from './ExpandedQuotes.styles';
|
|
@@ -19,6 +20,8 @@ export function ExpandedQuotes(props: PropTypes) {
|
|
|
19
20
|
const { fetch, loading, onClickOnQuote, onClickRefresh, isVisible } = props;
|
|
20
21
|
const [isDelayedVisible, setIsDelayedVisible] = useState(false);
|
|
21
22
|
const containerClass = isDelayedVisible ? '' : 'is-hidden';
|
|
23
|
+
const { config } = useAppStore();
|
|
24
|
+
const fullExpandedMode = config?.variant === 'full-expanded';
|
|
22
25
|
|
|
23
26
|
useEffect(() => {
|
|
24
27
|
let timeout: ReturnType<typeof setTimeout> | null = null;
|
|
@@ -43,6 +46,7 @@ export function ExpandedQuotes(props: PropTypes) {
|
|
|
43
46
|
|
|
44
47
|
return (
|
|
45
48
|
<Container
|
|
49
|
+
expandMode={config?.variant === 'full-expanded' ? 'full' : 'default'}
|
|
46
50
|
className={`${containerClass} ${LayoutContainer()}`}
|
|
47
51
|
id={WIDGET_UI_ID.EXPANDED_BOX_ID}>
|
|
48
52
|
<Header
|
|
@@ -64,6 +68,7 @@ export function ExpandedQuotes(props: PropTypes) {
|
|
|
64
68
|
hasSort={false}
|
|
65
69
|
loading={loading}
|
|
66
70
|
onClickOnQuote={onClickOnQuote}
|
|
71
|
+
fullExpandedMode={fullExpandedMode}
|
|
67
72
|
/>
|
|
68
73
|
</Content>
|
|
69
74
|
</Container>
|
|
@@ -25,6 +25,7 @@ export function QuoteInfo(props: PropTypes) {
|
|
|
25
25
|
showModalFee,
|
|
26
26
|
selected,
|
|
27
27
|
onClickAllRoutes,
|
|
28
|
+
fullExpandedMode = false,
|
|
28
29
|
} = props;
|
|
29
30
|
const { inputAmount, inputUsdValue, toToken } = useQuoteStore();
|
|
30
31
|
|
|
@@ -65,6 +66,7 @@ export function QuoteInfo(props: PropTypes) {
|
|
|
65
66
|
type={type}
|
|
66
67
|
expanded={expanded}
|
|
67
68
|
onClickAllRoutes={onClickAllRoutes}
|
|
69
|
+
fullExpandedMode={fullExpandedMode}
|
|
68
70
|
input={{
|
|
69
71
|
value: inputAmount,
|
|
70
72
|
usdValue: inputUsdValue?.toString() ?? '',
|
package/src/pages/Home.tsx
CHANGED
|
@@ -16,6 +16,7 @@ import { useAppStore } from '../store/AppStore';
|
|
|
16
16
|
import { useQuoteStore } from '../store/quote';
|
|
17
17
|
import { useUiStore } from '../store/ui';
|
|
18
18
|
import { useWalletsStore } from '../store/wallets';
|
|
19
|
+
import { isVarianExpandable } from '../utils/configs';
|
|
19
20
|
import { getSwapButtonState } from '../utils/swap';
|
|
20
21
|
|
|
21
22
|
const MainContainer = styled('div', {
|
|
@@ -67,7 +68,7 @@ export function Home() {
|
|
|
67
68
|
warning: quoteWarning,
|
|
68
69
|
needsToWarnEthOnPath,
|
|
69
70
|
});
|
|
70
|
-
const isExpandable = config?.variant
|
|
71
|
+
const isExpandable = isVarianExpandable(config?.variant) && !isMobile;
|
|
71
72
|
const hasInputs =
|
|
72
73
|
!!inputAmount && !!fromToken && !!toToken && inputAmount !== '0';
|
|
73
74
|
const fetchingQuote = hasInputs && fetchMetaStatus === 'success' && loading;
|
package/src/types/config.ts
CHANGED
|
@@ -3,7 +3,7 @@ import type { ProviderInterface } from '@rango-dev/wallets-react';
|
|
|
3
3
|
import type { WalletType } from '@rango-dev/wallets-shared';
|
|
4
4
|
import type { Asset } from 'rango-sdk';
|
|
5
5
|
|
|
6
|
-
export type WidgetVariant = 'default' | '
|
|
6
|
+
export type WidgetVariant = 'default' | 'expanded' | 'full-expanded';
|
|
7
7
|
|
|
8
8
|
/**
|
|
9
9
|
* The above type defines a set of optional color properties for a widget.
|
|
@@ -182,7 +182,8 @@ export type Features = Partial<
|
|
|
182
182
|
* - 'language': Visibility state for the language.
|
|
183
183
|
* - 'experimentalRoute': Enablement state for the experimental route.
|
|
184
184
|
* @property {WidgetVariant} variant
|
|
185
|
-
* If it is
|
|
185
|
+
* If it is expanded, multiple routes will show up on the home page;
|
|
186
|
+
* If it is full-expanded, multiple routes will show up on the home page with full routes;
|
|
186
187
|
* if not, you will need to go to a different page to see the suggested routes.
|
|
187
188
|
*/
|
|
188
189
|
|
package/src/utils/configs.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { Tokens } from '../types';
|
|
1
|
+
import type { Tokens, WidgetVariant } from '../types';
|
|
2
2
|
import type { Asset, BlockchainMeta, Token } from 'rango-sdk';
|
|
3
3
|
|
|
4
4
|
import { RANGO_PUBLIC_API_KEY } from '../constants';
|
|
@@ -79,3 +79,7 @@ export const isBlockchainExcludedInConfig = (
|
|
|
79
79
|
!blockchainsConfig.includes(blockchain.name)
|
|
80
80
|
);
|
|
81
81
|
};
|
|
82
|
+
|
|
83
|
+
export const isVarianExpandable = (variant?: WidgetVariant) => {
|
|
84
|
+
return variant === 'expanded' || variant === 'full-expanded';
|
|
85
|
+
};
|