9d4f7dc642
bring tags into app repo prevent prefset until prefsReady prefs ready on sign up prefsReady-desktop
20 lines
505 B
JavaScript
20 lines
505 B
JavaScript
// @flow
|
|
import * as ACTIONS from 'constants/action_types';
|
|
import { selectPrefsReady } from 'redux/selectors/sync';
|
|
import { doAlertWaitingForSync } from 'redux/actions/app';
|
|
|
|
export const doToggleBlockChannel = (uri: string) => (dispatch: Dispatch, getState: GetState) => {
|
|
const state = getState();
|
|
const ready = selectPrefsReady(state);
|
|
|
|
if (!ready) {
|
|
return dispatch(doAlertWaitingForSync());
|
|
}
|
|
|
|
dispatch({
|
|
type: ACTIONS.TOGGLE_BLOCK_CHANNEL,
|
|
data: {
|
|
uri,
|
|
},
|
|
});
|
|
};
|