You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.8 KiB
50 lines
1.8 KiB
import { connectStream } from '../stream'; |
|
import { |
|
updateTimeline, |
|
deleteFromTimelines, |
|
expandHomeTimeline, |
|
disconnectTimeline, |
|
} from './timelines'; |
|
import { updateNotifications, expandNotifications } from './notifications'; |
|
import { getLocale } from '../locales'; |
|
|
|
const { messages } = getLocale(); |
|
|
|
export function connectTimelineStream (timelineId, path, pollingRefresh = null) { |
|
|
|
return connectStream (path, pollingRefresh, (dispatch, getState) => { |
|
const locale = getState().getIn(['meta', 'locale']); |
|
return { |
|
onDisconnect() { |
|
dispatch(disconnectTimeline(timelineId)); |
|
}, |
|
|
|
onReceive (data) { |
|
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; |
|
} |
|
}, |
|
}; |
|
}); |
|
} |
|
|
|
function refreshHomeTimelineAndNotification (dispatch) { |
|
dispatch(expandHomeTimeline()); |
|
dispatch(expandNotifications()); |
|
} |
|
|
|
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}`); |
|
export const connectDirectStream = () => connectTimelineStream('direct', 'direct'); |
|
export const connectListStream = (id) => connectTimelineStream(`list:${id}`, `list&list=${id}`);
|
|
|