1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/ui/pages/swaps/fee-card/fee-card.stories.js

122 lines
2.3 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { CHAIN_IDS } from '../../../../shared/constants/network';
import FeeCard from './fee-card';
2020-10-06 20:28:38 +02:00
const containerStyle = {
width: '300px',
};
2020-10-06 20:28:38 +02:00
export default {
title: 'Pages/Swaps/FeeCard',
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',
},
},
},
args: {
primaryFee: '1 ETH',
primaryMaxFee: '2 ETH',
secondaryFee: '100 USD',
secondaryMaxFee: '200 USD',
hideTokenApprovalRow: false,
tokenApprovalSourceTokenSymbol: 'ABC',
metaMaskFee: '0.875',
numberOfQuotes: 6,
chainId: CHAIN_IDS.MAINNET,
isBestQuote: true,
},
};
2020-10-06 20:28:38 +02:00
export const DefaultStory = (args) => {
// Please note, currently nested arg types are not possible, but discussions are open:
// https://github.com/storybookjs/storybook/issues/11486
2022-07-31 20:26:40 +02:00
const { primaryFee, primaryMaxFee, secondaryFee, secondaryMaxFee, ...rest } =
args;
2020-10-06 20:28:38 +02:00
return (
<div style={containerStyle}>
<FeeCard
2020-11-03 00:41:28 +01:00
primaryFee={{
fee: primaryFee,
maxFee: primaryMaxFee,
2020-11-03 00:41:28 +01:00
}}
secondaryFee={{
fee: secondaryFee,
maxFee: secondaryMaxFee,
2020-11-03 00:41:28 +01:00
}}
{...rest}
2020-10-06 20:28:38 +02:00
/>
</div>
);
};
2020-10-06 20:28:38 +02:00
DefaultStory.storyName = 'Default';