const filterBarExpanded = (state = false, action) => {
  switch (action.type) {
    case 'SET_FILTER_BAR':
      return action.visible;
    case 'TOGGLE_FILTER_BAR':