35 lines
868 B
JavaScript
35 lines
868 B
JavaScript
import React from 'react';
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { themes } from '../app/lib/constants';
|
|
import MessageContext from '../app/containers/message/Context';
|
|
import { mockedStore as store } from '../app/reducers/mockedStore';
|
|
|
|
export const decorators = [
|
|
Story => (
|
|
<Provider store={store}>
|
|
<MessageContext.Provider
|
|
value={{
|
|
user: {
|
|
id: 'y8bd77ptZswPj3EW8',
|
|
username: 'diego.mello',
|
|
token: 'abc'
|
|
},
|
|
baseUrl: 'https://open.rocket.chat',
|
|
onPress: () => {},
|
|
onLongPress: () => {},
|
|
reactionInit: () => {},
|
|
onErrorPress: () => {},
|
|
replyBroadcast: () => {},
|
|
onReactionPress: () => {},
|
|
onDiscussionPress: () => {},
|
|
onReactionLongPress: () => {},
|
|
threadBadgeColor: themes.light.tunreadColor
|
|
}}
|
|
>
|
|
<Story />
|
|
</MessageContext.Provider>
|
|
</Provider>
|
|
)
|
|
];
|