jiti-meet/react/features/recent-list/reducer.js

135 lines
3.3 KiB
JavaScript
Raw Normal View History

2018-01-17 11:19:10 +00:00
// @flow
import { ReducerRegistry } from '../base/redux';
import { PersistenceRegistry } from '../base/storage';
2018-01-29 22:20:38 +00:00
2018-01-17 11:19:10 +00:00
import {
STORE_CURRENT_CONFERENCE,
UPDATE_CONFERENCE_DURATION
} from './actionTypes';
2018-02-02 18:13:33 +00:00
const logger = require('jitsi-meet-logger').getLogger(__filename);
/**
* The name of the {@code window.localStorage} item where recent rooms are
* stored.
*
* @type {string}
*/
const LEGACY_STORAGE_KEY = 'recentURLs';
2018-01-17 11:19:10 +00:00
/**
2018-02-02 18:13:33 +00:00
* The max size of the list.
*
* @type {number}
*/
export const MAX_LIST_SIZE = 30;
/**
* The redux subtree of this feature.
2018-01-17 11:19:10 +00:00
*/
const STORE_NAME = 'features/recent-list';
/**
* Sets up the persistence of the feature recent-list.
2018-01-17 11:19:10 +00:00
*/
PersistenceRegistry.register(STORE_NAME);
2018-01-17 11:19:10 +00:00
/**
* Reduces the redux actions of the feature recent-list.
2018-02-02 18:13:33 +00:00
*/
ReducerRegistry.register(
STORE_NAME,
(state = _getLegacyRecentRoomList(), action) => {
2018-02-02 18:13:33 +00:00
switch (action.type) {
case STORE_CURRENT_CONFERENCE:
return _storeCurrentConference(state, action);
case UPDATE_CONFERENCE_DURATION:
return _updateConferenceDuration(state, action);
default:
return state;
}
});
/**
* Retrieves the recent room list that was stored using the legacy way.
*
* @returns {Array<Object>}
2018-01-17 11:19:10 +00:00
*/
2018-02-02 18:13:33 +00:00
export function _getLegacyRecentRoomList(): Array<Object> {
try {
const list
= JSON.parse(window.localStorage.getItem(LEGACY_STORAGE_KEY));
if (list && list.length) {
return list;
}
} catch (error) {
logger.warn('Failed to parse legacy recent-room list!');
2018-01-17 11:19:10 +00:00
}
2018-02-02 18:13:33 +00:00
return [];
}
2018-01-17 11:19:10 +00:00
/**
* Adds a new list entry to the redux store.
*
* @param {Object} state - The redux state.
* @param {Object} action - The redux action.
* @returns {Object}
*/
function _storeCurrentConference(state, action) {
const { locationURL } = action;
const conference = locationURL.href;
// If the current conference is already in the list, we remove it to re-add
// it to the top.
const list = (Array.isArray(state) ? state : [])
.filter(e => e.conference !== conference);
2018-01-17 11:19:10 +00:00
2018-02-02 18:13:33 +00:00
// The list is a reverse-sorted (i.e. the newer elements are at the end).
2018-01-17 11:19:10 +00:00
list.push({
conference,
2018-02-02 18:13:33 +00:00
conferenceDuration: 0, // We don't have this data yet!
2018-01-17 11:19:10 +00:00
date: Date.now()
});
2018-02-02 18:13:33 +00:00
// Ensure the list doesn't exceed a/the maximum size.
list.splice(0, list.length - MAX_LIST_SIZE);
2018-01-17 11:19:10 +00:00
return list;
2018-01-17 11:19:10 +00:00
}
/**
* Updates the conference length when left.
*
* @param {Object} state - The redux state.
* @param {Object} action - The redux action.
* @returns {Object}
*/
function _updateConferenceDuration(state, action) {
const { locationURL } = action;
if (locationURL && locationURL.href) {
// shallow copy to avoid in-place modification.
const list = (Array.isArray(state) ? state : []).slice();
2018-01-17 11:19:10 +00:00
if (list.length > 0) {
const mostRecentURL = list[list.length - 1];
if (mostRecentURL.conference === locationURL.href) {
// The last conference start was stored so we need to update the
// length.
mostRecentURL.conferenceDuration
= Date.now() - mostRecentURL.date;
return list;
2018-01-17 11:19:10 +00:00
}
}
}
return state;
}