You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.4 KiB
47 lines
1.4 KiB
/* eslint-disable react/prop-types */
|
|
import React, { useEffect } from 'react';
|
|
import { text } from '@storybook/addon-knobs';
|
|
import { store } from '../../../.storybook/preview';
|
|
import { suggestedTokens } from '../../../.storybook/initial-states/approval-screens/add-suggested-token';
|
|
import { updateMetamaskState } from '../../store/actions';
|
|
import ConfirmAddSuggestedToken from '.';
|
|
|
|
export default {
|
|
title: 'Confirmation Screens',
|
|
};
|
|
|
|
const PageSet = ({ children }) => {
|
|
const symbol = text('symbol', 'META');
|
|
const image = text('Icon URL', 'metamark.svg');
|
|
|
|
const state = store.getState();
|
|
const suggestedTokensState = state.metamask.suggestedTokens;
|
|
|
|
useEffect(() => {
|
|
suggestedTokensState[
|
|
'0x6b175474e89094c44da98b954eedeac495271d0f'
|
|
].symbol = symbol;
|
|
store.dispatch(
|
|
updateMetamaskState({ suggestedTokens: suggestedTokensState }),
|
|
);
|
|
}, [symbol, suggestedTokensState]);
|
|
useEffect(() => {
|
|
suggestedTokensState[
|
|
'0x6b175474e89094c44da98b954eedeac495271d0f'
|
|
].image = image;
|
|
store.dispatch(
|
|
updateMetamaskState({ suggestedTokens: suggestedTokensState }),
|
|
);
|
|
}, [image, suggestedTokensState]);
|
|
|
|
return children;
|
|
};
|
|
|
|
export const AddSuggestedToken = () => {
|
|
store.dispatch(updateMetamaskState({ suggestedTokens, pendingTokens: {} }));
|
|
return (
|
|
<PageSet>
|
|
<ConfirmAddSuggestedToken />
|
|
</PageSet>
|
|
);
|
|
};
|
|
|