feat: use css to place the toolbox buttons
This commit is contained in:
parent
ad7892ebce
commit
e08aeca28c
|
@ -20,15 +20,6 @@ import OverflowMenuButton from './OverflowMenuButton';
|
||||||
import styles from './styles';
|
import styles from './styles';
|
||||||
import VideoMuteButton from '../VideoMuteButton';
|
import VideoMuteButton from '../VideoMuteButton';
|
||||||
|
|
||||||
/**
|
|
||||||
* The number of buttons to render in
|
|
||||||
* {@link Toolbox}.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @type number
|
|
||||||
*/
|
|
||||||
const _BUTTON_COUNT = 5;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The type of {@link Toolbox}'s React {@code Component} props.
|
* The type of {@link Toolbox}'s React {@code Component} props.
|
||||||
*/
|
*/
|
||||||
|
@ -103,39 +94,6 @@ class Toolbox extends Component<Props, State> {
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Calculates how large our toolbar buttons can be, given the available
|
|
||||||
* width. In the future we might want to have a size threshold, and once
|
|
||||||
* it's passed a completely different style could be used, akin to the web.
|
|
||||||
*
|
|
||||||
* @private
|
|
||||||
* @returns {number}
|
|
||||||
*/
|
|
||||||
_calculateButtonSize() {
|
|
||||||
const { _styles } = this.props;
|
|
||||||
const { width } = this.state;
|
|
||||||
|
|
||||||
if (width <= 0) {
|
|
||||||
// We don't know how much space is allocated to the toolbar yet.
|
|
||||||
return width;
|
|
||||||
}
|
|
||||||
|
|
||||||
const { style } = _styles.buttonStyles;
|
|
||||||
let buttonSize
|
|
||||||
= (width
|
|
||||||
|
|
||||||
// Account for the horizontal margins of all buttons:
|
|
||||||
- (_BUTTON_COUNT * style.marginHorizontal * 2)) / _BUTTON_COUNT;
|
|
||||||
|
|
||||||
// Well, don't return a non-positive button size.
|
|
||||||
if (buttonSize <= 0) {
|
|
||||||
buttonSize = style.width;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Make sure it's an even number.
|
|
||||||
return 2 * Math.round(buttonSize / 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs the toggled style of the chat button. This cannot be done by
|
* Constructs the toggled style of the chat button. This cannot be done by
|
||||||
* simple style inheritance due to the size calculation done in this
|
* simple style inheritance due to the size calculation done in this
|
||||||
|
@ -167,24 +125,6 @@ class Toolbox extends Component<Props, State> {
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Applies the recalculated size to the button style object, if needed.
|
|
||||||
*
|
|
||||||
* @param {Object} baseStyle - The base style object of the button.
|
|
||||||
* @param {Object} extraStyle - The extra style object of the button.
|
|
||||||
* @returns {Object}
|
|
||||||
*/
|
|
||||||
_getResizedStyle(baseStyle, extraStyle) {
|
|
||||||
if (baseStyle.style.width !== extraStyle.width) {
|
|
||||||
return {
|
|
||||||
...baseStyle,
|
|
||||||
style: [ baseStyle.style, extraStyle ]
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
return baseStyle;
|
|
||||||
}
|
|
||||||
|
|
||||||
_onLayout: (Object) => void;
|
_onLayout: (Object) => void;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -208,31 +148,7 @@ class Toolbox extends Component<Props, State> {
|
||||||
*/
|
*/
|
||||||
_renderToolbar() {
|
_renderToolbar() {
|
||||||
const { _chatEnabled, _styles } = this.props;
|
const { _chatEnabled, _styles } = this.props;
|
||||||
const buttonSize = this._calculateButtonSize();
|
const { buttonStyles, buttonStylesBorderless, hangupButtonStyles, toggledButtonStyles } = _styles;
|
||||||
let { buttonStyles, buttonStylesBorderless, hangupButtonStyles, toggledButtonStyles } = _styles;
|
|
||||||
|
|
||||||
if (buttonSize > 0) {
|
|
||||||
const extraButtonStyle = {
|
|
||||||
borderRadius: buttonSize / 2,
|
|
||||||
height: buttonSize,
|
|
||||||
width: buttonSize
|
|
||||||
};
|
|
||||||
|
|
||||||
// XXX The following width equality checks attempt to minimize
|
|
||||||
// unnecessary objects and possibly re-renders.
|
|
||||||
//
|
|
||||||
// TODO: This needs a refactor!
|
|
||||||
buttonStyles = this._getResizedStyle(buttonStyles, extraButtonStyle);
|
|
||||||
buttonStylesBorderless = this._getResizedStyle(buttonStylesBorderless, extraButtonStyle);
|
|
||||||
hangupButtonStyles = this._getResizedStyle(hangupButtonStyles, extraButtonStyle);
|
|
||||||
toggledButtonStyles = this._getResizedStyle(toggledButtonStyles, extraButtonStyle);
|
|
||||||
} else {
|
|
||||||
// XXX In order to avoid a weird visual effect in which the toolbar
|
|
||||||
// is (visually) rendered and then visibly changes its size, it is
|
|
||||||
// rendered only after we've figured out the width available to the
|
|
||||||
// toolbar.
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<View
|
<View
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
// @flow
|
// @flow
|
||||||
|
|
||||||
import { ColorSchemeRegistry, schemeColor } from '../../../base/color-scheme';
|
import { ColorSchemeRegistry, schemeColor } from '../../../base/color-scheme';
|
||||||
import { BoxModel, ColorPalette, createStyleSheet } from '../../../base/styles';
|
import { BoxModel, ColorPalette } from '../../../base/styles';
|
||||||
|
|
||||||
|
const BUTTON_SIZE = 50;
|
||||||
|
|
||||||
// Toolbox, toolbar:
|
// Toolbox, toolbar:
|
||||||
|
|
||||||
|
@ -10,17 +12,17 @@ import { BoxModel, ColorPalette, createStyleSheet } from '../../../base/styles';
|
||||||
*/
|
*/
|
||||||
const toolbarButton = {
|
const toolbarButton = {
|
||||||
backgroundColor: schemeColor('button'),
|
backgroundColor: schemeColor('button'),
|
||||||
borderRadius: 20,
|
borderRadius: BUTTON_SIZE / 2,
|
||||||
borderWidth: 0,
|
borderWidth: 0,
|
||||||
flex: 0,
|
flex: 0,
|
||||||
flexDirection: 'row',
|
flexDirection: 'row',
|
||||||
height: 40,
|
height: BUTTON_SIZE,
|
||||||
justifyContent: 'center',
|
justifyContent: 'center',
|
||||||
|
|
||||||
// XXX We probably tested BoxModel.margin and discovered it to be too small
|
// XXX We probably tested BoxModel.margin and discovered it to be too small
|
||||||
// for our taste.
|
// for our taste.
|
||||||
marginHorizontal: 7,
|
marginHorizontal: 7,
|
||||||
width: 40
|
width: BUTTON_SIZE
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -51,7 +53,7 @@ const whiteToolbarButtonIcon = {
|
||||||
/**
|
/**
|
||||||
* The Toolbox and toolbar related styles.
|
* The Toolbox and toolbar related styles.
|
||||||
*/
|
*/
|
||||||
const styles = createStyleSheet({
|
const styles = {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The style of the toolbar.
|
* The style of the toolbar.
|
||||||
|
@ -72,7 +74,7 @@ const styles = createStyleSheet({
|
||||||
flexDirection: 'column',
|
flexDirection: 'column',
|
||||||
flexGrow: 0
|
flexGrow: 0
|
||||||
}
|
}
|
||||||
});
|
};
|
||||||
|
|
||||||
export default styles;
|
export default styles;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue