mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 02:10:12 +01:00
854fc71ae7
* Organizing storybook to echo app folder structure * Updating new stories to follow new convention from develop
50 lines
1.2 KiB
JavaScript
50 lines
1.2 KiB
JavaScript
import React, { useEffect } from 'react';
|
|
import { select } from '@storybook/addon-knobs';
|
|
|
|
import { store, getNewState } from '../../../.storybook/preview';
|
|
import { updateMetamaskState } from '../../store/actions';
|
|
import ConfirmEncryptionPublicKey from '.';
|
|
|
|
export default {
|
|
title: 'Pages/ConfirmEncryptionPublicKey',
|
|
id: __filename,
|
|
};
|
|
|
|
const PageSet = ({ children }) => {
|
|
const state = store.getState();
|
|
const options = [];
|
|
const { identities, unapprovedEncryptionPublicKeyMsgs } = state.metamask;
|
|
Object.keys(identities).forEach(function (key) {
|
|
options.push({
|
|
label: identities[key].name,
|
|
name: identities[key].name,
|
|
address: key,
|
|
});
|
|
});
|
|
const account = select('Account', options, options[0]);
|
|
|
|
useEffect(() => {
|
|
unapprovedEncryptionPublicKeyMsgs['7786962153682822'].msgParams =
|
|
account.address;
|
|
store.dispatch(
|
|
updateMetamaskState(
|
|
getNewState(state.metamask, {
|
|
unapprovedEncryptionPublicKeyMsgs,
|
|
}),
|
|
),
|
|
);
|
|
}, [account, unapprovedEncryptionPublicKeyMsgs, state.metamask]);
|
|
|
|
return children;
|
|
};
|
|
|
|
export const DefaultStory = () => {
|
|
return (
|
|
<PageSet>
|
|
<ConfirmEncryptionPublicKey />
|
|
</PageSet>
|
|
);
|
|
};
|
|
|
|
DefaultStory.storyName = 'Default';
|