mastodon/app/javascript/flavours/glitch/containers/timeline_container.js

49 lines
1.3 KiB
JavaScript
Raw Normal View History

import React from 'react';
import { Provider } from 'react-redux';
import PropTypes from 'prop-types';
2017-12-04 07:26:40 +00:00
import configureStore from 'flavours/glitch/store/configureStore';
import { hydrateStore } from 'flavours/glitch/actions/store';
import { IntlProvider, addLocaleData } from 'react-intl';
2017-11-18 03:11:18 +00:00
import { getLocale } from 'mastodon/locales';
2017-12-04 07:26:40 +00:00
import PublicTimeline from 'flavours/glitch/features/standalone/public_timeline';
import HashtagTimeline from 'flavours/glitch/features/standalone/hashtag_timeline';
import initialState from 'flavours/glitch/util/initial_state';
const { localeData, messages } = getLocale();
addLocaleData(localeData);
const store = configureStore();
if (initialState) {
store.dispatch(hydrateStore(initialState));
}
export default class TimelineContainer extends React.PureComponent {
static propTypes = {
locale: PropTypes.string.isRequired,
2017-10-07 18:00:35 +00:00
hashtag: PropTypes.string,
};
render () {
2017-10-07 18:00:35 +00:00
const { locale, hashtag } = this.props;
let timeline;
if (hashtag) {
timeline = <HashtagTimeline hashtag={hashtag} />;
} else {
timeline = <PublicTimeline />;
}
return (
<IntlProvider locale={locale} messages={messages}>
<Provider store={store}>
2017-10-07 18:00:35 +00:00
{timeline}
</Provider>
</IntlProvider>
);
}
}