mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Storybook housekeeping 🧹 (#14331)
* Removing argTypes that are related to static props and don't have anything to do with the component. Also some general house keeping * updates
This commit is contained in:
parent
e0e466490e
commit
9ce966ba1d
@ -5,27 +5,6 @@ export default {
|
|||||||
title: 'Components/App/AppHeader',
|
title: 'Components/App/AppHeader',
|
||||||
id: __filename,
|
id: __filename,
|
||||||
argTypes: {
|
argTypes: {
|
||||||
history: {
|
|
||||||
control: 'object',
|
|
||||||
},
|
|
||||||
networkDropdownOpen: {
|
|
||||||
control: 'boolean',
|
|
||||||
},
|
|
||||||
showNetworkDropdown: {
|
|
||||||
action: 'showNetworkDropdown',
|
|
||||||
},
|
|
||||||
hideNetworkDropdown: {
|
|
||||||
action: 'hideNetworkDropdown',
|
|
||||||
},
|
|
||||||
toggleAccountMenu: {
|
|
||||||
action: 'toggleAccountMenu',
|
|
||||||
},
|
|
||||||
selectedAddress: {
|
|
||||||
control: 'text',
|
|
||||||
},
|
|
||||||
isUnlocked: {
|
|
||||||
control: 'boolean',
|
|
||||||
},
|
|
||||||
hideNetworkIndicator: {
|
hideNetworkIndicator: {
|
||||||
control: 'boolean',
|
control: 'boolean',
|
||||||
},
|
},
|
||||||
@ -35,9 +14,6 @@ export default {
|
|||||||
disableNetworkIndicator: {
|
disableNetworkIndicator: {
|
||||||
control: 'boolean',
|
control: 'boolean',
|
||||||
},
|
},
|
||||||
isAccountMenuOpen: {
|
|
||||||
control: 'boolean',
|
|
||||||
},
|
|
||||||
onClick: {
|
onClick: {
|
||||||
action: 'onClick',
|
action: 'onClick',
|
||||||
},
|
},
|
||||||
|
@ -6,30 +6,14 @@ export default {
|
|||||||
id: __filename,
|
id: __filename,
|
||||||
component: ConfirmRemoveAccount,
|
component: ConfirmRemoveAccount,
|
||||||
argTypes: {
|
argTypes: {
|
||||||
hideModal: {
|
|
||||||
action: 'hideModal',
|
|
||||||
},
|
|
||||||
removeAccount: {
|
|
||||||
action: 'removeAccount',
|
|
||||||
},
|
|
||||||
identity: {
|
identity: {
|
||||||
control: 'object',
|
control: 'object',
|
||||||
},
|
},
|
||||||
chainId: {
|
|
||||||
control: 'text',
|
|
||||||
},
|
|
||||||
rpcPrefs: {
|
|
||||||
control: 'object',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
args: {
|
args: {
|
||||||
identity: {
|
identity: {
|
||||||
control: 'object',
|
control: 'object',
|
||||||
},
|
},
|
||||||
chainId: 'chainId',
|
|
||||||
rpcPrefs: {
|
|
||||||
control: 'object',
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -4,34 +4,8 @@ import ExportPrivateKeyModal from '.';
|
|||||||
export default {
|
export default {
|
||||||
title: 'Components/App/Modals/ExportPrivateKeyModal',
|
title: 'Components/App/Modals/ExportPrivateKeyModal',
|
||||||
id: __filename,
|
id: __filename,
|
||||||
argTypes: {
|
|
||||||
exportAccount: {
|
|
||||||
action: 'exportAccount',
|
|
||||||
},
|
|
||||||
selectedIdentity: {
|
|
||||||
control: 'object',
|
|
||||||
},
|
|
||||||
warning: {
|
|
||||||
control: 'node',
|
|
||||||
},
|
|
||||||
showAccountDetailModal: {
|
|
||||||
action: 'showAccountDetailModal',
|
|
||||||
},
|
|
||||||
hideModal: {
|
|
||||||
action: 'hideModal',
|
|
||||||
},
|
|
||||||
hideWarning: {
|
|
||||||
action: 'hideWarning',
|
|
||||||
},
|
|
||||||
clearAccountDetails: {
|
|
||||||
action: 'clearAccountDetails',
|
|
||||||
},
|
|
||||||
previousModalState: {
|
|
||||||
control: 'text',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export const DefaultStory = (args) => <ExportPrivateKeyModal {...args} />;
|
export const DefaultStory = () => <ExportPrivateKeyModal />;
|
||||||
|
|
||||||
DefaultStory.storyName = 'Default';
|
DefaultStory.storyName = 'Default';
|
||||||
|
@ -47,6 +47,9 @@ export default {
|
|||||||
fiatNumberOfDecimals: {
|
fiatNumberOfDecimals: {
|
||||||
control: 'number',
|
control: 'number',
|
||||||
},
|
},
|
||||||
|
showFiat: {
|
||||||
|
control: 'boolean',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
args: {
|
args: {
|
||||||
type: ETH,
|
type: ETH,
|
||||||
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||||||
import RevealSeedPhrase from '.';
|
import RevealSeedPhrase from '.';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: 'Components/Pages/FirstTimeFlow/RevealSeedPhrase',
|
title: 'Pages/FirstTimeFlow/RevealSeedPhrase',
|
||||||
id: __filename,
|
id: __filename,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||||||
import PermissionsRedirect from '.';
|
import PermissionsRedirect from '.';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: 'Components/Pages/PermissionsConnect/Redirect/PermissionsRedirect',
|
title: 'Pages/PermissionsConnect/Redirect/PermissionsRedirect',
|
||||||
id: __filename,
|
id: __filename,
|
||||||
argTypes: {
|
argTypes: {
|
||||||
subjectMetadata: {
|
subjectMetadata: {
|
||||||
|
@ -2,7 +2,7 @@ import React from 'react';
|
|||||||
import SmartTransactionStatus from './smart-transaction-status';
|
import SmartTransactionStatus from './smart-transaction-status';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
title: 'SmartTransactionStatus',
|
title: 'Pages/Swaps/SmartTransactionStatus',
|
||||||
};
|
};
|
||||||
|
|
||||||
export const SmartTransactionStatusComponent = () => {
|
export const SmartTransactionStatusComponent = () => {
|
||||||
|
Loading…
Reference in New Issue
Block a user