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/select-quote-popover/select-quote-popover.stories.js

72 lines
1.5 KiB
JavaScript
Raw Normal View History

import React, { useState } from 'react';
import Button from '../../../components/ui/button';
import mockQuoteData from './mock-quote-data';
import README from './README.mdx';
import SelectQuotePopover from '.';
2020-10-06 20:28:38 +02:00
export default {
title: 'Pages/Swaps/SelectQuotePopover',
component: SelectQuotePopover,
parameters: {
docs: {
page: README,
},
},
argTypes: {
swapToSymbol: {
control: {
type: 'select',
},
options: ['ETH', 'DAI'],
},
initialAggId: {
control: {
type: 'select',
},
options: ['Agg1', 'Agg2', 'Agg3', 'Agg4', 'Agg5', 'Agg6'],
},
quoteDataRows: {
control: {
type: 'object',
},
},
hideEstimatedGasFee: {
control: 'boolean',
},
onSubmit: {
action: 'onSubmit',
},
},
args: {
quoteDataRows: mockQuoteData,
},
};
2020-10-06 20:28:38 +02:00
export const DefaultStory = (args) => {
const [showPopover, setShowPopover] = useState(false);
2020-10-06 20:28:38 +02:00
const handleSubmit = () => {
setShowPopover(false);
args.onSubmit();
};
2020-10-06 20:28:38 +02:00
return (
<div>
<Button onClick={() => setShowPopover(true)}>Open Popover</Button>
{showPopover && (
<SelectQuotePopover
quoteDataRows={args.quoteDataRows}
2020-10-06 20:28:38 +02:00
onClose={() => setShowPopover(false)}
onSubmit={handleSubmit}
swapToSymbol={args.swapToSymbol || 'DAI'}
initialAggId={args.initialAggId || 'Agg4'}
hideEstimatedGasFee={args.hideEstimatedGasFee || false}
2020-10-06 20:28:38 +02:00
/>
)}
</div>
);
};
DefaultStory.storyName = 'Default';