2021-02-04 19:15:23 +01:00
|
|
|
import React, { useState } from 'react';
|
|
|
|
import Button from '../../../components/ui/button';
|
|
|
|
import mockQuoteData from './mock-quote-data';
|
2022-08-09 23:48:48 +02:00
|
|
|
import README from './README.mdx';
|
2021-02-04 19:15:23 +01:00
|
|
|
import SelectQuotePopover from '.';
|
2020-10-06 20:28:38 +02:00
|
|
|
|
|
|
|
export default {
|
2021-12-01 20:27:57 +01:00
|
|
|
title: 'Pages/Swaps/SelectQuotePopover',
|
2023-01-20 20:27:46 +01:00
|
|
|
|
2022-08-09 23:48:48 +02:00
|
|
|
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: {
|
2023-04-24 11:18:14 +02:00
|
|
|
control: {
|
|
|
|
type: 'object',
|
|
|
|
},
|
2022-08-09 23:48:48 +02:00
|
|
|
},
|
|
|
|
hideEstimatedGasFee: {
|
|
|
|
control: 'boolean',
|
|
|
|
},
|
2023-04-24 11:18:14 +02:00
|
|
|
onSubmit: {
|
|
|
|
action: 'onSubmit',
|
|
|
|
},
|
2022-08-09 23:48:48 +02:00
|
|
|
},
|
|
|
|
args: {
|
|
|
|
quoteDataRows: mockQuoteData,
|
|
|
|
},
|
2021-02-04 19:15:23 +01:00
|
|
|
};
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2022-08-09 23:48:48 +02:00
|
|
|
export const DefaultStory = (args) => {
|
2021-02-04 19:15:23 +01:00
|
|
|
const [showPopover, setShowPopover] = useState(false);
|
2020-10-06 20:28:38 +02:00
|
|
|
|
2023-04-24 11:18:14 +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
|
2023-04-24 11:18:14 +02:00
|
|
|
quoteDataRows={args.quoteDataRows}
|
2020-10-06 20:28:38 +02:00
|
|
|
onClose={() => setShowPopover(false)}
|
2023-04-24 11:18:14 +02:00
|
|
|
onSubmit={handleSubmit}
|
2022-08-09 23:48:48 +02:00
|
|
|
swapToSymbol={args.swapToSymbol || 'DAI'}
|
|
|
|
initialAggId={args.initialAggId || 'Agg4'}
|
|
|
|
hideEstimatedGasFee={args.hideEstimatedGasFee || false}
|
2020-10-06 20:28:38 +02:00
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
2021-02-04 19:15:23 +01:00
|
|
|
);
|
|
|
|
};
|
2021-12-01 20:27:57 +01:00
|
|
|
|
|
|
|
DefaultStory.storyName = 'Default';
|