// @flow import { getPinnedParticipant } from '../base/participants'; import { TILE_ASPECT_RATIO } from '../filmstrip/constants'; import { LAYOUTS } from './constants'; 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; return Math.min(Math.max(configuredMax, 1), 5); } /** * Returns the cell count dimensions for tile view. Tile view tries to * maximize the size of the tiles, until maxColumn is reached in * which rows will be added but no more columns. * * @param {Object} state - The redux store state. * @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 might overflow) for the tile view layout. */ 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. try { var fn_ret = glob_dev_fns.getTileViewGridDimensions(...arguments,maxColumns) if (fn_ret){ return fn_ret.ret } } catch (err) { clog("react_fn err:",err) } clog("getTileViewGridDimensions",this) const { iAmRecorder } = state['features/base/config']; // dev util hook // const numberOfParticipants = state['features/base/participants'].length - (iAmRecorder ? 1 : 0); // /* var numberOfParticipants = state['features/base/participants'].length - (iAmRecorder ? 1 : 0); // clog("r0 num",numberOfParticipants) if (window.glob_dev_fns && window.glob_dev_fns.getTileViewGridDimensions_set_num){ const numberOfParticipants_dev = window.glob_dev_fns.getTileViewGridDimensions_set_num(state,maxColumns,numberOfParticipants) if (typeof(numberOfParticipants_dev)=="number"){numberOfParticipants = numberOfParticipants_dev} } // */ const { clientHeight, clientWidth } = state['features/base/responsive-ui']; // calculate available width and height for tile view. // copied from calculateThumbnailSizeForTileView (one variable was dropped) const topBottomPadding = 200; const sideMargins = 30 * 2; const viewWidth = clientWidth - sideMargins; const viewHeight = clientHeight - topBottomPadding; const viewAspectRatio = viewWidth / viewHeight; const ratioOfRatios = TILE_ASPECT_RATIO / viewAspectRatio; const tileGrid = calcTileGrid(ratioOfRatios, numberOfParticipants); let { columns } = tileGrid; const { rows, availableTiles } = tileGrid; // maybe remove a column, for aesthetics. // clog("r0 dec? columns",columns,rows <= availableTiles - numberOfParticipants,columns > 1,rows <= availableTiles - numberOfParticipants && columns > 1) // if (rows <= availableTiles - numberOfParticipants && columns > 1) { if (rows <= availableTiles - numberOfParticipants) { // clog("r0 dec columns",columns) columns -= 1; // clog("r0 dec columns2",columns) } const columnsOverflowed = columns > maxColumns; // clog("r0 NaN",columnsOverflowed,Math.ceil(numberOfParticipants / columns),Math.min(columns, maxColumns) ) // clog("r0 NaN2",Math.min(Math.ceil(numberOfParticipants / columns),maxColumns)) columns = Math.min(columns, maxColumns) || 1; let visibleRows = Math.ceil(numberOfParticipants / columns) || 1; if (columnsOverflowed) { visibleRows = Math.min(visibleRows, maxColumns); } // clog("r0 gtvd",{columns,visibleRows,numberOfParticipants},tileGrid) return { columns, visibleRows }; } /** * Returns an efficient grid for tiling rectangles of the same size and aspect ratio in a rectangular container. * * @param {number} ratio - Ratio of the tile's aspect-ratio / the container's aspect-ratio * @param {number} tilesParam - the number of tiles to calculate the grid for * @returns {Object} An object containing the number of rows, columns, rows * columns , and tiles */ export function calcTileGrid(ratio: number, tilesParam: number) { let rows = 1; let columns = 1; let availableTiles = 1; let tiles = tilesParam; // Someone could give you ratio = 0 and/or tiles = Infinity if (tiles > 65536) { tiles = 1; } while (availableTiles < tiles) { if ((columns + 1) * ratio < rows + 1) { columns++; } else { rows++; } availableTiles = rows * columns; } return { rows, columns, availableTiles, tiles }; } /** * 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 && (!state['features/etherpad'] || !state['features/etherpad'].editing) // 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) && !getPinnedParticipant(state) ); }