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

57 lines
1.6 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 CommunityTimeline from 'flavours/glitch/features/standalone/community_timeline';
2017-12-04 07:26:40 +00:00
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,
showPublicTimeline: PropTypes.bool.isRequired,
};
static defaultProps = {
showPublicTimeline: initialState.settings.known_fediverse,
};
render () {
const { locale, hashtag, showPublicTimeline } = this.props;
2017-10-07 18:00:35 +00:00
let timeline;
if (hashtag) {
timeline = <HashtagTimeline hashtag={hashtag} />;
} else if (showPublicTimeline) {
2017-10-07 18:00:35 +00:00
timeline = <PublicTimeline />;
} else {
timeline = <CommunityTimeline />;
2017-10-07 18:00:35 +00:00
}
return (
<IntlProvider locale={locale} messages={messages}>
<Provider store={store}>
2017-10-07 18:00:35 +00:00
{timeline}
</Provider>
</IntlProvider>
);
}
}