mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
10ffc1ec84
* Add story for smart tx popover * Use tsx for smart tx popover story and add btn to open it * Refactor smart tx popover component to tsx and style * Fix modal not triggering * Remove bold from bullet points * Adjust margins
40 lines
1.2 KiB
TypeScript
40 lines
1.2 KiB
TypeScript
import React from 'react';
|
|
import { StoryFn, Meta } from '@storybook/react';
|
|
import { useArgs } from '@storybook/client-api';
|
|
import { BUTTON_VARIANT, Button } from '../../../components/component-library';
|
|
import SmartTransactionPopover from './smart-transactions-popover';
|
|
|
|
export default {
|
|
title: 'Pages/Swaps/SmartTransactionsPopover',
|
|
component: SmartTransactionPopover,
|
|
argTypes: {
|
|
isShowingModal: {
|
|
control: 'boolean',
|
|
},
|
|
},
|
|
} as Meta<typeof SmartTransactionPopover>;
|
|
|
|
export const DefaultStory: StoryFn<typeof SmartTransactionPopover> = () => {
|
|
const [{ isShowingModal }, updateArgs] = useArgs();
|
|
const toggleModal = () => updateArgs({ isShowingModal: !isShowingModal });
|
|
|
|
return (
|
|
<>
|
|
<Button variant={BUTTON_VARIANT.PRIMARY} onClick={toggleModal}>
|
|
Open modal
|
|
</Button>
|
|
{isShowingModal && (
|
|
<SmartTransactionPopover
|
|
isOpen={isShowingModal}
|
|
onEnableSmartTransactionsClick={() => {
|
|
console.log('onEnableSmartTransactionsClick');
|
|
}}
|
|
onCloseSmartTransactionsOptInPopover={toggleModal}
|
|
/>
|
|
)}
|
|
</>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|