2023-05-23 08:52:27 +00:00
|
|
|
import { PureComponent } from 'react';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
2017-08-14 02:53:31 +00:00
|
|
|
import { Provider } from 'react-redux';
|
2023-05-23 15:15:17 +00:00
|
|
|
|
|
|
|
import { fetchCustomEmojis } from '../actions/custom_emojis';
|
2017-08-14 02:53:31 +00:00
|
|
|
import { hydrateStore } from '../actions/store';
|
|
|
|
import Compose from '../features/standalone/compose';
|
2017-10-27 15:04:44 +00:00
|
|
|
import initialState from '../initial_state';
|
2023-06-02 13:00:27 +00:00
|
|
|
import { IntlProvider } from '../locales';
|
2023-05-23 15:15:17 +00:00
|
|
|
import { store } from '../store';
|
2017-08-14 02:53:31 +00:00
|
|
|
|
|
|
|
|
2017-10-27 15:04:44 +00:00
|
|
|
if (initialState) {
|
2017-08-14 02:53:31 +00:00
|
|
|
store.dispatch(hydrateStore(initialState));
|
|
|
|
}
|
|
|
|
|
2019-02-04 22:14:57 +00:00
|
|
|
store.dispatch(fetchCustomEmojis());
|
|
|
|
|
2023-06-02 13:00:27 +00:00
|
|
|
export default class ComposeContainer extends PureComponent {
|
2017-08-14 02:53:31 +00:00
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
2023-06-02 13:00:27 +00:00
|
|
|
<IntlProvider>
|
2017-08-14 02:53:31 +00:00
|
|
|
<Provider store={store}>
|
|
|
|
<Compose />
|
|
|
|
</Provider>
|
|
|
|
</IntlProvider>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|