bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/whiteboard/whiteboard-toolbar/component.jsx

846 lines
26 KiB
React
Raw Normal View History

2017-06-08 05:25:47 +08:00
import React, { Component } from 'react';
import PropTypes from 'prop-types';
2017-04-19 08:54:51 +08:00
import cx from 'classnames';
import { HEXToINTColor, INTToHEXColor } from '/imports/utils/hexInt';
import { defineMessages, injectIntl } from 'react-intl';
import browser from 'browser-detect';
2018-06-12 04:30:15 +08:00
import { noop } from 'lodash';
import KEY_CODES from '/imports/utils/keyCodes';
import injectWbResizeEvent from '/imports/ui/components/presentation/resize-wrapper/component';
2018-01-08 14:17:18 +08:00
import { styles } from './styles.scss';
2017-09-23 14:27:55 +08:00
import ToolbarMenuItem from './toolbar-menu-item/component';
import ToolbarSubmenu from './toolbar-submenu/component';
2017-02-23 08:10:30 +08:00
2017-09-21 05:05:17 +08:00
const TRANSITION_DURATION = '0.4s';
const TOOLBAR_CONFIG = Meteor.settings.public.whiteboard.toolbar;
const ANNOTATION_COLORS = TOOLBAR_CONFIG.colors;
const THICKNESS_RADIUSES = TOOLBAR_CONFIG.thickness;
const FONT_SIZES = TOOLBAR_CONFIG.font_sizes;
2017-09-21 05:05:17 +08:00
2017-12-08 21:28:02 +08:00
const intlMessages = defineMessages({
toolbarTools: {
id: 'app.whiteboard.toolbar.tools',
description: 'Whiteboard toolbar tools menu',
},
toolbarLineThickness: {
id: 'app.whiteboard.toolbar.thickness',
description: 'Whiteboard toolbar thickness menu',
},
toolbarLineThicknessDisabled: {
id: 'app.whiteboard.toolbar.thicknessDisabled',
description: 'Whiteboard toolbar thickness menu',
},
2017-12-08 21:28:02 +08:00
toolbarLineColor: {
id: 'app.whiteboard.toolbar.color',
description: 'Whiteboard toolbar colors menu',
},
toolbarLineColorDisabled: {
id: 'app.whiteboard.toolbar.colorDisabled',
description: 'Whiteboard toolbar colors menu',
},
2017-12-08 21:28:02 +08:00
toolbarUndoAnnotation: {
id: 'app.whiteboard.toolbar.undo',
description: 'Whiteboard toolbar tools menu',
},
toolbarClearAnnotations: {
id: 'app.whiteboard.toolbar.clear',
description: 'Whiteboard toolbar clear menu',
},
toolbarMultiUserOn: {
id: 'app.whiteboard.toolbar.multiUserOn',
description: 'Whiteboard toolbar turn multi-user on menu',
},
toolbarMultiUserOff: {
id: 'app.whiteboard.toolbar.multiUserOff',
description: 'Whiteboard toolbar turn multi-user off menu',
},
toolbarFontSize: {
id: 'app.whiteboard.toolbar.fontSize',
description: 'Whiteboard toolbar font size menu',
},
toolbarItemPan: {
id: 'app.whiteboard.toolbar.tools.hand',
description: 'Label for the pan toolbar item',
},
2017-12-08 21:28:02 +08:00
});
const isEdge = browser().name === 'edge';
const runExceptInEdge = fn => (isEdge ? noop : fn);
class WhiteboardToolbar extends Component {
constructor(props) {
super(props);
const { annotations, multiUser, isPresenter } = this.props;
let annotationSelected = {
icon: 'hand',
value: 'hand',
};
if (multiUser && !isPresenter) {
2019-08-06 21:16:33 +08:00
annotationSelected = {
icon: 'pen_tool',
value: 'pencil',
};
}
if (!annotations.some(el => el.value === annotationSelected.value) && annotations.length > 0) {
annotationSelected = annotations[annotations.length - 1];
}
2017-04-19 08:54:51 +08:00
this.state = {
// a variable to control which list is currently open
2017-04-19 08:54:51 +08:00
currentSubmenuOpen: '',
// variables to keep current selected draw settings
annotationSelected,
prevAnnotationSelected: annotationSelected,
thicknessSelected: { value: 1 },
colorSelected: { value: '#ff0000' },
2017-09-23 14:27:55 +08:00
fontSizeSelected: { value: 20 },
// keeping the previous color and the thickness icon's radius selected for svg animation
prevColorSelected: { value: '#ff0000' },
prevThicknessSelected: { value: 2 },
// lists of tools/thickness/colors are not direct children of main toolbar buttons
// and we want the list to close when onBlur fires at the main toolbar button
// (click anywhere on the screen) thus we have to control the blur manually by disabling it
// when you hover over the buttons in the list and enabling when the mouse leaves the list
2017-04-19 08:54:51 +08:00
onBlurEnabled: true,
panMode: false,
2017-04-19 08:54:51 +08:00
};
this.displaySubMenu = this.displaySubMenu.bind(this);
this.closeSubMenu = this.closeSubMenu.bind(this);
this.handleClose = this.handleClose.bind(this);
2017-04-19 08:54:51 +08:00
this.handleUndo = this.handleUndo.bind(this);
2017-04-22 02:01:52 +08:00
this.handleClearAll = this.handleClearAll.bind(this);
this.handleSwitchWhiteboardMode = this.handleSwitchWhiteboardMode.bind(this);
2017-04-19 08:54:51 +08:00
this.handleAnnotationChange = this.handleAnnotationChange.bind(this);
this.handleThicknessChange = this.handleThicknessChange.bind(this);
this.handleFontSizeChange = this.handleFontSizeChange.bind(this);
2017-04-19 08:54:51 +08:00
this.handleColorChange = this.handleColorChange.bind(this);
2017-09-21 05:05:17 +08:00
this.handleMouseEnter = this.handleMouseEnter.bind(this);
this.handleMouseLeave = this.handleMouseLeave.bind(this);
this.componentDidMount = runExceptInEdge(this.componentDidMount);
this.componentDidUpdate = runExceptInEdge(this.componentDidUpdate);
this.panOn = this.panOn.bind(this);
this.panOff = this.panOff.bind(this);
2017-04-19 08:54:51 +08:00
}
componentDidMount() {
const { actions, multiUser, isPresenter } = this.props;
const drawSettings = actions.getCurrentDrawSettings();
const {
annotationSelected, thicknessSelected, colorSelected, fontSizeSelected,
} = this.state;
document.addEventListener('keydown', this.panOn);
document.addEventListener('keyup', this.panOff);
// if there are saved drawSettings in the session storage
// - retrieve them and update toolbar values
if (drawSettings) {
if (multiUser && !isPresenter) {
drawSettings.whiteboardAnnotationTool = 'pencil';
this.handleAnnotationChange({ icon: 'pen_tool', value: 'pencil' });
}
this.setToolbarValues(drawSettings);
2019-06-24 21:14:14 +08:00
// no drawSettings in the sessionStorage - setting default values
} else {
// setting default drawing settings if they haven't been set previously
actions.setInitialWhiteboardToolbarValues(
2017-09-23 14:27:55 +08:00
annotationSelected.value,
thicknessSelected.value * 2,
HEXToINTColor(colorSelected.value),
fontSizeSelected.value,
{
textShapeValue: '',
textShapeActiveId: '',
},
);
}
if (annotationSelected.value !== 'text') {
// trigger initial animation on the thickness circle, otherwise it stays at 0
this.thicknessListIconColor.beginElement();
this.thicknessListIconRadius.beginElement();
this.colorListIconColor.beginElement();
} else {
this.colorListIconColor.beginElement();
}
2017-04-19 08:54:51 +08:00
}
componentDidUpdate(prevProps, prevState) {
const { annotations } = this.props;
const { annotationSelected } = prevState;
const hadInAnnotations = annotations.some(el => el.value === annotationSelected.value);
// if color or thickness were changed
// we might need to trigger svg animation for Color and Thickness icons
this.animateSvgIcons(prevState);
2018-10-26 22:17:41 +08:00
if (prevProps.annotations.length !== annotations.length && annotations.length === 0) {
this.handleAnnotationChange({ icon: null, value: null });
}
if (!hadInAnnotations && annotations.length) {
this.handleAnnotationChange(annotations[annotations.length - 1]);
}
}
componentWillUnmount() {
document.removeEventListener('keydown', this.panOn);
document.removeEventListener('keyup', this.panOff);
}
setToolbarValues(drawSettings) {
const {
annotations,
} = this.props;
const {
whiteboardAnnotationThickness,
textFontSize, whiteboardAnnotationColor,
whiteboardAnnotationTool,
} = drawSettings;
// divide by 2, since we need the radius for the thickness icon
const thicknessSelected = { value: whiteboardAnnotationThickness / 2 };
const fontSizeSelected = { value: textFontSize };
const colorSelected = { value: INTToHEXColor(whiteboardAnnotationColor) };
let annotationSelected = {};
for (let i = 0; i < annotations.length; i += 1) {
if (whiteboardAnnotationTool === annotations[i].value) {
annotationSelected = annotations[i];
break;
}
}
this.setState({
colorSelected,
fontSizeSelected,
thicknessSelected,
annotationSelected,
});
}
panOn(event) {
const { annotationSelected } = this.state;
const { target, which } = event;
const isBody = target.nodeName === 'BODY';
if (annotationSelected.value === 'hand' || !isBody) return;
const { annotations } = this.props;
if ([KEY_CODES.SPACE].includes(which)) {
this.setState(
{
panMode: true,
prevAnnotationSelected: annotationSelected,
},
this.handleAnnotationChange(annotations[annotations.length - 1]),
);
}
}
panOff(event) {
const { target, which } = event;
const isInputArea = target.nodeName === 'TEXTAREA' || target.nodeName === 'INPUT';
const { panMode } = this.state;
if (isInputArea || !panMode) return;
const { prevAnnotationSelected } = this.state;
if ([KEY_CODES.SPACE].includes(which)) {
this.setState({ panMode: false },
this.handleAnnotationChange(prevAnnotationSelected));
}
}
animateSvgIcons(prevState) {
const {
colorSelected,
annotationSelected,
thicknessSelected,
} = this.state;
/* Animation for the svg icons that we use for thickness (circle) and color (rectangle)
* has to be triggered manually
* we have 4 main cases:
* 1. Color change -
a) Text tool is selected, Font-Size icon substitutes the thickness icon,
2017-09-06 09:36:15 +08:00
thus we need to trigger the color change just for the color icon
b) Any other tool than Text tool is selected - trigger color change for both icons
* 2. Thickness change - trigger radius for the thickness icon
* 3. Switch from the Text tool to any other - trigger color and radius for thickness
* 4. Trigger initial animation for the icons
*/
// 1st case
if (this.thicknessListIconRadius && this.thicknessListIconColor) {
if (colorSelected.value !== prevState.colorSelected.value) {
// 1st case b)
if (annotationSelected.value !== 'text') {
this.thicknessListIconColor.beginElement();
}
// 1st case a)
this.colorListIconColor.beginElement();
// 2nd case
} else if (thicknessSelected.value !== prevState.thicknessSelected.value) {
this.thicknessListIconRadius.beginElement();
// 3rd case
} else if (annotationSelected.value !== 'text'
&& prevState.annotationSelected.value === 'text') {
this.thicknessListIconRadius.beginElement();
this.thicknessListIconColor.beginElement();
}
}
// 4th case, initial animation is triggered in componentDidMount
}
// open a submenu
2017-04-19 08:54:51 +08:00
displaySubMenu(listName) {
const { currentSubmenuOpen } = this.state;
2017-04-19 08:54:51 +08:00
this.setState({
currentSubmenuOpen: currentSubmenuOpen === listName ? '' : listName,
onBlurEnabled: false,
2017-04-19 08:54:51 +08:00
});
}
// close a current submenu (fires onBlur only, when you click anywhere on the screen)
2017-04-19 08:54:51 +08:00
closeSubMenu() {
const {
annotationSelected,
onBlurEnabled,
} = this.state;
const {
textShapeActiveId,
} = this.props;
// a separate case for the active text shape
if (annotationSelected.value === 'text' && textShapeActiveId !== '') return;
if (onBlurEnabled) {
2017-04-19 08:54:51 +08:00
this.setState({
currentSubmenuOpen: undefined,
});
}
}
// undo annotation
2017-04-19 08:54:51 +08:00
handleUndo() {
const {
actions,
whiteboardId,
} = this.props;
actions.undoAnnotation(whiteboardId);
2017-04-19 08:54:51 +08:00
}
// clear all annotations
2017-04-22 02:01:52 +08:00
handleClearAll() {
const {
actions,
whiteboardId,
} = this.props;
actions.clearWhiteboard(whiteboardId);
2017-04-19 08:54:51 +08:00
}
handleSwitchWhiteboardMode() {
const {
multiUser,
whiteboardId,
actions,
} = this.props;
actions.changeWhiteboardMode(!multiUser, whiteboardId);
}
// changes a current selected annotation both in the state and in the session
// and closes the annotation list
handleAnnotationChange(annotation) {
const { actions } = this.props;
const obj = {
2017-04-19 08:54:51 +08:00
annotationSelected: annotation,
onBlurEnabled: true,
currentSubmenuOpen: '',
};
// to animate thickness icon properly when you switch the tool back from Text
2017-09-23 14:27:55 +08:00
if (annotation.value === 'text') {
obj.prevThicknessSelected = { value: 0 };
}
actions.setTool(annotation.value);
this.setState(obj);
2017-04-19 08:54:51 +08:00
}
// changes a current selected thickness both in the state and in the session
// and closes the thickness list
handleThicknessChange(incomingThickness) {
const { actions } = this.props;
const { thicknessSelected } = this.state;
2017-09-23 14:27:55 +08:00
// thickness value * 2 since this is radius, we need to double it
actions.setThickness(incomingThickness.value * 2);
2017-04-19 08:54:51 +08:00
this.setState({
prevThicknessSelected: thicknessSelected,
thicknessSelected: incomingThickness,
2017-04-19 08:54:51 +08:00
onBlurEnabled: true,
currentSubmenuOpen: '',
});
}
handleClose() {
this.setState({
onBlurEnabled: true,
currentSubmenuOpen: '',
});
}
2017-09-23 14:27:55 +08:00
handleFontSizeChange(fontSize) {
const { actions } = this.props;
actions.setFontSize(fontSize.value);
this.setState({
2017-09-23 14:27:55 +08:00
fontSizeSelected: fontSize,
onBlurEnabled: true,
currentSubmenuOpen: '',
});
}
// changes a current selected color both in the state and in the session
// and closes the color list
2017-04-19 08:54:51 +08:00
handleColorChange(color) {
const { actions } = this.props;
const { colorSelected } = this.state;
actions.setColor(HEXToINTColor(color.value));
2017-04-19 08:54:51 +08:00
this.setState({
prevColorSelected: colorSelected,
2017-04-19 08:54:51 +08:00
colorSelected: color,
onBlurEnabled: true,
currentSubmenuOpen: '',
});
}
// disabling onBlur flag when mouse is over the items in the lists
2017-09-21 05:05:17 +08:00
handleMouseEnter() {
2017-04-19 08:54:51 +08:00
this.setState({
onBlurEnabled: false,
});
}
// enabling the onBlur flag when the mouse leaving the lists
2017-09-21 05:05:17 +08:00
handleMouseLeave() {
2017-04-19 08:54:51 +08:00
this.setState({
onBlurEnabled: true,
});
}
2017-09-23 14:27:55 +08:00
renderToolItem() {
const { panMode, annotationSelected, currentSubmenuOpen } = this.state;
const { intl, annotations } = this.props;
2018-10-26 22:17:41 +08:00
const isDisabled = !annotations.length;
return panMode
? (
<ToolbarMenuItem
icon="hand"
label={intl.formatMessage(intlMessages.toolbarItemPan)}
2019-06-24 21:14:14 +08:00
onItemClick={() => { }}
className={styles.toolbarButton}
/>
) : (
<ToolbarMenuItem
disabled={isDisabled}
label={intl.formatMessage(intlMessages.toolbarTools)}
icon={annotationSelected.icon}
onItemClick={this.displaySubMenu}
objectToReturn="annotationList"
onBlur={this.closeSubMenu}
className={cx(styles.toolbarButton, currentSubmenuOpen === 'annotationList' ? styles.toolbarActive : null)}
showCornerTriangle
>
{currentSubmenuOpen === 'annotationList' && annotations.length > 1
? (
<ToolbarSubmenu
type="annotations"
customIcon={false}
label="Annotations"
onItemClick={this.handleAnnotationChange}
objectsToRender={panMode ? annotations[annotations.length - 1] : annotations}
objectSelected={annotationSelected}
handleMouseEnter={this.handleMouseEnter}
handleMouseLeave={this.handleMouseLeave}
handleClose={this.handleClose}
/>
)
: null}
</ToolbarMenuItem>
);
2017-09-23 14:27:55 +08:00
}
2017-04-19 08:54:51 +08:00
2017-09-23 14:27:55 +08:00
renderFontItem() {
const { intl, fontSizes } = this.props;
const { currentSubmenuOpen, fontSizeSelected } = this.state;
2017-12-08 21:28:02 +08:00
2017-04-19 08:54:51 +08:00
return (
2017-09-23 14:27:55 +08:00
<ToolbarMenuItem
2017-12-08 21:28:02 +08:00
label={intl.formatMessage(intlMessages.toolbarFontSize)}
2017-09-23 14:27:55 +08:00
customIcon={this.renderFontItemIcon()}
onItemClick={this.displaySubMenu}
objectToReturn="fontSizeList"
2017-09-23 14:27:55 +08:00
onBlur={this.closeSubMenu}
className={cx(styles.toolbarButton, currentSubmenuOpen === 'fontSizeList' ? styles.toolbarActive : null)}
showCornerTriangle
2017-09-23 14:27:55 +08:00
>
{currentSubmenuOpen === 'fontSizeList'
2018-12-06 01:42:31 +08:00
? (
<ToolbarSubmenu
type="font-size"
customIcon
label="Font Size"
onItemClick={this.handleFontSizeChange}
objectsToRender={fontSizes}
objectSelected={fontSizeSelected}
2018-12-06 01:42:31 +08:00
handleMouseEnter={this.handleMouseEnter}
handleMouseLeave={this.handleMouseLeave}
handleClose={this.handleClose}
2018-12-06 01:42:31 +08:00
/>
)
: null}
2017-09-23 14:27:55 +08:00
</ToolbarMenuItem>
2017-04-19 08:54:51 +08:00
);
}
2017-09-23 14:27:55 +08:00
renderFontItemIcon() {
const { fontSizeSelected, colorSelected } = this.state;
2017-09-23 14:27:55 +08:00
return (
<p
className={styles.textThickness}
style={{
fontSize: fontSizeSelected.value,
color: colorSelected.value,
2017-09-23 14:27:55 +08:00
WebkitTransition: `color ${TRANSITION_DURATION}, font-size ${TRANSITION_DURATION}`, /* Safari */
transition: `color ${TRANSITION_DURATION}, font-size ${TRANSITION_DURATION}`,
}}
>
Aa
</p>
);
}
2017-09-23 14:27:55 +08:00
renderThicknessItem() {
const {
intl,
annotations,
thicknessRadiuses,
} = this.props;
const {
annotationSelected,
currentSubmenuOpen,
thicknessSelected,
} = this.state;
const isDisabled = annotationSelected.value === 'hand' || !annotations.length;
return (
2017-09-23 14:27:55 +08:00
<ToolbarMenuItem
disabled={isDisabled}
2018-12-06 01:42:31 +08:00
label={isDisabled
? intl.formatMessage(intlMessages.toolbarLineThicknessDisabled)
: intl.formatMessage(intlMessages.toolbarLineThickness)}
2017-09-23 14:27:55 +08:00
onItemClick={this.displaySubMenu}
objectToReturn="thicknessList"
2017-09-23 14:27:55 +08:00
onBlur={this.closeSubMenu}
className={cx(styles.toolbarButton, currentSubmenuOpen === 'thicknessList' ? styles.toolbarActive : null)}
2017-09-23 14:27:55 +08:00
customIcon={this.renderThicknessItemIcon()}
showCornerTriangle
2017-09-23 14:27:55 +08:00
>
{currentSubmenuOpen === 'thicknessList'
2018-12-06 01:42:31 +08:00
? (
<ToolbarSubmenu
type="thickness"
customIcon
label="Thickness"
onItemClick={this.handleThicknessChange}
objectsToRender={thicknessRadiuses}
objectSelected={thicknessSelected}
2018-12-06 01:42:31 +08:00
handleMouseEnter={this.handleMouseEnter}
handleMouseLeave={this.handleMouseLeave}
handleClose={this.handleClose}
2018-12-06 01:42:31 +08:00
/>
)
: null}
2017-09-23 14:27:55 +08:00
</ToolbarMenuItem>
);
}
2017-09-23 14:27:55 +08:00
renderThicknessItemIcon() {
const {
colorSelected,
thicknessSelected,
prevThicknessSelected,
prevColorSelected,
} = this.state;
2017-09-23 14:27:55 +08:00
return (
<svg className={styles.customSvgIcon} shapeRendering="geometricPrecision">
{isEdge
? (
<circle
cx="50%"
cy="50%"
r={thicknessSelected.value}
stroke="black"
strokeWidth="1"
fill={colorSelected.value}
/>
)
: (
<circle
shapeRendering="geometricPrecision"
cx="50%"
cy="50%"
stroke="black"
strokeWidth="1"
>
<animate
ref={(ref) => { this.thicknessListIconColor = ref; }}
attributeName="fill"
attributeType="XML"
from={prevColorSelected.value}
to={colorSelected.value}
begin="indefinite"
dur={TRANSITION_DURATION}
repeatCount="1"
fill="freeze"
/>
<animate
ref={(ref) => { this.thicknessListIconRadius = ref; }}
attributeName="r"
attributeType="XML"
from={prevThicknessSelected.value}
to={thicknessSelected.value}
begin="indefinite"
dur={TRANSITION_DURATION}
repeatCount="1"
fill="freeze"
/>
</circle>
)}
2017-09-23 14:27:55 +08:00
</svg>
);
}
2017-04-19 08:54:51 +08:00
2017-09-23 14:27:55 +08:00
renderColorItem() {
const {
intl,
annotations,
colors,
} = this.props;
const {
annotationSelected,
currentSubmenuOpen,
colorSelected,
} = this.state;
const isDisabled = annotationSelected.value === 'hand' || !annotations.length;
2017-04-19 08:54:51 +08:00
return (
2017-09-23 14:27:55 +08:00
<ToolbarMenuItem
disabled={isDisabled}
2018-12-06 01:42:31 +08:00
label={isDisabled
? intl.formatMessage(intlMessages.toolbarLineColorDisabled)
: intl.formatMessage(intlMessages.toolbarLineColor)}
2017-09-23 14:27:55 +08:00
onItemClick={this.displaySubMenu}
objectToReturn="colorList"
2017-09-23 14:27:55 +08:00
onBlur={this.closeSubMenu}
className={cx(styles.toolbarButton, currentSubmenuOpen === 'colorList' ? styles.toolbarActive : null)}
2017-09-23 14:27:55 +08:00
customIcon={this.renderColorItemIcon()}
showCornerTriangle
2017-09-23 14:27:55 +08:00
>
{currentSubmenuOpen === 'colorList'
2018-12-06 01:42:31 +08:00
? (
<ToolbarSubmenu
type="color"
customIcon
label="Color"
onItemClick={this.handleColorChange}
objectsToRender={colors}
objectSelected={colorSelected}
2018-12-06 01:42:31 +08:00
handleMouseEnter={this.handleMouseEnter}
handleMouseLeave={this.handleMouseLeave}
handleClose={this.handleClose}
2018-12-06 01:42:31 +08:00
/>
)
: null}
2017-09-23 14:27:55 +08:00
</ToolbarMenuItem>
2017-04-19 08:54:51 +08:00
);
}
2017-09-23 14:27:55 +08:00
renderColorItemIcon() {
const {
colorSelected,
prevColorSelected,
} = this.state;
2017-09-23 14:27:55 +08:00
return (
<svg className={styles.customSvgIcon}>
{isEdge
? (
<rect
x="25%"
y="25%"
width="50%"
height="50%"
stroke="black"
strokeWidth="1"
fill={colorSelected.value}
/>
) : (
<rect x="25%" y="25%" width="50%" height="50%" stroke="black" strokeWidth="1">
<animate
ref={(ref) => { this.colorListIconColor = ref; }}
attributeName="fill"
attributeType="XML"
from={prevColorSelected.value}
to={colorSelected.value}
begin="indefinite"
dur={TRANSITION_DURATION}
repeatCount="1"
fill="freeze"
/>
</rect>
)
}
2017-09-23 14:27:55 +08:00
</svg>
);
}
2017-04-19 08:54:51 +08:00
2017-09-23 14:27:55 +08:00
renderUndoItem() {
2019-06-27 00:29:34 +08:00
const { intl, isMeteorConnected } = this.props;
2017-12-08 21:28:02 +08:00
2017-04-19 08:54:51 +08:00
return (
2017-09-23 14:27:55 +08:00
<ToolbarMenuItem
2019-06-27 00:29:34 +08:00
disabled={!isMeteorConnected}
2017-12-08 21:28:02 +08:00
label={intl.formatMessage(intlMessages.toolbarUndoAnnotation)}
icon="undo"
2017-09-23 14:27:55 +08:00
onItemClick={this.handleUndo}
2018-12-06 01:42:31 +08:00
className={styles.toolbarButton}
2017-09-23 14:27:55 +08:00
/>
);
}
renderClearAllItem() {
2019-06-27 00:29:34 +08:00
const { intl, isMeteorConnected } = this.props;
2017-12-08 21:28:02 +08:00
2017-09-23 14:27:55 +08:00
return (
<ToolbarMenuItem
2019-06-27 00:29:34 +08:00
disabled={!isMeteorConnected}
2017-12-08 21:28:02 +08:00
label={intl.formatMessage(intlMessages.toolbarClearAnnotations)}
icon="delete"
2017-09-23 14:27:55 +08:00
onItemClick={this.handleClearAll}
2018-12-06 01:42:31 +08:00
className={styles.toolbarButton}
2017-09-23 14:27:55 +08:00
/>
);
}
renderMultiUserItem() {
const {
intl, multiUser, isMeteorConnected, withAccessNum,
} = this.props;
2017-09-23 14:27:55 +08:00
return (
<span className={styles.multiUserToolItem}>
{withAccessNum > 0 && <span className={styles.multiUserTool}>{withAccessNum}</span>}
<ToolbarMenuItem
disabled={!isMeteorConnected}
label={multiUser
? intl.formatMessage(intlMessages.toolbarMultiUserOff)
: intl.formatMessage(intlMessages.toolbarMultiUserOn)
}
icon={multiUser ? 'multi_whiteboard' : 'whiteboard'}
onItemClick={this.handleSwitchWhiteboardMode}
className={styles.toolbarButton}
/>
</span>
2017-04-19 08:54:51 +08:00
);
}
render() {
2017-09-23 14:27:55 +08:00
const { annotationSelected } = this.state;
const { isPresenter } = this.props;
2017-04-19 08:54:51 +08:00
return (
2018-04-10 04:06:11 +08:00
<div className={styles.toolbarContainer}>
2017-04-19 08:54:51 +08:00
<div className={styles.toolbarWrapper}>
2017-09-23 14:27:55 +08:00
{this.renderToolItem()}
{annotationSelected.value === 'text' ? this.renderFontItem() : this.renderThicknessItem()}
2017-09-23 14:27:55 +08:00
{this.renderColorItem()}
{this.renderUndoItem()}
{this.renderClearAllItem()}
{isPresenter ? this.renderMultiUserItem() : null}
2017-04-19 08:54:51 +08:00
</div>
</div>
);
}
}
WhiteboardToolbar.defaultProps = {
colors: ANNOTATION_COLORS,
thicknessRadiuses: THICKNESS_RADIUSES,
fontSizes: FONT_SIZES,
intl: {},
2017-04-19 08:54:51 +08:00
};
WhiteboardToolbar.propTypes = {
// defines a current mode of the whiteboard, multi/single user
multiUser: PropTypes.bool.isRequired,
// defines whether a current user is a presenter or not
isPresenter: PropTypes.bool.isRequired,
// defines an object of available actions
actions: PropTypes.objectOf(PropTypes.func).isRequired,
// defines the id of the active text shape (if any)
// for the separate onBlur case in the closeSubMenu()
textShapeActiveId: PropTypes.string.isRequired,
// defines a current whiteboard id
whiteboardId: PropTypes.string.isRequired,
// defines an array of icons for the toolbar as well as their corresponding session values
annotations: PropTypes.arrayOf(PropTypes.object).isRequired,
// defines an array of font-sizes for the Font-size submenu of the text shape
fontSizes: PropTypes.arrayOf(PropTypes.shape({
value: PropTypes.number.isRequired,
}).isRequired),
// defines an array of colors for the toolbar (color submenu)
colors: PropTypes.arrayOf(PropTypes.shape({
value: PropTypes.string.isRequired,
}).isRequired),
// defines an array of thickness values for the toolbar and their corresponding session values
thicknessRadiuses: PropTypes.arrayOf(PropTypes.shape({
value: PropTypes.number.isRequired,
}).isRequired),
intl: PropTypes.object.isRequired,
2017-12-08 21:28:02 +08:00
};
2017-12-08 21:28:02 +08:00
export default injectWbResizeEvent(injectIntl(WhiteboardToolbar));