mirror of
https://github.com/wassname/talk.git
synced 2026-08-05 13:30:26 +08:00
47 lines
1.1 KiB
JavaScript
47 lines
1.1 KiB
JavaScript
import * as actions from 'constants/moderation';
|
|
|
|
export const toggleModal = open => ({ type: actions.TOGGLE_MODAL, open });
|
|
export const singleView = () => ({ type: actions.SINGLE_VIEW });
|
|
|
|
// hide shortcuts note
|
|
export const hideShortcutsNote = () => (dispatch, _, { localStorage }) => {
|
|
try {
|
|
if (localStorage) {
|
|
localStorage.setItem('coral:shortcutsNote', 'hide');
|
|
}
|
|
} catch (e) {
|
|
// above will fail in Safari private mode
|
|
}
|
|
|
|
dispatch({ type: actions.HIDE_SHORTCUTS_NOTE });
|
|
};
|
|
|
|
export const setSortOrder = order => ({
|
|
type: actions.SET_SORT_ORDER,
|
|
order,
|
|
});
|
|
|
|
export const toggleStorySearch = active => ({
|
|
type: active ? actions.SHOW_STORY_SEARCH : actions.HIDE_STORY_SEARCH,
|
|
});
|
|
|
|
export const storySearchChange = value => ({
|
|
type: actions.STORY_SEARCH_CHANGE_VALUE,
|
|
value,
|
|
});
|
|
|
|
export const clearState = () => ({
|
|
type: actions.CLEAR_STATE,
|
|
});
|
|
|
|
export const selectCommentId = id => ({
|
|
type: actions.SELECT_COMMENT,
|
|
id,
|
|
});
|
|
|
|
// Enable or disable the activity indicator subscriptions.
|
|
export const setIndicatorTrack = track => ({
|
|
type: actions.SET_INDICATOR_TRACK,
|
|
track,
|
|
});
|