import React from 'react'; import { Provider } from 'react-redux'; import configureStore from '../../../../store/store'; import testData from '../../../../../.storybook/test-data'; import AddRecipient from './add-recipient.component'; const store = configureStore(testData); const { metamask } = store.getState(); const { addressBook } = metamask; const recipient = metamask.accountArray[0]; export default { title: 'Pages/Send/SendContent/AddRecipient', id: __filename, decorators: [(story) => {story()}], argTypes: { userInput: { control: 'text', }, ownedAccounts: { control: 'array', }, addressBook: { control: 'array', }, updateRecipient: { action: 'updateRecipient', }, ensResolution: { control: 'text', }, ensError: { control: 'text', }, ensWarning: { control: 'text', }, addressBookEntryName: { control: 'text', }, contacts: { control: 'array', }, nonContacts: { control: 'array', }, useMyAccountsForRecipientSearch: { action: 'useMyAccountsForRecipientSearch', }, useContactListForRecipientSearch: { action: 'useContactListForRecipientSearch', }, isUsingMyAccountsForRecipientSearch: { control: 'bool', }, recipient: { control: 'object', }, }, args: { recipient, contacts: [addressBook], nonContacts: [addressBook], ownedAccounts: [addressBook], addressBook: [addressBook], }, }; export const DefaultStory = (args) => { return (
undefined} updateGas={() => undefined} />
); }; DefaultStory.storyName = 'Default'; export const ErrorStory = (args) => { return (
undefined} updateGas={() => undefined} />
); }; ErrorStory.argTypes = { // ensError must be the key for a translation ensError: { type: 'text', defaultValue: 'loading' }, }; ErrorStory.storyName = 'Error'; export const WarningStory = (args) => { return (
undefined} updateGas={() => undefined} />
); }; WarningStory.argTypes = { // ensWarning must be the key for a translation ensWarning: { type: 'text', defaultValue: 'loading' }, }; WarningStory.storyName = 'Warning';