bigbuffet-rw/app/soapbox/actions/remote-timeline.ts

31 lines
967 B
TypeScript
Raw Normal View History

2021-08-11 16:23:42 -07:00
import { getSettings, changeSetting } from 'soapbox/actions/settings';
import type { OrderedSet as ImmutableOrderedSet } from 'immutable';
import type { AppDispatch, RootState } from 'soapbox/store';
const getPinnedHosts = (state: RootState) => {
2021-08-11 16:23:42 -07:00
const settings = getSettings(state);
return settings.getIn(['remote_timeline', 'pinnedHosts']) as ImmutableOrderedSet<string>;
2021-08-11 16:23:42 -07:00
};
const pinHost = (host: string) =>
(dispatch: AppDispatch, getState: () => RootState) => {
2021-08-11 16:23:42 -07:00
const state = getState();
const pinnedHosts = getPinnedHosts(state);
2021-08-11 16:23:42 -07:00
return dispatch(changeSetting(['remote_timeline', 'pinnedHosts'], pinnedHosts.add(host)));
2021-08-11 16:23:42 -07:00
};
const unpinHost = (host: string) =>
(dispatch: AppDispatch, getState: () => RootState) => {
2021-08-11 16:23:42 -07:00
const state = getState();
const pinnedHosts = getPinnedHosts(state);
2021-08-11 16:23:42 -07:00
return dispatch(changeSetting(['remote_timeline', 'pinnedHosts'], pinnedHosts.remove(host)));
2021-08-11 16:23:42 -07:00
};
export {
pinHost,
unpinHost,
};