34 lines
1.0 KiB
JavaScript
34 lines
1.0 KiB
JavaScript
/* global APP, interfaceConfig */
|
|
|
|
import $ from 'jquery';
|
|
|
|
import { getVerticalFilmstripVisibleAreaWidth, isFilmstripVisible } from '../../../react/features/filmstrip';
|
|
|
|
const Filmstrip = {
|
|
/**
|
|
* Returns the height of filmstrip
|
|
* @returns {number} height
|
|
*/
|
|
getFilmstripHeight() {
|
|
// FIXME Make it more clear the getFilmstripHeight check is used in
|
|
// horizontal film strip mode for calculating how tall large video
|
|
// display should be.
|
|
if (isFilmstripVisible(APP.store) && !interfaceConfig.VERTICAL_FILMSTRIP) {
|
|
return $('.filmstrip').outerHeight();
|
|
}
|
|
|
|
return 0;
|
|
},
|
|
|
|
/**
|
|
* Returns the width of the vertical filmstip if the filmstrip is visible and 0 otherwise.
|
|
*
|
|
* @returns {number} - The width of the vertical filmstip if the filmstrip is visible and 0 otherwise.
|
|
*/
|
|
getVerticalFilmstripWidth() {
|
|
return isFilmstripVisible(APP.store) ? getVerticalFilmstripVisibleAreaWidth() : 0;
|
|
}
|
|
};
|
|
|
|
export default Filmstrip;
|