2017-11-15 15:04:15 +00:00
|
|
|
import { connectStream } from '../stream';
|
2017-08-21 13:04:34 +00:00
|
|
|
import {
|
|
|
|
updateTimeline,
|
|
|
|
deleteFromTimelines,
|
|
|
|
refreshHomeTimeline,
|
|
|
|
connectTimeline,
|
|
|
|
disconnectTimeline,
|
|
|
|
} from './timelines';
|
|
|
|
import { updateNotifications, refreshNotifications } from './notifications';
|
|
|
|
import { getLocale } from '../locales';
|
|
|
|
|
|
|
|
const { messages } = getLocale();
|
|
|
|
|
|
|
|
export function connectTimelineStream (timelineId, path, pollingRefresh = null) {
|
|
|
|
|
2017-11-15 15:04:15 +00:00
|
|
|
return connectStream (path, pollingRefresh, (dispatch, getState) => {
|
|
|
|
const locale = getState().getIn(['meta', 'locale']);
|
|
|
|
return {
|
|
|
|
onConnect() {
|
2017-08-21 13:04:34 +00:00
|
|
|
dispatch(connectTimeline(timelineId));
|
|
|
|
},
|
|
|
|
|
2017-11-15 15:04:15 +00:00
|
|
|
onDisconnect() {
|
2017-08-21 13:04:34 +00:00
|
|
|
dispatch(disconnectTimeline(timelineId));
|
|
|
|
},
|
|
|
|
|
2017-11-15 15:04:15 +00:00
|
|
|
onReceive (data) {
|
2017-08-21 13:04:34 +00:00
|
|
|
switch(data.event) {
|
|
|
|
case 'update':
|
|
|
|
dispatch(updateTimeline(timelineId, JSON.parse(data.payload)));
|
|
|
|
break;
|
|
|
|
case 'delete':
|
|
|
|
dispatch(deleteFromTimelines(data.payload));
|
|
|
|
break;
|
|
|
|
case 'notification':
|
|
|
|
dispatch(updateNotifications(JSON.parse(data.payload), messages, locale));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
2017-11-15 15:04:15 +00:00
|
|
|
});
|
2017-08-21 13:04:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function refreshHomeTimelineAndNotification (dispatch) {
|
|
|
|
dispatch(refreshHomeTimeline());
|
|
|
|
dispatch(refreshNotifications());
|
|
|
|
}
|
|
|
|
|
|
|
|
export const connectUserStream = () => connectTimelineStream('home', 'user', refreshHomeTimelineAndNotification);
|
|
|
|
export const connectCommunityStream = () => connectTimelineStream('community', 'public:local');
|
|
|
|
export const connectMediaStream = () => connectTimelineStream('community', 'public:local');
|
|
|
|
export const connectPublicStream = () => connectTimelineStream('public', 'public');
|
|
|
|
export const connectHashtagStream = (tag) => connectTimelineStream(`hashtag:${tag}`, `hashtag&tag=${tag}`);
|
2017-11-24 23:35:37 +00:00
|
|
|
export const connectListStream = (id) => connectTimelineStream(`list:${id}`, `list&list=${id}`);
|