1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-24 19:10:22 +01:00
metamask-extension/ui/pages/send/send-content/send-content.stories.js
ryanml a759d427f0
Remove new address alert (#14811)
* Removing new address alert

* remove unused copy

* fix broken e2e test

* rework layout nesting

* satisfy lint

* change layout to fix firefox tests

* change selector specificity on e2e test

* revert test change after fix has been merged from develop

* fix linting

Co-authored-by: Brad Decker <bhdecker84@gmail.com>
Co-authored-by: Pedro Figueiredo <pedro.figueiredo@consensys.net>
2022-12-08 14:20:24 +00:00

85 lines
1.6 KiB
JavaScript

import React from 'react';
import SendContent from './send-content.component';
export default {
title: 'Pages/Send/SendContent',
id: __filename,
argsTypes: {
showHexData: {
control: 'boolean',
},
isOwnedAccount: {
control: 'boolean',
},
contact: {
control: 'object',
},
noGasPrice: {
control: 'boolean',
},
isEthGasPrice: {
control: 'boolean',
},
gasIsExcessive: {
control: 'boolean',
},
networkOrAccountNotSupports1559: {
control: 'boolean',
},
getIsBalanceInsufficient: {
control: 'boolean',
},
error: {
control: 'text',
},
warning: {
control: 'text',
},
to: {
control: 'text',
},
assetError: {
control: 'text',
},
asset: {
control: 'object',
},
recipient: {
control: 'object',
},
},
};
export const DefaultStory = (args) => {
return <SendContent {...args} />;
};
DefaultStory.storyName = 'Default';
DefaultStory.args = {
showHexData: false,
isOwnedAccount: true,
noGasPrice: false,
isEthGasPrice: false,
gasIsExcessive: false,
error: 'connecting',
warning: 'connecting',
asset: {
type: 'NATIVE',
},
recipient: {
mode: 'CONTACT_LIST',
userInput: '0x31A2764925BD47CCBd57b2F277702dB46e9C5F66',
address: '0x31A2764925BD47CCBd57b2F277702dB46e9C5F66',
nickname: 'John Doe',
error: null,
warning: null,
},
contact: { name: 'testName' },
networkOrAccountNotSupports1559: false,
getIsBalanceInsufficient: false,
to: 'string to',
assetError: null,
};