Lyubo Marinov 2b8a770163 [RN] Consistent margins for Filmstrip and Toolbox
With the introduction of wide and narrow layouts the margins of the
Filmstrip and the Toolbox became inconsistent. For example, the
Filmstrip's top in the wide layout was nearer to the top than the
secondary Toolbar.
2017-11-07 17:27:58 -06:00

180 lines
4.0 KiB
JavaScript

import { BoxModel, ColorPalette, createStyleSheet } from '../../base/styles';
/**
* The base style for toolbars.
*
* @type {Object}
*/
const _toolbar = {
flex: 0,
position: 'absolute'
};
/**
* The base style of toolbar buttons (in primaryToolbar and secondaryToolbar).
*
* @type {Object}
*/
const _toolbarButton = {
flex: 0,
justifyContent: 'center',
opacity: 0.7
};
/**
* The base icon style of toolbar buttons (in primaryToolbar and
* secondaryToolbar).
*
* @type {Object}
*/
const _toolbarButtonIcon = {
alignSelf: 'center'
};
/**
* The style of toolbar buttons in primaryToolbar.
*/
const primaryToolbarButton = {
..._toolbarButton,
backgroundColor: ColorPalette.white,
borderRadius: 30,
borderWidth: 0,
flexDirection: 'row',
height: 60,
margin: BoxModel.margin,
width: 60
};
/**
* The icon style of the toolbar buttons in primaryToolbar.
*
* @type {Object}
*/
const primaryToolbarButtonIcon = {
..._toolbarButtonIcon,
color: ColorPalette.darkGrey,
fontSize: 24
};
/**
* The icon style of the toolbar buttons in secondaryToolbar.
*
* @type {Object}
*/
const secondaryToolbarButtonIcon = {
..._toolbarButtonIcon,
color: ColorPalette.white,
fontSize: 18
};
/**
* The (conference) Toolbox/Toolbar related styles.
*/
export default createStyleSheet({
/**
* The style of the toolbar button in {@link #primaryToolbar} which
* hangs the current conference up.
*/
hangup: {
...primaryToolbarButton,
backgroundColor: ColorPalette.red
},
/**
* The style of the toolbar which contains the primary buttons such as
* hangup, audio and video mute.
*/
primaryToolbar: {
..._toolbar,
bottom: 0,
flexDirection: 'row',
justifyContent: 'center',
left: 0,
right: 0
},
/**
* The style of toolbar buttons in {@link #primaryToolbar}.
*/
primaryToolbarButton,
/**
* The icon style of the toolbar buttons in {@link #primaryToolbar}.
*/
primaryToolbarButtonIcon,
/**
* The style of the toolbar which contains the secondary buttons such as
* toggle camera facing mode.
*/
secondaryToolbar: {
..._toolbar,
bottom: 0,
flexDirection: 'column',
right: 0,
top: 0
},
/**
* The style of toolbar buttons in {@link #secondaryToolbar}.
*/
secondaryToolbarButton: {
..._toolbarButton,
backgroundColor: ColorPalette.darkGrey,
borderRadius: 20,
flexDirection: 'column',
height: 40,
margin: BoxModel.margin / 2,
width: 40
},
/**
* The icon style of the toolbar buttons in {@link #secondaryToolbar}.
*/
secondaryToolbarButtonIcon,
/**
* The style of the root/top-level {@link Container} of {@link Toolbox}
* which contains {@link Toolbar}s. This is narrow layout version which
* spans from the top of the screen to the top of the filmstrip located at
* the bottom of the screen.
*/
toolboxNarrow: {
flexDirection: 'column',
flexGrow: 1
},
/**
* The style of the root/top-level {@link Container} of {@link Toolbox}
* which contains {@link Toolbar}s. This is wide layout version which spans
* from the top to the bottom of the screen and is located to the right of
* the filmstrip which is displayed as a column on the left side of the
* screen.
*/
toolboxWide: {
bottom: 0,
left: 0,
position: 'absolute',
right: 0,
top: 0
},
/**
* The style of toolbar buttons in {@link #primaryToolbar} which display
* white icons.
*/
whitePrimaryToolbarButton: {
...primaryToolbarButton,
backgroundColor: ColorPalette.buttonUnderlay
},
/**
* The icon style of toolbar buttons in {@link #primaryToolbar} which
* display white icons.
*/
whitePrimaryToolbarButtonIcon: {
...primaryToolbarButtonIcon,
color: ColorPalette.white
}
});