您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

reducer.js 374B

1234567891011121314151617
  1. // @flow
  2. import { ReducerRegistry } from '../../base/redux';
  3. import { _SET_IMMERSIVE_LISTENER } from './actionTypes';
  4. ReducerRegistry.register('features/full-screen', (state = {}, action) => {
  5. switch (action.type) {
  6. case _SET_IMMERSIVE_LISTENER:
  7. return {
  8. ...state,
  9. listener: action.listener
  10. };
  11. }
  12. return state;
  13. });