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

reducer.js 428B

1234567891011121314151617181920212223
  1. // @flow
  2. import { ReducerRegistry } from '../redux';
  3. import { SET_AUDIO_ONLY } from './actionTypes';
  4. const DEFAULT_STATE = {
  5. enabled: false
  6. };
  7. ReducerRegistry.register('features/base/audio-only', (state = DEFAULT_STATE, action) => {
  8. switch (action.type) {
  9. case SET_AUDIO_ONLY:
  10. return {
  11. ...state,
  12. enabled: action.audioOnly
  13. };
  14. default:
  15. return state;
  16. }
  17. });