2018-08-08 18:48:23 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import { LAYOUTS } from './constants';
|
2018-09-11 18:09:07 +00:00
|
|
|
import { getPinnedParticipant } from '../base/participants';
|
2018-08-08 18:48:23 +00:00
|
|
|
|
|
|
|
declare var interfaceConfig: Object;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the {@code LAYOUTS} constant associated with the layout
|
|
|
|
* the application should currently be in.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
* @returns {string}
|
|
|
|
*/
|
|
|
|
export function getCurrentLayout(state: Object) {
|
|
|
|
if (shouldDisplayTileView(state)) {
|
|
|
|
return LAYOUTS.TILE_VIEW;
|
|
|
|
} else if (interfaceConfig.VERTICAL_FILMSTRIP) {
|
|
|
|
return LAYOUTS.VERTICAL_FILMSTRIP_VIEW;
|
|
|
|
}
|
|
|
|
|
|
|
|
return LAYOUTS.HORIZONTAL_FILMSTRIP_VIEW;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns how many columns should be displayed in tile view. The number
|
|
|
|
* returned will be between 1 and 5, inclusive.
|
|
|
|
*
|
|
|
|
* @returns {number}
|
|
|
|
*/
|
|
|
|
export function getMaxColumnCount() {
|
|
|
|
const configuredMax = interfaceConfig.TILE_VIEW_MAX_COLUMNS || 5;
|
|
|
|
|
2020-04-06 17:42:53 +00:00
|
|
|
return Math.min(Math.max(configuredMax, 1), 5);
|
2018-08-08 18:48:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns the cell count dimensions for tile view. Tile view tries to uphold
|
|
|
|
* equal count of tiles for height and width, until maxColumn is reached in
|
|
|
|
* which rows will be added but no more columns.
|
|
|
|
*
|
2020-03-06 11:43:00 +00:00
|
|
|
* @param {Object} state - The redux store state.
|
2018-08-08 18:48:23 +00:00
|
|
|
* @param {number} maxColumns - The maximum number of columns that can be
|
|
|
|
* displayed.
|
|
|
|
* @returns {Object} An object is return with the desired number of columns,
|
|
|
|
* rows, and visible rows (the rest should overflow) for the tile view layout.
|
|
|
|
*/
|
2020-03-06 11:43:00 +00:00
|
|
|
export function getTileViewGridDimensions(state: Object, maxColumns: number = getMaxColumnCount()) {
|
|
|
|
// When in tile view mode, we must discount ourselves (the local participant) because our
|
|
|
|
// tile is not visible.
|
|
|
|
const { iAmRecorder } = state['features/base/config'];
|
|
|
|
const numberOfParticipants = state['features/base/participants'].length - (iAmRecorder ? 1 : 0);
|
|
|
|
|
2020-01-24 16:28:47 +00:00
|
|
|
const columnsToMaintainASquare = Math.ceil(Math.sqrt(numberOfParticipants));
|
2018-08-08 18:48:23 +00:00
|
|
|
const columns = Math.min(columnsToMaintainASquare, maxColumns);
|
2020-01-24 16:28:47 +00:00
|
|
|
const rows = Math.ceil(numberOfParticipants / columns);
|
2018-08-08 18:48:23 +00:00
|
|
|
const visibleRows = Math.min(maxColumns, rows);
|
|
|
|
|
|
|
|
return {
|
|
|
|
columns,
|
|
|
|
visibleRows
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Selector for determining if the UI layout should be in tile view. Tile view
|
|
|
|
* is determined by more than just having the tile view setting enabled, as
|
|
|
|
* one-on-one calls should not be in tile view, as well as etherpad editing.
|
|
|
|
*
|
|
|
|
* @param {Object} state - The redux state.
|
|
|
|
* @returns {boolean} True if tile view should be displayed.
|
|
|
|
*/
|
|
|
|
export function shouldDisplayTileView(state: Object = {}) {
|
|
|
|
return Boolean(
|
|
|
|
state['features/video-layout']
|
|
|
|
&& state['features/video-layout'].tileViewEnabled
|
2018-09-13 15:20:22 +00:00
|
|
|
&& (!state['features/etherpad']
|
|
|
|
|| !state['features/etherpad'].editing)
|
2018-08-31 15:36:01 +00:00
|
|
|
|
|
|
|
// Truthy check is needed for interfaceConfig to prevent errors on
|
|
|
|
// mobile which does not have interfaceConfig. On web, tile view
|
|
|
|
// should never be enabled for filmstrip only mode.
|
|
|
|
&& (typeof interfaceConfig === 'undefined'
|
|
|
|
|| !interfaceConfig.filmStripOnly)
|
2018-09-11 18:09:07 +00:00
|
|
|
&& !getPinnedParticipant(state)
|
2018-08-08 18:48:23 +00:00
|
|
|
);
|
|
|
|
}
|