You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
131 lines
2.5 KiB
131 lines
2.5 KiB
import React from 'react';
|
|
import { MAINNET_CHAIN_ID } from '../../../../shared/constants/network';
|
|
import FeeCard from './fee-card';
|
|
|
|
const containerStyle = {
|
|
width: '300px',
|
|
};
|
|
|
|
export default {
|
|
title: 'Pages/Swaps/FeeCard',
|
|
id: __filename,
|
|
component: FeeCard,
|
|
argTypes: {
|
|
primaryFee: {
|
|
control: {
|
|
type: 'text',
|
|
},
|
|
},
|
|
primaryMaxFee: {
|
|
control: {
|
|
type: 'text',
|
|
},
|
|
},
|
|
secondaryFee: {
|
|
control: {
|
|
type: 'text',
|
|
},
|
|
},
|
|
secondaryMaxFee: {
|
|
control: {
|
|
type: 'text',
|
|
},
|
|
},
|
|
onFeeCardMaxRowClick: {
|
|
action: 'Clicked max fee row edit link',
|
|
},
|
|
hideTokenApprovalRow: {
|
|
control: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
tokenApprovalSourceTokenSymbol: {
|
|
control: {
|
|
type: 'text',
|
|
},
|
|
},
|
|
onTokenApprovalClick: {
|
|
action: 'Clicked on token approval',
|
|
},
|
|
metaMaskFee: {
|
|
control: {
|
|
type: 'text',
|
|
},
|
|
},
|
|
onQuotesClick: {
|
|
action: 'Clicked on quotes link',
|
|
},
|
|
numberOfQuotes: {
|
|
control: {
|
|
type: 'number',
|
|
},
|
|
},
|
|
chainId: {
|
|
control: {
|
|
type: 'text',
|
|
},
|
|
},
|
|
smartTransactionsOptInStatus: {
|
|
control: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
smartTransactionsEnabled: {
|
|
control: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
isBestQuote: {
|
|
control: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
supportsEIP1559V2: {
|
|
control: {
|
|
type: 'boolean',
|
|
},
|
|
},
|
|
},
|
|
args: {
|
|
primaryFee: '1 ETH',
|
|
primaryMaxFee: '2 ETH',
|
|
secondaryFee: '100 USD',
|
|
secondaryMaxFee: '200 USD',
|
|
hideTokenApprovalRow: false,
|
|
tokenApprovalSourceTokenSymbol: 'ABC',
|
|
metaMaskFee: '0.875',
|
|
numberOfQuotes: 6,
|
|
chainId: MAINNET_CHAIN_ID,
|
|
isBestQuote: true,
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => {
|
|
// Please note, currently nested arg types are not possible, but discussions are open:
|
|
// https://github.com/storybookjs/storybook/issues/11486
|
|
const {
|
|
primaryFee,
|
|
primaryMaxFee,
|
|
secondaryFee,
|
|
secondaryMaxFee,
|
|
...rest
|
|
} = args;
|
|
|
|
return (
|
|
<div style={containerStyle}>
|
|
<FeeCard
|
|
primaryFee={{
|
|
fee: primaryFee,
|
|
maxFee: primaryMaxFee,
|
|
}}
|
|
secondaryFee={{
|
|
fee: secondaryFee,
|
|
maxFee: secondaryMaxFee,
|
|
}}
|
|
{...rest}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|