| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 | import {
    CLOSE_PANEL,
    SET_VISIBLE_PANEL,
    TOGGLE_CHAT
} from './actionTypes';
/**
 * Dispatches an action to close the currently displayed side panel.
 *
 * @returns {Function}
 */
export function closePanel() {
    return (dispatch, getState) => {
        dispatch({
            type: CLOSE_PANEL,
            current: getState()['features/side-panel'].current
        });
    };
}
/**
 * Updates the redux store with the currently displayed side panel.
 *
 * @param {string|null} name - The name of the side panel being displayed. Null
 * (or falsy) should be set if no side panel is being displayed.
 * @returns {{
 *     type: SET_VISIBLE_PANEL,
 *     current: string
 * }}
 */
export function setVisiblePanel(name = null) {
    return {
        type: SET_VISIBLE_PANEL,
        current: name
    };
}
/**
 * Toggles display of the chat side panel.
 *
 * @returns {{
 *     type: TOGGLE_CHAT
 * }}
 */
export function toggleChat() {
    return {
        type: TOGGLE_CHAT
    };
}
 |