mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-29 15:50:28 +01:00
a8e194a8f6
* removed recents and added accounts in send flow * updated add contact button and fixed full screen view * updated ui for contacts * fixed lint errors and test * fixed lint errors * fixed lint errors * updated spec files * fixed lint errors * updated snapshot * fixed edit in spec files * removed unused console statement * updated snapshot * added userInput check * updated snapshot and added hover
117 lines
2.4 KiB
JavaScript
117 lines
2.4 KiB
JavaScript
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',
|
|
|
|
decorators: [(story) => <Provider store={store}>{story()}</Provider>],
|
|
argTypes: {
|
|
userInput: {
|
|
control: 'text',
|
|
},
|
|
ownedAccounts: {
|
|
control: 'array',
|
|
},
|
|
addressBook: {
|
|
control: 'array',
|
|
},
|
|
updateRecipient: {
|
|
action: 'updateRecipient',
|
|
},
|
|
domainResolution: {
|
|
control: 'text',
|
|
},
|
|
domainError: {
|
|
control: 'text',
|
|
},
|
|
domainWarning: {
|
|
control: 'text',
|
|
},
|
|
addressBookEntryName: {
|
|
control: 'text',
|
|
},
|
|
contacts: {
|
|
control: 'array',
|
|
},
|
|
nonContacts: {
|
|
control: 'array',
|
|
},
|
|
useMyAccountsForRecipientSearch: {
|
|
action: 'useMyAccountsForRecipientSearch',
|
|
},
|
|
useContactListForRecipientSearch: {
|
|
action: 'useContactListForRecipientSearch',
|
|
},
|
|
|
|
recipient: {
|
|
control: 'object',
|
|
},
|
|
},
|
|
args: {
|
|
recipient,
|
|
contacts: [addressBook],
|
|
nonContacts: [addressBook],
|
|
ownedAccounts: [addressBook],
|
|
addressBook: [addressBook],
|
|
},
|
|
};
|
|
|
|
export const DefaultStory = (args) => {
|
|
return (
|
|
<div style={{ width: 300 }}>
|
|
<AddRecipient
|
|
{...args}
|
|
updateRecipient={() => undefined}
|
|
updateGas={() => undefined}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|
|
|
|
export const ErrorStory = (args) => {
|
|
return (
|
|
<div style={{ width: 300 }}>
|
|
<AddRecipient
|
|
{...args}
|
|
updateRecipient={() => undefined}
|
|
updateGas={() => undefined}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
ErrorStory.storyName = 'Error';
|
|
ErrorStory.args = {
|
|
// domainError must be the key for a translation
|
|
domainError: 'loading',
|
|
};
|
|
|
|
export const WarningStory = (args) => {
|
|
return (
|
|
<div style={{ width: 300 }}>
|
|
<AddRecipient
|
|
{...args}
|
|
updateRecipient={() => undefined}
|
|
updateGas={() => undefined}
|
|
/>
|
|
</div>
|
|
);
|
|
};
|
|
WarningStory.storyName = 'Warning';
|
|
WarningStory.args = {
|
|
// domainWarning must be the key for a translation
|
|
domainWarning: 'loading',
|
|
};
|