32 lines
744 B
JavaScript
32 lines
744 B
JavaScript
// @flow
|
|
|
|
import { ReducerRegistry } from '../base/redux';
|
|
|
|
import { RESET_SHARED_VIDEO_STATUS, SET_SHARED_VIDEO_STATUS } from './actionTypes';
|
|
|
|
const initialState = {};
|
|
|
|
/**
|
|
* Reduces the Redux actions of the feature features/shared-video.
|
|
*/
|
|
ReducerRegistry.register('features/shared-video', (state = initialState, action) => {
|
|
const { videoUrl, status, time, ownerId, muted, volume } = action;
|
|
|
|
switch (action.type) {
|
|
case RESET_SHARED_VIDEO_STATUS:
|
|
return initialState;
|
|
case SET_SHARED_VIDEO_STATUS:
|
|
return {
|
|
...state,
|
|
muted,
|
|
ownerId,
|
|
status,
|
|
time,
|
|
videoUrl,
|
|
volume
|
|
};
|
|
default:
|
|
return state;
|
|
}
|
|
});
|