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';
|
2017-09-22 07:52:43 +08:00
|
|
|
import { HEXToINTColor, INTToHEXColor } from '/imports/utils/hexInt';
|
2018-01-11 03:22:42 +08:00
|
|
|
import { defineMessages, injectIntl, intlShape } from 'react-intl';
|
2018-06-08 04:00:29 +08:00
|
|
|
import browser from 'browser-detect';
|
2018-06-12 04:30:15 +08:00
|
|
|
import { noop } from 'lodash';
|
2019-03-28 01:15:19 +08:00
|
|
|
import KEY_CODES from '/imports/utils/keyCodes';
|
2017-09-26 07:45:44 +08:00
|
|
|
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';
|
2017-09-22 07:44:32 +08:00
|
|
|
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',
|
|
|
|
},
|
2018-03-27 02:08:19 +08:00
|
|
|
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',
|
|
|
|
},
|
2018-03-27 02:08:19 +08:00
|
|
|
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',
|
|
|
|
},
|
2019-03-28 01:15:19 +08:00
|
|
|
toolbarItemPan: {
|
|
|
|
id: 'app.whiteboard.toolbar.tools.hand',
|
|
|
|
description: 'Label for the pan toolbar item',
|
|
|
|
},
|
2017-12-08 21:28:02 +08:00
|
|
|
});
|
|
|
|
|
2019-02-28 23:11:36 +08:00
|
|
|
const isEdge = browser().name === 'edge';
|
|
|
|
const runExceptInEdge = fn => (isEdge ? noop : fn);
|
2018-06-08 04:00:29 +08:00
|
|
|
|
2017-09-26 07:45:44 +08:00
|
|
|
class WhiteboardToolbar extends Component {
|
2018-09-22 03:42:39 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
const { annotations } = this.props;
|
2018-09-18 22:16:11 +08:00
|
|
|
const isMobile = browser().mobile;
|
2018-09-22 03:42:39 +08:00
|
|
|
|
|
|
|
let annotationSelected = {
|
2018-10-20 01:05:56 +08:00
|
|
|
icon: isMobile ? 'hand' : 'pen_tool',
|
|
|
|
value: isMobile ? 'hand' : 'pencil',
|
2018-09-22 03:42:39 +08:00
|
|
|
};
|
|
|
|
|
2018-10-20 01:05:56 +08:00
|
|
|
if (!annotations.some(el => el.value === annotationSelected.value) && annotations.length > 0) {
|
2018-09-22 03:42:39 +08:00
|
|
|
annotationSelected = annotations[annotations.length - 1];
|
|
|
|
}
|
2017-04-19 08:54:51 +08:00
|
|
|
|
|
|
|
this.state = {
|
2017-08-03 09:24:38 +08:00
|
|
|
// a variable to control which list is currently open
|
2017-04-19 08:54:51 +08:00
|
|
|
currentSubmenuOpen: '',
|
2017-05-03 08:05:41 +08:00
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// variables to keep current selected draw settings
|
2018-09-22 03:42:39 +08:00
|
|
|
annotationSelected,
|
2019-03-28 01:15:19 +08:00
|
|
|
prevAnnotationSelected: annotationSelected,
|
2019-01-17 03:17:26 +08:00
|
|
|
thicknessSelected: { value: 2 },
|
2019-01-15 02:11:06 +08:00
|
|
|
colorSelected: { value: '#ff0000' },
|
2017-09-23 14:27:55 +08:00
|
|
|
fontSizeSelected: { value: 20 },
|
2017-05-03 08:05:41 +08:00
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// keeping the previous color and the thickness icon's radius selected for svg animation
|
2019-01-15 02:11:06 +08:00
|
|
|
prevColorSelected: { value: '#ff0000' },
|
2019-01-17 03:17:26 +08:00
|
|
|
prevThicknessSelected: { value: 2 },
|
2017-06-03 08:41:39 +08:00
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// 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,
|
2019-03-28 01:15:19 +08:00
|
|
|
|
|
|
|
panMode: false,
|
2017-04-19 08:54:51 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
this.displaySubMenu = this.displaySubMenu.bind(this);
|
|
|
|
this.closeSubMenu = this.closeSubMenu.bind(this);
|
|
|
|
this.handleUndo = this.handleUndo.bind(this);
|
2017-04-22 02:01:52 +08:00
|
|
|
this.handleClearAll = this.handleClearAll.bind(this);
|
2017-08-03 09:24:38 +08:00
|
|
|
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);
|
2017-06-03 07:46:02 +08:00
|
|
|
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);
|
2018-06-08 04:00:29 +08:00
|
|
|
this.componentDidMount = runExceptInEdge(this.componentDidMount);
|
|
|
|
this.componentDidUpdate = runExceptInEdge(this.componentDidUpdate);
|
2019-03-28 01:15:19 +08:00
|
|
|
this.panOn = this.panOn.bind(this);
|
|
|
|
this.panOff = this.panOff.bind(this);
|
2017-04-19 08:54:51 +08:00
|
|
|
}
|
|
|
|
|
2017-05-03 08:05:41 +08:00
|
|
|
componentWillMount() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { actions } = this.props;
|
|
|
|
const drawSettings = actions.getCurrentDrawSettings();
|
2017-09-06 06:55:18 +08:00
|
|
|
// if there are saved drawSettings in the session storage
|
|
|
|
// - retrieve them and update toolbar values
|
|
|
|
if (drawSettings) {
|
|
|
|
this.setToolbarValues(drawSettings);
|
|
|
|
// no drawSettings in the sessionStorage - setting default values
|
|
|
|
} else {
|
|
|
|
// setting default drawing settings if they haven't been set previously
|
2018-04-12 04:50:00 +08:00
|
|
|
const {
|
|
|
|
annotationSelected, thicknessSelected, colorSelected, fontSizeSelected,
|
|
|
|
} = this.state;
|
2019-03-28 01:15:19 +08:00
|
|
|
actions.setInitialWhiteboardToolbarValues(
|
2017-09-23 14:27:55 +08:00
|
|
|
annotationSelected.value,
|
|
|
|
thicknessSelected.value * 2,
|
|
|
|
HEXToINTColor(colorSelected.value),
|
|
|
|
fontSizeSelected.value,
|
2017-09-06 06:55:18 +08:00
|
|
|
{
|
|
|
|
textShapeValue: '',
|
|
|
|
textShapeActiveId: '',
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
2017-05-03 08:05:41 +08:00
|
|
|
}
|
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
componentDidMount() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { annotationSelected } = this.state;
|
|
|
|
|
|
|
|
document.addEventListener('keydown', this.panOn);
|
|
|
|
document.addEventListener('keyup', this.panOff);
|
|
|
|
|
|
|
|
if (annotationSelected.value !== 'text') {
|
2017-08-03 09:24:38 +08:00
|
|
|
// trigger initial animation on the thickness circle, otherwise it stays at 0
|
2017-09-06 06:55:18 +08:00
|
|
|
this.thicknessListIconColor.beginElement();
|
2017-08-19 10:47:31 +08:00
|
|
|
this.thicknessListIconRadius.beginElement();
|
2017-09-06 06:55:18 +08:00
|
|
|
this.colorListIconColor.beginElement();
|
|
|
|
} else {
|
|
|
|
this.colorListIconColor.beginElement();
|
2017-06-07 07:47:31 +08:00
|
|
|
}
|
2017-04-19 08:54:51 +08:00
|
|
|
}
|
|
|
|
|
2017-06-03 08:41:39 +08:00
|
|
|
componentDidUpdate(prevProps, prevState) {
|
2018-10-20 01:05:56 +08:00
|
|
|
const { annotations } = this.props;
|
|
|
|
const { annotationSelected } = prevState;
|
|
|
|
const hadInAnnotations = annotations.some(el => el.value === annotationSelected.value);
|
|
|
|
|
2017-06-08 05:40:15 +08:00
|
|
|
// if color or thickness were changed
|
|
|
|
// we might need to trigger svg animation for Color and Thickness icons
|
|
|
|
this.animateSvgIcons(prevState);
|
2018-10-20 01:05:56 +08:00
|
|
|
|
2018-10-26 22:17:41 +08:00
|
|
|
if (prevProps.annotations.length !== annotations.length && annotations.length === 0) {
|
|
|
|
this.handleAnnotationChange({ icon: null, value: null });
|
|
|
|
}
|
|
|
|
|
2018-10-25 00:26:23 +08:00
|
|
|
if (!hadInAnnotations && annotations.length) {
|
2018-10-20 01:05:56 +08:00
|
|
|
this.handleAnnotationChange(annotations[annotations.length - 1]);
|
|
|
|
}
|
2017-06-08 05:40:15 +08:00
|
|
|
}
|
|
|
|
|
2019-03-28 01:15:19 +08:00
|
|
|
componentWillUnmount() {
|
|
|
|
document.removeEventListener('keydown', this.panOn);
|
|
|
|
document.removeEventListener('keyup', this.panOff);
|
|
|
|
}
|
|
|
|
|
2017-09-06 06:55:18 +08:00
|
|
|
setToolbarValues(drawSettings) {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
annotations,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
const {
|
|
|
|
whiteboardAnnotationThickness,
|
|
|
|
textFontSize, whiteboardAnnotationColor,
|
|
|
|
whiteboardAnnotationTool,
|
|
|
|
} = drawSettings;
|
|
|
|
|
2017-09-06 06:55:18 +08:00
|
|
|
// divide by 2, since we need the radius for the thickness icon
|
2019-03-28 01:15:19 +08:00
|
|
|
const thicknessSelected = { value: whiteboardAnnotationThickness / 2 };
|
|
|
|
const fontSizeSelected = { value: textFontSize };
|
|
|
|
const colorSelected = { value: INTToHEXColor(whiteboardAnnotationColor) };
|
2017-09-06 06:55:18 +08:00
|
|
|
|
|
|
|
let annotationSelected = {};
|
2019-03-28 01:15:19 +08:00
|
|
|
for (let i = 0; i < annotations.length; i += 1) {
|
|
|
|
if (whiteboardAnnotationTool === annotations[i].value) {
|
|
|
|
annotationSelected = annotations[i];
|
2017-09-06 06:55:18 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
colorSelected,
|
|
|
|
fontSizeSelected,
|
|
|
|
thicknessSelected,
|
|
|
|
annotationSelected,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-03-28 01:15:19 +08:00
|
|
|
panOn(event) {
|
|
|
|
const { annotationSelected } = this.state;
|
|
|
|
const { target, which } = event;
|
2019-04-04 21:55:35 +08:00
|
|
|
const isBody = target.nodeName === 'BODY';
|
2019-03-28 01:15:19 +08:00
|
|
|
|
2019-04-04 21:55:35 +08:00
|
|
|
if (annotationSelected.value === 'hand' || !isBody) return;
|
2019-03-28 01:15:19 +08:00
|
|
|
|
|
|
|
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';
|
|
|
|
|
|
|
|
if (isInputArea) return;
|
|
|
|
|
|
|
|
const { prevAnnotationSelected } = this.state;
|
|
|
|
|
|
|
|
if ([KEY_CODES.SPACE].includes(which)) {
|
|
|
|
this.setState({ panMode: false },
|
|
|
|
this.handleAnnotationChange(prevAnnotationSelected));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-08 05:40:15 +08:00
|
|
|
animateSvgIcons(prevState) {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
colorSelected,
|
|
|
|
annotationSelected,
|
|
|
|
thicknessSelected,
|
|
|
|
} = this.state;
|
|
|
|
|
2017-06-17 10:32:41 +08:00
|
|
|
/* 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
|
2017-06-17 10:32:41 +08:00
|
|
|
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
|
2019-03-28 01:15:19 +08:00
|
|
|
if (colorSelected.value !== prevState.colorSelected.value) {
|
2017-06-17 10:32:41 +08:00
|
|
|
// 1st case b)
|
2019-03-28 01:15:19 +08:00
|
|
|
if (annotationSelected.value !== 'text') {
|
2017-08-19 10:47:31 +08:00
|
|
|
this.thicknessListIconColor.beginElement();
|
2017-06-08 05:40:15 +08:00
|
|
|
}
|
2017-09-06 09:36:15 +08:00
|
|
|
// 1st case a)
|
|
|
|
this.colorListIconColor.beginElement();
|
2017-06-17 10:32:41 +08:00
|
|
|
// 2nd case
|
2019-03-28 01:15:19 +08:00
|
|
|
} else if (thicknessSelected.value !== prevState.thicknessSelected.value) {
|
2017-08-19 10:47:31 +08:00
|
|
|
this.thicknessListIconRadius.beginElement();
|
2018-06-08 05:36:55 +08:00
|
|
|
// 3rd case
|
2019-03-28 01:15:19 +08:00
|
|
|
} else if (annotationSelected.value !== 'text'
|
2018-12-06 01:42:31 +08:00
|
|
|
&& prevState.annotationSelected.value === 'text') {
|
2017-08-19 10:47:31 +08:00
|
|
|
this.thicknessListIconRadius.beginElement();
|
|
|
|
this.thicknessListIconColor.beginElement();
|
2017-06-17 10:32:41 +08:00
|
|
|
}
|
2017-09-06 06:55:18 +08:00
|
|
|
// 4th case, initial animation is triggered in componentDidMount
|
2017-06-03 08:41:39 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// open a submenu
|
2017-04-19 08:54:51 +08:00
|
|
|
displaySubMenu(listName) {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { currentSubmenuOpen } = this.state;
|
2017-04-19 08:54:51 +08:00
|
|
|
this.setState({
|
2019-03-28 01:15:19 +08:00
|
|
|
currentSubmenuOpen: currentSubmenuOpen === listName ? '' : listName,
|
2017-04-19 08:54:51 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +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() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
annotationSelected,
|
|
|
|
onBlurEnabled,
|
|
|
|
} = this.state;
|
|
|
|
|
|
|
|
const {
|
|
|
|
textShapeActiveId,
|
|
|
|
} = this.props;
|
|
|
|
|
2017-06-17 10:32:41 +08:00
|
|
|
// a separate case for the active text shape
|
2019-03-28 01:15:19 +08:00
|
|
|
if (annotationSelected.value === 'text' && textShapeActiveId !== '') return;
|
2017-06-17 10:32:41 +08:00
|
|
|
|
2019-03-28 01:15:19 +08:00
|
|
|
if (onBlurEnabled) {
|
2017-04-19 08:54:51 +08:00
|
|
|
this.setState({
|
|
|
|
currentSubmenuOpen: undefined,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// undo annotation
|
2017-04-19 08:54:51 +08:00
|
|
|
handleUndo() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
actions,
|
|
|
|
whiteboardId,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
actions.undoAnnotation(whiteboardId);
|
2017-04-19 08:54:51 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// clear all annotations
|
2017-04-22 02:01:52 +08:00
|
|
|
handleClearAll() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
actions,
|
|
|
|
whiteboardId,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
actions.clearWhiteboard(whiteboardId);
|
2017-04-19 08:54:51 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
handleSwitchWhiteboardMode() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
multiUser,
|
|
|
|
whiteboardId,
|
|
|
|
actions,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
actions.changeWhiteboardMode(!multiUser, whiteboardId);
|
2017-08-03 09:24:38 +08:00
|
|
|
}
|
2017-05-03 08:05:41 +08:00
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// changes a current selected annotation both in the state and in the session
|
|
|
|
// and closes the annotation list
|
|
|
|
handleAnnotationChange(annotation) {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { actions } = this.props;
|
2017-06-17 10:32:41 +08:00
|
|
|
const obj = {
|
2017-04-19 08:54:51 +08:00
|
|
|
annotationSelected: annotation,
|
|
|
|
onBlurEnabled: true,
|
|
|
|
currentSubmenuOpen: '',
|
2017-06-17 10:32:41 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
// 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 };
|
2017-06-17 10:32:41 +08:00
|
|
|
}
|
|
|
|
|
2019-03-28 01:15:19 +08:00
|
|
|
actions.setTool(annotation.value);
|
2017-06-17 10:32:41 +08:00
|
|
|
this.setState(obj);
|
2017-04-19 08:54:51 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// changes a current selected thickness both in the state and in the session
|
|
|
|
// and closes the thickness list
|
2019-03-28 01:15:19 +08:00
|
|
|
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
|
2019-03-28 01:15:19 +08:00
|
|
|
actions.setThickness(incomingThickness.value * 2);
|
2017-05-03 08:05:41 +08:00
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
this.setState({
|
2019-03-28 01:15:19 +08:00
|
|
|
prevThicknessSelected: thicknessSelected,
|
2019-05-10 05:36:16 +08:00
|
|
|
thicknessSelected: incomingThickness,
|
2017-04-19 08:54:51 +08:00
|
|
|
onBlurEnabled: true,
|
|
|
|
currentSubmenuOpen: '',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-09-23 14:27:55 +08:00
|
|
|
handleFontSizeChange(fontSize) {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { actions } = this.props;
|
|
|
|
actions.setFontSize(fontSize.value);
|
2017-06-03 07:46:02 +08:00
|
|
|
|
|
|
|
this.setState({
|
2017-09-23 14:27:55 +08:00
|
|
|
fontSizeSelected: fontSize,
|
2017-06-03 07:46:02 +08:00
|
|
|
onBlurEnabled: true,
|
|
|
|
currentSubmenuOpen: '',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// 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) {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { actions } = this.props;
|
|
|
|
const { colorSelected } = this.state;
|
|
|
|
actions.setColor(HEXToINTColor(color.value));
|
2017-06-17 10:32:41 +08:00
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
this.setState({
|
2019-03-28 01:15:19 +08:00
|
|
|
prevColorSelected: colorSelected,
|
2017-04-19 08:54:51 +08:00
|
|
|
colorSelected: color,
|
|
|
|
onBlurEnabled: true,
|
|
|
|
currentSubmenuOpen: '',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// 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,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// 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() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { panMode, annotationSelected, currentSubmenuOpen } = this.state;
|
2018-10-25 00:26:23 +08:00
|
|
|
const { intl, annotations } = this.props;
|
2018-10-26 22:17:41 +08:00
|
|
|
const isDisabled = !annotations.length;
|
2019-03-28 01:15:19 +08:00
|
|
|
|
|
|
|
return panMode
|
|
|
|
? (
|
|
|
|
<ToolbarMenuItem
|
|
|
|
icon="hand"
|
|
|
|
label={intl.formatMessage(intlMessages.toolbarItemPan)}
|
|
|
|
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)}
|
|
|
|
>
|
|
|
|
{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}
|
|
|
|
/>
|
|
|
|
)
|
|
|
|
: 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() {
|
2019-03-28 01:15:19 +08:00
|
|
|
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}
|
2018-04-12 04:50:00 +08:00
|
|
|
objectToReturn="fontSizeList"
|
2017-09-23 14:27:55 +08:00
|
|
|
onBlur={this.closeSubMenu}
|
2019-03-28 01:15:19 +08:00
|
|
|
className={cx(styles.toolbarButton, currentSubmenuOpen === 'fontSizeList' ? styles.toolbarActive : null)}
|
2017-09-23 14:27:55 +08:00
|
|
|
>
|
2019-03-28 01:15:19 +08:00
|
|
|
{currentSubmenuOpen === 'fontSizeList'
|
2018-12-06 01:42:31 +08:00
|
|
|
? (
|
|
|
|
<ToolbarSubmenu
|
|
|
|
type="font-size"
|
|
|
|
customIcon
|
|
|
|
label="Font Size"
|
|
|
|
onItemClick={this.handleFontSizeChange}
|
2019-03-28 01:15:19 +08:00
|
|
|
objectsToRender={fontSizes}
|
|
|
|
objectSelected={fontSizeSelected}
|
2018-12-06 01:42:31 +08:00
|
|
|
handleMouseEnter={this.handleMouseEnter}
|
|
|
|
handleMouseLeave={this.handleMouseLeave}
|
|
|
|
/>
|
|
|
|
)
|
2018-10-25 00:26:23 +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() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const { fontSizeSelected, colorSelected } = this.state;
|
2017-09-23 14:27:55 +08:00
|
|
|
return (
|
|
|
|
<p
|
|
|
|
className={styles.textThickness}
|
|
|
|
style={{
|
2019-03-28 01:15:19 +08:00
|
|
|
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-06-03 07:46:02 +08:00
|
|
|
|
2017-09-23 14:27:55 +08:00
|
|
|
renderThicknessItem() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
intl,
|
|
|
|
annotations,
|
|
|
|
thicknessRadiuses,
|
|
|
|
} = this.props;
|
|
|
|
|
|
|
|
const {
|
|
|
|
annotationSelected,
|
|
|
|
currentSubmenuOpen,
|
|
|
|
thicknessSelected,
|
|
|
|
} = this.state;
|
|
|
|
|
|
|
|
const isDisabled = annotationSelected.value === 'hand' || !annotations.length;
|
2017-06-03 07:46:02 +08:00
|
|
|
return (
|
2017-09-23 14:27:55 +08:00
|
|
|
<ToolbarMenuItem
|
2018-03-27 02:08:19 +08:00
|
|
|
disabled={isDisabled}
|
2018-12-06 01:42:31 +08:00
|
|
|
label={isDisabled
|
|
|
|
? intl.formatMessage(intlMessages.toolbarLineThicknessDisabled)
|
2018-03-27 02:08:19 +08:00
|
|
|
: intl.formatMessage(intlMessages.toolbarLineThickness)}
|
2017-09-23 14:27:55 +08:00
|
|
|
onItemClick={this.displaySubMenu}
|
2018-04-12 04:50:00 +08:00
|
|
|
objectToReturn="thicknessList"
|
2017-09-23 14:27:55 +08:00
|
|
|
onBlur={this.closeSubMenu}
|
2019-03-28 01:15:19 +08:00
|
|
|
className={cx(styles.toolbarButton, currentSubmenuOpen === 'thicknessList' ? styles.toolbarActive : null)}
|
2017-09-23 14:27:55 +08:00
|
|
|
customIcon={this.renderThicknessItemIcon()}
|
|
|
|
>
|
2019-03-28 01:15:19 +08:00
|
|
|
{currentSubmenuOpen === 'thicknessList'
|
2018-12-06 01:42:31 +08:00
|
|
|
? (
|
|
|
|
<ToolbarSubmenu
|
|
|
|
type="thickness"
|
|
|
|
customIcon
|
|
|
|
label="Thickness"
|
|
|
|
onItemClick={this.handleThicknessChange}
|
2019-03-28 01:15:19 +08:00
|
|
|
objectsToRender={thicknessRadiuses}
|
|
|
|
objectSelected={thicknessSelected}
|
2018-12-06 01:42:31 +08:00
|
|
|
handleMouseEnter={this.handleMouseEnter}
|
|
|
|
handleMouseLeave={this.handleMouseLeave}
|
|
|
|
/>
|
|
|
|
)
|
2018-10-25 00:26:23 +08:00
|
|
|
: null}
|
2017-09-23 14:27:55 +08:00
|
|
|
</ToolbarMenuItem>
|
2017-06-03 07:46:02 +08:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-09-23 14:27:55 +08:00
|
|
|
renderThicknessItemIcon() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
colorSelected,
|
|
|
|
thicknessSelected,
|
|
|
|
prevThicknessSelected,
|
|
|
|
prevColorSelected,
|
|
|
|
} = this.state;
|
|
|
|
|
2017-09-23 14:27:55 +08:00
|
|
|
return (
|
|
|
|
<svg className={styles.customSvgIcon} shapeRendering="geometricPrecision">
|
2019-02-28 23:11:36 +08:00
|
|
|
{isEdge
|
|
|
|
? (
|
|
|
|
<circle
|
|
|
|
cx="50%"
|
|
|
|
cy="50%"
|
2019-03-28 01:15:19 +08:00
|
|
|
r={thicknessSelected.value}
|
2019-02-28 23:11:36 +08:00
|
|
|
stroke="black"
|
|
|
|
strokeWidth="1"
|
2019-03-28 01:15:19 +08:00
|
|
|
fill={colorSelected.value}
|
2018-05-12 02:12:27 +08:00
|
|
|
/>
|
2019-02-28 23:11:36 +08:00
|
|
|
)
|
|
|
|
: (
|
|
|
|
<circle
|
|
|
|
shapeRendering="geometricPrecision"
|
|
|
|
cx="50%"
|
|
|
|
cy="50%"
|
|
|
|
stroke="black"
|
|
|
|
strokeWidth="1"
|
|
|
|
>
|
|
|
|
<animate
|
|
|
|
ref={(ref) => { this.thicknessListIconColor = ref; }}
|
|
|
|
attributeName="fill"
|
|
|
|
attributeType="XML"
|
2019-03-28 01:15:19 +08:00
|
|
|
from={prevColorSelected.value}
|
|
|
|
to={colorSelected.value}
|
2019-02-28 23:11:36 +08:00
|
|
|
begin="indefinite"
|
|
|
|
dur={TRANSITION_DURATION}
|
|
|
|
repeatCount="0"
|
|
|
|
fill="freeze"
|
|
|
|
/>
|
|
|
|
<animate
|
|
|
|
ref={(ref) => { this.thicknessListIconRadius = ref; }}
|
|
|
|
attributeName="r"
|
|
|
|
attributeType="XML"
|
2019-03-28 01:15:19 +08:00
|
|
|
from={prevThicknessSelected.value}
|
|
|
|
to={thicknessSelected.value}
|
2019-02-28 23:11:36 +08:00
|
|
|
begin="indefinite"
|
|
|
|
dur={TRANSITION_DURATION}
|
|
|
|
repeatCount="0"
|
|
|
|
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() {
|
2019-03-28 01:15:19 +08:00
|
|
|
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
|
2018-03-27 02:08:19 +08:00
|
|
|
disabled={isDisabled}
|
2018-12-06 01:42:31 +08:00
|
|
|
label={isDisabled
|
|
|
|
? intl.formatMessage(intlMessages.toolbarLineColorDisabled)
|
2018-03-27 02:08:19 +08:00
|
|
|
: intl.formatMessage(intlMessages.toolbarLineColor)}
|
2017-09-23 14:27:55 +08:00
|
|
|
onItemClick={this.displaySubMenu}
|
2018-04-12 04:50:00 +08:00
|
|
|
objectToReturn="colorList"
|
2017-09-23 14:27:55 +08:00
|
|
|
onBlur={this.closeSubMenu}
|
2019-03-28 01:15:19 +08:00
|
|
|
className={cx(styles.toolbarButton, currentSubmenuOpen === 'colorList' ? styles.toolbarActive : null)}
|
2017-09-23 14:27:55 +08:00
|
|
|
customIcon={this.renderColorItemIcon()}
|
|
|
|
>
|
2019-03-28 01:15:19 +08:00
|
|
|
{currentSubmenuOpen === 'colorList'
|
2018-12-06 01:42:31 +08:00
|
|
|
? (
|
|
|
|
<ToolbarSubmenu
|
|
|
|
type="color"
|
|
|
|
customIcon
|
|
|
|
label="Color"
|
|
|
|
onItemClick={this.handleColorChange}
|
2019-03-28 01:15:19 +08:00
|
|
|
objectsToRender={colors}
|
|
|
|
objectSelected={colorSelected}
|
2018-12-06 01:42:31 +08:00
|
|
|
handleMouseEnter={this.handleMouseEnter}
|
|
|
|
handleMouseLeave={this.handleMouseLeave}
|
|
|
|
/>
|
|
|
|
)
|
2018-10-25 00:26:23 +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() {
|
2019-03-28 01:15:19 +08:00
|
|
|
const {
|
|
|
|
colorSelected,
|
|
|
|
prevColorSelected,
|
|
|
|
} = this.state;
|
|
|
|
|
2017-09-23 14:27:55 +08:00
|
|
|
return (
|
|
|
|
<svg className={styles.customSvgIcon}>
|
2019-02-28 23:11:36 +08:00
|
|
|
{isEdge
|
|
|
|
? (
|
|
|
|
<rect
|
|
|
|
x="25%"
|
|
|
|
y="25%"
|
|
|
|
width="50%"
|
|
|
|
height="50%"
|
|
|
|
stroke="black"
|
|
|
|
strokeWidth="1"
|
2019-03-28 01:15:19 +08:00
|
|
|
fill={colorSelected.value}
|
2018-05-12 02:16:01 +08:00
|
|
|
/>
|
2019-02-28 23:11:36 +08:00
|
|
|
) : (
|
|
|
|
<rect x="25%" y="25%" width="50%" height="50%" stroke="black" strokeWidth="1">
|
|
|
|
<animate
|
|
|
|
ref={(ref) => { this.colorListIconColor = ref; }}
|
|
|
|
attributeName="fill"
|
|
|
|
attributeType="XML"
|
2019-03-28 01:15:19 +08:00
|
|
|
from={prevColorSelected.value}
|
|
|
|
to={colorSelected.value}
|
2019-02-28 23:11:36 +08:00
|
|
|
begin="indefinite"
|
|
|
|
dur={TRANSITION_DURATION}
|
|
|
|
repeatCount="0"
|
|
|
|
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() {
|
2017-12-08 21:28:02 +08:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
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.toolbarUndoAnnotation)}
|
2018-04-12 04:50:00 +08:00
|
|
|
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() {
|
2017-12-08 21:28:02 +08:00
|
|
|
const { intl } = this.props;
|
|
|
|
|
2017-09-23 14:27:55 +08:00
|
|
|
return (
|
|
|
|
<ToolbarMenuItem
|
2017-12-08 21:28:02 +08:00
|
|
|
label={intl.formatMessage(intlMessages.toolbarClearAnnotations)}
|
2018-11-30 04:35:34 +08:00
|
|
|
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() {
|
2017-12-08 21:28:02 +08:00
|
|
|
const { intl, multiUser } = this.props;
|
2017-09-23 14:27:55 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<ToolbarMenuItem
|
2018-12-06 01:42:31 +08:00
|
|
|
label={multiUser
|
|
|
|
? intl.formatMessage(intlMessages.toolbarMultiUserOff)
|
|
|
|
: intl.formatMessage(intlMessages.toolbarMultiUserOn)
|
2018-10-25 00:26:23 +08:00
|
|
|
}
|
2017-09-23 14:27:55 +08:00
|
|
|
icon={multiUser ? 'multi_whiteboard' : 'whiteboard'}
|
|
|
|
onItemClick={this.handleSwitchWhiteboardMode}
|
2018-12-06 01:42:31 +08:00
|
|
|
className={styles.toolbarButton}
|
2017-09-23 14:27:55 +08:00
|
|
|
/>
|
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()}
|
2018-10-25 00:26:23 +08:00
|
|
|
{annotationSelected.value === 'text' ? this.renderFontItem() : this.renderThicknessItem()}
|
2017-09-23 14:27:55 +08:00
|
|
|
{this.renderColorItem()}
|
|
|
|
{this.renderUndoItem()}
|
|
|
|
{this.renderClearAllItem()}
|
2018-10-25 00:26:23 +08:00
|
|
|
{isPresenter ? this.renderMultiUserItem() : null}
|
2017-04-19 08:54:51 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
WhiteboardToolbar.defaultProps = {
|
2017-09-22 07:44:32 +08:00
|
|
|
colors: ANNOTATION_COLORS,
|
|
|
|
thicknessRadiuses: THICKNESS_RADIUSES,
|
|
|
|
fontSizes: FONT_SIZES,
|
2018-10-25 00:26:23 +08:00
|
|
|
intl: intlShape,
|
2017-04-19 08:54:51 +08:00
|
|
|
};
|
|
|
|
|
2017-08-03 09:24:38 +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
|
2018-04-12 04:50:00 +08:00
|
|
|
fontSizes: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
value: PropTypes.number.isRequired,
|
2018-10-25 00:26:23 +08:00
|
|
|
}).isRequired),
|
2017-08-03 09:24:38 +08:00
|
|
|
|
|
|
|
// defines an array of colors for the toolbar (color submenu)
|
2018-04-12 04:50:00 +08:00
|
|
|
colors: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
value: PropTypes.string.isRequired,
|
2018-10-25 00:26:23 +08:00
|
|
|
}).isRequired),
|
2017-08-03 09:24:38 +08:00
|
|
|
// defines an array of thickness values for the toolbar and their corresponding session values
|
2018-04-12 04:50:00 +08:00
|
|
|
thicknessRadiuses: PropTypes.arrayOf(PropTypes.shape({
|
|
|
|
value: PropTypes.number.isRequired,
|
2018-10-25 00:26:23 +08:00
|
|
|
}).isRequired),
|
2017-08-03 09:24:38 +08:00
|
|
|
|
2018-10-25 00:26:23 +08:00
|
|
|
intl: intlShape,
|
2017-12-08 21:28:02 +08:00
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
};
|
2017-09-26 07:45:44 +08:00
|
|
|
|
2017-12-08 21:28:02 +08:00
|
|
|
export default injectWbResizeEvent(injectIntl(WhiteboardToolbar));
|