Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

123456789101112131415161718
  1. import { ReducerRegistry } from '../base/redux';
  2. import { SET_VISIBLE_PANEL } from './actionTypes';
  3. /**
  4. * Reduces the Redux actions of the feature features/side-panel.
  5. */
  6. ReducerRegistry.register('features/side-panel', (state = {}, action) => {
  7. switch (action.type) {
  8. case SET_VISIBLE_PANEL:
  9. return {
  10. ...state,
  11. current: action.current
  12. };
  13. }
  14. return state;
  15. });