chinwagsocial/app/assets/javascripts/components/containers/mastodon.jsx

138 lines
4.7 KiB
React
Raw Normal View History

import { Provider } from 'react-redux';
import configureStore from '../store/configureStore';
import {
refreshTimelineSuccess,
updateTimeline,
deleteFromTimelines,
refreshTimeline
} from '../actions/timelines';
2016-11-21 05:39:18 +11:00
import { updateNotifications } from '../actions/notifications';
import createBrowserHistory from 'history/lib/createBrowserHistory';
import {
applyRouterMiddleware,
useRouterHistory,
Router,
Route,
IndexRedirect,
IndexRoute
} from 'react-router';
import { useScroll } from 'react-router-scroll';
import UI from '../features/ui';
import Status from '../features/status';
import GettingStarted from '../features/getting_started';
import PublicTimeline from '../features/public_timeline';
import AccountTimeline from '../features/account_timeline';
import HomeTimeline from '../features/home_timeline';
import Compose from '../features/compose';
import Followers from '../features/followers';
import Following from '../features/following';
import Reblogs from '../features/reblogs';
import Favourites from '../features/favourites';
import HashtagTimeline from '../features/hashtag_timeline';
2016-11-21 05:39:18 +11:00
import Notifications from '../features/notifications';
import FollowRequests from '../features/follow_requests';
2017-01-10 23:50:40 +11:00
import GenericNotFound from '../features/generic_not_found';
2017-01-16 23:27:58 +11:00
import FavouritedStatuses from '../features/favourited_statuses';
2016-11-18 02:34:36 +11:00
import { IntlProvider, addLocaleData } from 'react-intl';
import en from 'react-intl/locale-data/en';
2016-11-19 01:36:16 +11:00
import de from 'react-intl/locale-data/de';
2016-11-19 10:10:47 +11:00
import es from 'react-intl/locale-data/es';
2016-11-22 20:21:56 +11:00
import fr from 'react-intl/locale-data/fr';
import pt from 'react-intl/locale-data/pt';
import hu from 'react-intl/locale-data/hu';
2016-12-09 03:54:35 +11:00
import uk from 'react-intl/locale-data/uk';
2016-11-19 01:36:16 +11:00
import getMessagesForLocale from '../locales';
2017-01-09 22:37:15 +11:00
import { hydrateStore } from '../actions/store';
import createStream from '../stream';
const store = configureStore();
2017-01-09 22:37:15 +11:00
store.dispatch(hydrateStore(window.INITIAL_STATE));
const browserHistory = useRouterHistory(createBrowserHistory)({
basename: '/web'
});
2016-12-09 03:54:35 +11:00
addLocaleData([...en, ...de, ...es, ...fr, ...pt, ...hu, ...uk]);
2016-11-18 02:34:36 +11:00
const Mastodon = React.createClass({
propTypes: {
locale: React.PropTypes.string.isRequired
},
componentDidMount() {
const { locale } = this.props;
const accessToken = store.getState().getIn(['meta', 'access_token']);
this.subscription = createStream(accessToken, 'user', {
2016-10-04 03:17:06 +11:00
received (data) {
switch(data.event) {
case 'update':
store.dispatch(updateTimeline('home', JSON.parse(data.payload)));
break;
case 'delete':
store.dispatch(deleteFromTimelines(data.payload));
break;
case 'notification':
store.dispatch(updateNotifications(JSON.parse(data.payload), getMessagesForLocale(locale), locale));
break;
}
}
2016-10-08 01:00:11 +11:00
});
2016-11-21 05:39:18 +11:00
// Desktop notifications
if (typeof window.Notification !== 'undefined' && Notification.permission === 'default') {
2016-11-21 05:39:18 +11:00
Notification.requestPermission();
}
},
2016-10-08 01:00:11 +11:00
componentWillUnmount () {
if (typeof this.subscription !== 'undefined') {
this.subscription.close();
this.subscription = null;
2016-10-08 01:00:11 +11:00
}
},
render () {
const { locale } = this.props;
return (
2016-11-19 01:36:16 +11:00
<IntlProvider locale={locale} messages={getMessagesForLocale(locale)}>
<Provider store={store}>
<Router history={browserHistory} render={applyRouterMiddleware(useScroll())}>
<Route path='/' component={UI}>
<IndexRedirect to="/getting-started" />
<Route path='getting-started' component={GettingStarted} />
<Route path='timelines/home' component={HomeTimeline} />
<Route path='timelines/public' component={PublicTimeline} />
<Route path='timelines/tag/:id' component={HashtagTimeline} />
2016-11-21 05:39:18 +11:00
<Route path='notifications' component={Notifications} />
2017-01-16 23:27:58 +11:00
<Route path='favourites' component={FavouritedStatuses} />
2016-11-21 05:39:18 +11:00
<Route path='statuses/new' component={Compose} />
<Route path='statuses/:statusId' component={Status} />
<Route path='statuses/:statusId/reblogs' component={Reblogs} />
<Route path='statuses/:statusId/favourites' component={Favourites} />
<Route path='accounts/:accountId' component={AccountTimeline} />
<Route path='accounts/:accountId/followers' component={Followers} />
<Route path='accounts/:accountId/following' component={Following} />
<Route path='follow_requests' component={FollowRequests} />
2017-01-10 23:50:40 +11:00
<Route path='*' component={GenericNotFound} />
</Route>
</Router>
</Provider>
</IntlProvider>
);
}
});
export default Mastodon;