1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 20:05:27 +02:00
metamask-extension/ui/pages/send/send-header/send-header.stories.js
George Marshall 854fc71ae7
Organizing storybook to echo app folder structure (#12796)
* Organizing storybook to echo app folder structure

* Updating new stories to follow new convention from develop
2021-12-01 11:27:57 -08:00

57 lines
1.4 KiB
JavaScript

import React, { useEffect } from 'react';
import { combineReducers, createStore } from 'redux';
import { Provider } from 'react-redux';
import { select } from '@storybook/addon-knobs';
import {
updateSendStage,
updateSendAsset,
} from '../../../../.storybook/actions/sb-send-action';
import sendSBReducer from '../../../../.storybook/reducers/sb-send-reducer';
import historySBReducer from '../../../../.storybook/reducers/sb-history-reducer';
import { ASSET_TYPES, SEND_STAGES } from '../../../ducks/send';
import SendHeader from './send-header.component';
export default {
title: 'Pages/Send/SendHeader',
id: __filename,
};
export const DefaultStory = () => {
const store = createStore(
combineReducers({ send: sendSBReducer, history: historySBReducer }),
);
const state = store.getState();
const { send } = state;
const asset =
select('Asset', [ASSET_TYPES.NATIVE, ASSET_TYPES.TOKEN]) || send.asset;
const stage =
select('Stage', [
SEND_STAGES.ADD_RECIPIENT,
SEND_STAGES.DRAFT,
SEND_STAGES.EDIT,
SEND_STAGES.INACTIVE,
]) || send.stage;
useEffect(() => {
store.dispatch(updateSendAsset(asset));
}, [store, asset]);
useEffect(() => {
store.dispatch(updateSendStage(stage));
}, [store, stage]);
return (
<Provider store={store}>
<div style={{ width: 600 }}>
<SendHeader />
</div>
</Provider>
);
};
DefaultStory.storyName = 'Default';