123456789101112131415161718192021222324252627282930313233 |
- import { parseURIString, safeDecodeURIComponent } from '../base/util/uri';
-
-
- /**
- * Transforms the history list to a displayable list.
- *
- * @private
- * @param {Array<Object>} recentList - The recent list form the redux store.
- * @returns {Array<Object>}
- */
- export function toDisplayableList(recentList: Array<{ conference: string; date: Date; duration: number; }>) {
- return (
- [ ...recentList ].reverse()
- .map(item => {
- return {
- date: item.date,
- duration: item.duration,
- time: [ item.date ],
- title: safeDecodeURIComponent(parseURIString(item.conference).room),
- url: item.conference
- };
- }));
- }
-
- /**
- * Returns <tt>true</tt> if recent list is enabled and <tt>false</tt> otherwise.
- *
- * @returns {boolean} <tt>true</tt> if recent list is enabled and <tt>false</tt>
- * otherwise.
- */
- export function isRecentListEnabled() {
- return interfaceConfig.RECENT_LIST_ENABLED;
- }
|