const currentIds = (state = [], action) => {
    switch (action.type) {
        case CURRENT_IDS.SET_CURRENT_IDS:
            return action.ids;
        default: