jitsi-meet-electron/app/features/settings/reducer.js

101 lines
2.1 KiB
JavaScript
Raw Normal View History

// @flow
2018-06-23 01:36:48 +02:00
import { getAvatarURL } from 'js-utils';
import {
SET_ALWAYS_ON_TOP_WINDOW_ENABLED,
SET_AUDIO_MUTED,
SET_AVATAR_URL,
SET_EMAIL,
SET_NAME,
SET_SERVER_URL,
2020-05-14 15:10:46 +02:00
SET_SERVER_TIMEOUT,
SET_VIDEO_MUTED
} from './actionTypes';
type State = {
avatarURL: string,
email: string,
name: string,
serverURL: ?string,
2020-05-14 15:10:46 +02:00
serverTimeout: ?number,
startWithAudioMuted: boolean,
startWithVideoMuted: boolean,
alwaysOnTopWindowEnabled: boolean,
};
2020-04-07 11:55:54 +02:00
const username = window.jitsiNodeAPI.osUserInfo().username;
const DEFAULT_STATE = {
alwaysOnTopWindowEnabled: true,
avatarURL: getAvatarURL({ id: username }),
email: '',
name: username,
serverURL: undefined,
2020-05-14 15:10:46 +02:00
serverTimeout: undefined,
startWithAudioMuted: false,
startWithVideoMuted: false
};
/**
* Reduces redux actions for features/settings.
*
* @param {State} state - Current reduced redux state.
* @param {Object} action - Action which was dispatched.
* @returns {State} - Updated reduced redux state.
*/
export default (state: State = DEFAULT_STATE, action: Object) => {
switch (action.type) {
case SET_ALWAYS_ON_TOP_WINDOW_ENABLED:
return {
...state,
alwaysOnTopWindowEnabled: action.alwaysOnTopWindowEnabled
};
case SET_AUDIO_MUTED:
return {
...state,
startWithAudioMuted: action.startWithAudioMuted
};
case SET_AVATAR_URL:
return {
...state,
avatarURL: action.avatarURL
};
case SET_EMAIL:
return {
...state,
email: action.email
};
case SET_NAME:
return {
...state,
name: action.name
};
case SET_SERVER_URL:
return {
...state,
serverURL: action.serverURL
};
2020-05-14 15:10:46 +02:00
case SET_SERVER_TIMEOUT:
return {
...state,
serverTimeout: action.serverTimeout
};
case SET_VIDEO_MUTED:
return {
...state,
startWithVideoMuted: action.startWithVideoMuted
};
default:
return state;
}
};