2021-08-31 01:05:02 +02:00
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
import SendContent from './send-content.component';
|
|
|
|
|
|
|
|
export default {
|
2021-12-01 20:27:57 +01:00
|
|
|
title: 'Pages/Send/SendContent',
|
2021-09-15 20:55:48 +02:00
|
|
|
id: __filename,
|
2022-07-19 10:35:45 +02:00
|
|
|
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',
|
|
|
|
},
|
|
|
|
},
|
2021-08-31 01:05:02 +02:00
|
|
|
};
|
|
|
|
|
2022-07-19 10:35:45 +02:00
|
|
|
export const DefaultStory = (args) => {
|
|
|
|
return <SendContent {...args} />;
|
2021-08-31 01:05:02 +02:00
|
|
|
};
|
2021-12-01 20:27:57 +01:00
|
|
|
|
|
|
|
DefaultStory.storyName = 'Default';
|
2022-07-19 10:35:45 +02:00
|
|
|
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: 'newAccountDetectedDialogMessage',
|
|
|
|
};
|