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-08-03 09:24:38 +08:00
|
|
|
import styles from './styles.scss';
|
2017-08-25 07:47:20 +08:00
|
|
|
import WhiteboardToolbarItem from './whiteboard-toolbar-item/component';
|
2017-02-23 08:10:30 +08:00
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
export default class WhiteboardToolbar extends Component {
|
2017-08-03 09:24:38 +08:00
|
|
|
|
|
|
|
static HEXToINTColor(hexColor) {
|
|
|
|
const _rrggbb = hexColor.slice(1);
|
|
|
|
const rrggbb = _rrggbb.substr(0, 2) + _rrggbb.substr(2, 2) + _rrggbb.substr(4, 2);
|
|
|
|
return parseInt(rrggbb, 16);
|
|
|
|
}
|
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
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
|
2017-05-03 08:05:41 +08:00
|
|
|
annotationSelected: {
|
|
|
|
icon: 'hand',
|
2017-08-19 10:47:31 +08:00
|
|
|
sessionValue: 'hand',
|
2017-05-03 08:05:41 +08:00
|
|
|
},
|
2017-05-04 22:33:16 +08:00
|
|
|
thicknessSelected: {
|
2017-06-11 10:21:37 +08:00
|
|
|
iconRadius: 4,
|
|
|
|
sessionRadius: 3,
|
2017-05-04 22:33:16 +08:00
|
|
|
},
|
2017-04-19 08:54:51 +08:00
|
|
|
colorSelected: '#000000',
|
2017-06-03 07:46:02 +08:00
|
|
|
fontSizeSelected: 18,
|
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
|
2017-06-03 08:41:39 +08:00
|
|
|
prevColorSelected: '#000000',
|
2017-06-17 10:32:41 +08:00
|
|
|
prevIconRadius: 4,
|
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,
|
|
|
|
};
|
|
|
|
|
|
|
|
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);
|
|
|
|
this.disableOnBlur = this.disableOnBlur.bind(this);
|
|
|
|
this.enableOnBlur = this.enableOnBlur.bind(this);
|
2017-08-25 07:47:20 +08:00
|
|
|
this.renderAnnotationList = this.renderAnnotationList.bind(this);
|
|
|
|
this.renderFontSizeList = this.renderFontSizeList.bind(this);
|
|
|
|
this.renderThicknessList = this.renderThicknessList.bind(this);
|
|
|
|
this.renderColorList = this.renderColorList.bind(this);
|
2017-04-19 08:54:51 +08:00
|
|
|
}
|
|
|
|
|
2017-05-03 08:05:41 +08:00
|
|
|
componentWillMount() {
|
2017-08-03 09:24:38 +08:00
|
|
|
// setting default or resetting current drawing settings in the session
|
2017-06-03 07:46:02 +08:00
|
|
|
const { annotationSelected, thicknessSelected, colorSelected, fontSizeSelected } = this.state;
|
2017-06-17 10:32:41 +08:00
|
|
|
this.props.actions.setWhiteboardToolbarValues(
|
2017-05-04 22:33:16 +08:00
|
|
|
annotationSelected.sessionValue,
|
|
|
|
thicknessSelected.sessionRadius,
|
2017-08-03 09:24:38 +08:00
|
|
|
WhiteboardToolbar.HEXToINTColor(colorSelected),
|
2017-06-03 07:46:02 +08:00
|
|
|
fontSizeSelected,
|
2017-06-17 10:32:41 +08:00
|
|
|
{
|
|
|
|
textShapeValue: '',
|
|
|
|
textShapeActiveId: '',
|
|
|
|
},
|
2017-05-04 22:33:16 +08:00
|
|
|
);
|
2017-05-03 08:05:41 +08:00
|
|
|
}
|
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
componentDidMount() {
|
2017-08-03 09:24:38 +08:00
|
|
|
// to let the whiteboard know that the presentation area's size has changed
|
2017-04-19 08:54:51 +08:00
|
|
|
window.dispatchEvent(new Event('resize'));
|
2017-06-07 07:47:31 +08:00
|
|
|
|
2017-08-19 10:47:31 +08:00
|
|
|
if (this.state.annotationSelected.sessionValue !== 'text') {
|
2017-08-03 09:24:38 +08:00
|
|
|
// trigger initial animation on the thickness circle, otherwise it stays at 0
|
2017-08-19 10:47:31 +08:00
|
|
|
this.thicknessListIconRadius.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) {
|
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);
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
componentWillUnmount() {
|
|
|
|
// to let the whiteboard know that the presentation area's size has changed
|
|
|
|
window.dispatchEvent(new Event('resize'));
|
|
|
|
}
|
|
|
|
|
2017-06-08 05:40:15 +08:00
|
|
|
animateSvgIcons(prevState) {
|
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,
|
|
|
|
thus we need to trigger just color change 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
|
2017-08-03 09:24:38 +08:00
|
|
|
if (this.state.colorSelected !== prevState.colorSelected) {
|
2017-06-17 10:32:41 +08:00
|
|
|
// 1st case a)
|
2017-08-19 10:47:31 +08:00
|
|
|
if (this.state.annotationSelected.sessionValue === 'text') {
|
|
|
|
this.colorListIconColor.beginElement();
|
2017-06-17 10:32:41 +08:00
|
|
|
// 1st case b)
|
|
|
|
} else {
|
2017-08-19 10:47:31 +08:00
|
|
|
this.colorListIconColor.beginElement();
|
|
|
|
this.thicknessListIconColor.beginElement();
|
2017-06-08 05:40:15 +08:00
|
|
|
}
|
2017-06-17 10:32:41 +08:00
|
|
|
// 2nd case
|
2017-08-03 09:24:38 +08:00
|
|
|
} else if (this.state.thicknessSelected.iconRadius !== prevState.thicknessSelected.iconRadius) {
|
2017-08-19 10:47:31 +08:00
|
|
|
this.thicknessListIconRadius.beginElement();
|
2017-08-03 09:24:38 +08:00
|
|
|
// 3rd case
|
2017-08-19 10:47:31 +08:00
|
|
|
} else if (this.state.annotationSelected.sessionValue !== 'text' &&
|
|
|
|
prevState.annotationSelected.sessionValue === 'text') {
|
|
|
|
this.thicknessListIconRadius.beginElement();
|
|
|
|
this.thicknessListIconColor.beginElement();
|
2017-06-17 10:32:41 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 4th case, initial animation (just thickness) 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) {
|
|
|
|
this.setState({
|
2017-08-03 09:24:38 +08:00
|
|
|
currentSubmenuOpen: this.state.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() {
|
2017-06-17 10:32:41 +08:00
|
|
|
// a separate case for the active text shape
|
2017-08-19 10:47:31 +08:00
|
|
|
if (this.state.annotationSelected.sessionValue === 'text' && this.props.textShapeActiveId !== '') {
|
2017-06-17 10:32:41 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
if (this.state.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() {
|
2017-06-17 10:32:41 +08:00
|
|
|
this.props.actions.undoAnnotation(this.props.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() {
|
2017-06-17 10:32:41 +08:00
|
|
|
this.props.actions.clearWhiteboard(this.props.whiteboardId);
|
2017-04-19 08:54:51 +08:00
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
handleSwitchWhiteboardMode() {
|
|
|
|
this.props.actions.changeWhiteboardMode(!this.props.multiUser);
|
|
|
|
}
|
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) {
|
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-08-19 10:47:31 +08:00
|
|
|
if (annotation.sessionValue === 'text') {
|
2017-06-17 10:32:41 +08:00
|
|
|
obj.prevIconRadius = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.props.actions.setTool(annotation.sessionValue);
|
|
|
|
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
|
2017-05-04 22:33:16 +08:00
|
|
|
handleThicknessChange(thicknessObj) {
|
2017-06-17 10:32:41 +08:00
|
|
|
this.props.actions.setThickness(thicknessObj.sessionRadius);
|
2017-05-03 08:05:41 +08:00
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
this.setState({
|
2017-06-03 08:41:39 +08:00
|
|
|
prevIconRadius: this.state.thicknessSelected.iconRadius,
|
2017-05-04 22:33:16 +08:00
|
|
|
thicknessSelected: thicknessObj,
|
2017-04-19 08:54:51 +08:00
|
|
|
onBlurEnabled: true,
|
|
|
|
currentSubmenuOpen: '',
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-06-03 07:46:02 +08:00
|
|
|
handleFontSizeChange(fontSizeObj) {
|
2017-06-17 10:32:41 +08:00
|
|
|
this.props.actions.setFontSize(fontSizeObj.fontSize);
|
2017-06-03 07:46:02 +08:00
|
|
|
|
|
|
|
this.setState({
|
|
|
|
fontSizeSelected: fontSizeObj.fontSize,
|
|
|
|
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) {
|
2017-08-03 09:24:38 +08:00
|
|
|
this.props.actions.setColor(WhiteboardToolbar.HEXToINTColor(color));
|
2017-06-17 10:32:41 +08:00
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
this.setState({
|
2017-06-03 08:41:39 +08:00
|
|
|
prevColorSelected: this.state.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-04-19 08:54:51 +08:00
|
|
|
disableOnBlur() {
|
|
|
|
this.setState({
|
|
|
|
onBlurEnabled: false,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
// enabling the onBlur flag when the mouse leaving the lists
|
2017-04-19 08:54:51 +08:00
|
|
|
enableOnBlur() {
|
|
|
|
this.setState({
|
|
|
|
onBlurEnabled: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
renderAnnotationList() {
|
2017-08-03 09:24:38 +08:00
|
|
|
const { annotations } = this.props;
|
2017-04-19 08:54:51 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={cx(styles.annotationList, styles.toolbarList)}>
|
2017-08-03 09:24:38 +08:00
|
|
|
{ annotations ? annotations.map(annotation =>
|
2017-08-25 07:47:20 +08:00
|
|
|
(
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Annotation'}
|
|
|
|
icon={annotation.icon}
|
|
|
|
onItemClick={this.handleAnnotationChange}
|
|
|
|
objectToReturn={annotation}
|
|
|
|
className={cx(styles.toolbarListButton, this.state.annotationSelected.sessionValue === annotation.sessionValue ? styles.selectedListButton : '')}
|
|
|
|
onMouseEnter={this.disableOnBlur}
|
|
|
|
onMouseLeave={this.enableOnBlur}
|
|
|
|
key={annotation.sessionValue}
|
|
|
|
/>
|
|
|
|
),
|
2017-04-19 08:54:51 +08:00
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-06-03 07:46:02 +08:00
|
|
|
renderFontSizeList() {
|
2017-08-03 09:24:38 +08:00
|
|
|
const { fontSizes } = this.props;
|
2017-06-03 07:46:02 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={cx(styles.fontSizeList, styles.toolbarList)}>
|
2017-08-03 09:24:38 +08:00
|
|
|
{fontSizes ? fontSizes.map(fontSizeObj =>
|
2017-08-25 07:47:20 +08:00
|
|
|
(
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Font Size'}
|
|
|
|
customIcon={
|
|
|
|
<p className={styles.textThickness} style={{ fontSize: fontSizeObj.fontSize }}>
|
|
|
|
Aa
|
|
|
|
</p>
|
|
|
|
}
|
|
|
|
onItemClick={this.handleFontSizeChange}
|
|
|
|
objectToReturn={fontSizeObj}
|
|
|
|
className={cx(styles.toolbarListButton, styles.fontSizeListButton, this.state.fontSizeSelected === fontSizeObj.fontSize ? styles.selectedListButton : '')}
|
|
|
|
onMouseEnter={this.disableOnBlur}
|
|
|
|
onMouseLeave={this.enableOnBlur}
|
|
|
|
key={fontSizeObj.fontSize}
|
|
|
|
/>
|
|
|
|
),
|
2017-06-03 07:46:02 +08:00
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2017-04-19 08:54:51 +08:00
|
|
|
renderThicknessList() {
|
2017-08-03 09:24:38 +08:00
|
|
|
const { thicknessRadiuses } = this.props;
|
2017-04-19 08:54:51 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={cx(styles.thicknessList, styles.toolbarList)}>
|
2017-08-03 09:24:38 +08:00
|
|
|
{thicknessRadiuses ? thicknessRadiuses.map(thicknessObj =>
|
2017-08-25 07:47:20 +08:00
|
|
|
(
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Radius'}
|
|
|
|
customIcon={
|
|
|
|
<svg className={styles.customSvgIcon}>
|
|
|
|
<circle cx="50%" cy="50%" r={thicknessObj.iconRadius} fill="#F3F6F9" />
|
|
|
|
</svg>
|
|
|
|
}
|
|
|
|
onItemClick={this.handleThicknessChange}
|
|
|
|
objectToReturn={thicknessObj}
|
|
|
|
className={cx(styles.toolbarListButton, this.state.thicknessSelected.sessionRadius === thicknessObj.sessionRadius ? styles.selectedListButton : '')}
|
|
|
|
onMouseEnter={this.disableOnBlur}
|
|
|
|
onMouseLeave={this.enableOnBlur}
|
|
|
|
key={thicknessObj.sessionRadius}
|
|
|
|
/>
|
|
|
|
),
|
2017-04-19 08:54:51 +08:00
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
renderColorList() {
|
2017-08-03 09:24:38 +08:00
|
|
|
const { colors } = this.props;
|
2017-04-19 08:54:51 +08:00
|
|
|
|
|
|
|
return (
|
|
|
|
<div className={cx(styles.colorList, styles.toolbarList)}>
|
2017-08-03 09:24:38 +08:00
|
|
|
{colors ? colors.map(color =>
|
2017-08-25 07:47:20 +08:00
|
|
|
(
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Color'}
|
|
|
|
customIcon={
|
|
|
|
<svg className={styles.customSvgIcon}>
|
|
|
|
<rect x="20%" y="20%" width="60%" height="60%" fill={color} />
|
|
|
|
</svg>
|
|
|
|
}
|
|
|
|
onItemClick={this.handleColorChange}
|
|
|
|
objectToReturn={color}
|
|
|
|
className={cx(styles.toolbarListButton, this.state.colorSelected === color ? styles.selectedListButton : '')}
|
|
|
|
onMouseEnter={this.disableOnBlur}
|
|
|
|
onMouseLeave={this.enableOnBlur}
|
|
|
|
key={color}
|
|
|
|
/>
|
|
|
|
),
|
2017-04-19 08:54:51 +08:00
|
|
|
) : null}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2017-08-03 09:24:38 +08:00
|
|
|
<div className={styles.toolbarContainer} style={{ height: this.props.height }}>
|
2017-04-19 08:54:51 +08:00
|
|
|
<div className={styles.toolbarWrapper}>
|
2017-08-25 07:47:20 +08:00
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Tools'}
|
|
|
|
icon={this.state.annotationSelected.icon}
|
|
|
|
onItemClick={this.displaySubMenu}
|
|
|
|
objectToReturn={'annotationList'}
|
|
|
|
onBlur={this.closeSubMenu}
|
|
|
|
className={cx(styles.toolbarButton, this.state.currentSubmenuOpen === 'annotationList' ? '' : styles.notActive)}
|
|
|
|
renderSubMenu={this.state.currentSubmenuOpen === 'annotationList' ? this.renderAnnotationList : null}
|
|
|
|
/>
|
|
|
|
{this.state.annotationSelected.sessionValue === 'text' ?
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Font Size List'}
|
|
|
|
customIcon={
|
|
|
|
<p
|
|
|
|
className={styles.textThickness}
|
|
|
|
style={{
|
|
|
|
fontSize: this.state.fontSizeSelected,
|
|
|
|
color: this.state.colorSelected,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
Aa
|
|
|
|
</p>
|
|
|
|
}
|
|
|
|
onItemClick={this.displaySubMenu}
|
|
|
|
objectToReturn={'fontSizeList'}
|
2017-04-19 08:54:51 +08:00
|
|
|
onBlur={this.closeSubMenu}
|
2017-08-25 07:47:20 +08:00
|
|
|
className={cx(styles.toolbarButton, this.state.currentSubmenuOpen === 'fontSizeList' ? '' : styles.notActive)}
|
|
|
|
renderSubMenu={this.state.currentSubmenuOpen === 'fontSizeList' ? this.renderFontSizeList : null}
|
2017-04-19 08:54:51 +08:00
|
|
|
/>
|
2017-06-03 07:46:02 +08:00
|
|
|
:
|
2017-08-25 07:47:20 +08:00
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Thickness List'}
|
|
|
|
onItemClick={this.displaySubMenu}
|
|
|
|
objectToReturn={'thicknessList'}
|
2017-06-03 07:46:02 +08:00
|
|
|
onBlur={this.closeSubMenu}
|
2017-08-03 09:24:38 +08:00
|
|
|
className={cx(styles.toolbarButton, this.state.currentSubmenuOpen === 'thicknessList' ? '' : styles.notActive)}
|
2017-08-25 07:47:20 +08:00
|
|
|
renderSubMenu={this.state.currentSubmenuOpen === 'thicknessList' ? this.renderThicknessList : null}
|
2017-06-03 07:46:02 +08:00
|
|
|
customIcon={
|
|
|
|
<svg className={styles.customSvgIcon} shapeRendering="geometricPrecision">
|
2017-06-03 08:41:39 +08:00
|
|
|
<circle
|
|
|
|
shapeRendering="geometricPrecision"
|
|
|
|
cx="50%"
|
|
|
|
cy="50%"
|
|
|
|
stroke="black"
|
|
|
|
strokeWidth="1"
|
|
|
|
>
|
|
|
|
<animate
|
2017-06-07 07:47:31 +08:00
|
|
|
ref={(ref) => { this.thicknessListIconColor = ref; }}
|
2017-06-03 08:41:39 +08:00
|
|
|
attributeName="fill"
|
|
|
|
attributeType="XML"
|
|
|
|
from={this.state.prevColorSelected}
|
|
|
|
to={this.state.colorSelected}
|
|
|
|
begin={'indefinite'}
|
|
|
|
dur="0.4s"
|
|
|
|
repeatCount="0"
|
|
|
|
fill="freeze"
|
|
|
|
/>
|
|
|
|
<animate
|
2017-06-07 07:47:31 +08:00
|
|
|
ref={(ref) => { this.thicknessListIconRadius = ref; }}
|
2017-06-03 08:41:39 +08:00
|
|
|
attributeName="r"
|
|
|
|
attributeType="XML"
|
|
|
|
from={this.state.prevIconRadius}
|
|
|
|
to={this.state.thicknessSelected.iconRadius}
|
|
|
|
begin={'indefinite'}
|
|
|
|
dur="0.4s"
|
|
|
|
repeatCount="0"
|
|
|
|
fill="freeze"
|
|
|
|
/>
|
|
|
|
</circle>
|
2017-06-03 07:46:02 +08:00
|
|
|
</svg>
|
2017-08-25 07:47:20 +08:00
|
|
|
}
|
2017-06-03 07:46:02 +08:00
|
|
|
/>
|
|
|
|
}
|
2017-08-25 07:47:20 +08:00
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Color List'}
|
|
|
|
onItemClick={this.displaySubMenu}
|
|
|
|
objectToReturn={'colorList'}
|
|
|
|
onBlur={this.closeSubMenu}
|
|
|
|
className={cx(styles.toolbarButton, this.state.currentSubmenuOpen === 'colorList' ? '' : styles.notActive)}
|
|
|
|
renderSubMenu={this.state.currentSubmenuOpen === 'colorList' ? this.renderColorList : null}
|
|
|
|
customIcon={
|
|
|
|
<svg className={styles.customSvgIcon}>
|
|
|
|
<rect x="25%" y="25%" width="50%" height="50%" stroke="black" strokeWidth="1">
|
|
|
|
<animate
|
|
|
|
ref={(ref) => { this.colorListIconColor = ref; }}
|
|
|
|
attributeName="fill"
|
|
|
|
attributeType="XML"
|
|
|
|
from={this.state.prevColorSelected}
|
|
|
|
to={this.state.colorSelected}
|
|
|
|
begin={'indefinite'}
|
|
|
|
dur="0.4s"
|
|
|
|
repeatCount="0"
|
|
|
|
fill="freeze"
|
|
|
|
/>
|
|
|
|
</rect>
|
|
|
|
</svg>
|
|
|
|
}
|
|
|
|
/>
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Undo Annotation'}
|
|
|
|
icon={'undo'}
|
|
|
|
onItemClick={this.handleUndo}
|
|
|
|
className={cx(styles.toolbarButton, styles.notActive)}
|
|
|
|
/>
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={'Clear All Annotations'}
|
|
|
|
icon={'circle_close'}
|
|
|
|
onItemClick={this.handleClearAll}
|
|
|
|
className={cx(styles.toolbarButton, styles.notActive)}
|
|
|
|
/>
|
|
|
|
{this.props.isPresenter ?
|
|
|
|
<WhiteboardToolbarItem
|
|
|
|
label={this.props.multiUser ? 'Turn multi-user mode off' : 'Tuen multi-user mode on'}
|
|
|
|
icon={this.props.multiUser ? 'multi_whiteboard' : 'whiteboard'}
|
|
|
|
onItemClick={this.handleSwitchWhiteboardMode}
|
2017-04-19 08:54:51 +08:00
|
|
|
className={cx(styles.toolbarButton, styles.notActive)}
|
|
|
|
/>
|
2017-08-03 09:24:38 +08:00
|
|
|
: null}
|
2017-04-19 08:54:51 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-08-03 09:24:38 +08:00
|
|
|
WhiteboardToolbar.defaultProps = {
|
2017-04-19 08:54:51 +08:00
|
|
|
colors: [
|
2017-08-03 09:24:38 +08:00
|
|
|
'#000000', '#FFFFFF', '#FF0000', '#FF8800', '#CCFF00', '#00FF00',
|
|
|
|
'#00FFFF', '#0088FF', '#0000FF', '#8800FF', '#FF00FF', '#C0C0C0',
|
2017-04-19 08:54:51 +08:00
|
|
|
],
|
2017-05-04 22:33:16 +08:00
|
|
|
thicknessRadiuses: [
|
2017-08-03 09:24:38 +08:00
|
|
|
{ iconRadius: 14, sessionRadius: 30 },
|
|
|
|
{ iconRadius: 12, sessionRadius: 22 },
|
|
|
|
{ iconRadius: 10, sessionRadius: 15 },
|
|
|
|
{ iconRadius: 8, sessionRadius: 10 },
|
|
|
|
{ iconRadius: 6, sessionRadius: 6 },
|
|
|
|
{ iconRadius: 4, sessionRadius: 3 },
|
|
|
|
{ iconRadius: 2, sessionRadius: 1 },
|
2017-05-04 22:33:16 +08:00
|
|
|
],
|
2017-05-03 08:05:41 +08:00
|
|
|
annotations: [
|
2017-08-19 10:47:31 +08:00
|
|
|
{ icon: 'text_tool', sessionValue: 'text' },
|
|
|
|
{ icon: 'linte_tool', sessionValue: 'line' },
|
|
|
|
{ icon: 'circle_tool', sessionValue: 'ellipse' },
|
|
|
|
{ icon: 'triangle_tool', sessionValue: 'triangle' },
|
|
|
|
{ icon: 'rectangle_tool', sessionValue: 'rectangle' },
|
|
|
|
{ icon: 'pen_tool', sessionValue: 'pencil' },
|
|
|
|
{ icon: 'hand', sessionValue: 'hand' },
|
2017-05-03 08:05:41 +08:00
|
|
|
],
|
2017-06-03 07:46:02 +08:00
|
|
|
fontSizes: [
|
2017-08-03 09:24:38 +08:00
|
|
|
{ fontSize: 36 },
|
|
|
|
{ fontSize: 32 },
|
|
|
|
{ fontSize: 28 },
|
|
|
|
{ fontSize: 24 },
|
|
|
|
{ fontSize: 20 },
|
|
|
|
{ fontSize: 16 },
|
|
|
|
{ fontSize: 12 },
|
2017-06-03 07:46:02 +08:00
|
|
|
],
|
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
|
|
|
|
fontSizes: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
|
|
|
|
// defines an array of colors for the toolbar (color submenu)
|
|
|
|
colors: PropTypes.arrayOf(PropTypes.string).isRequired,
|
|
|
|
|
|
|
|
// defines an array of thickness values for the toolbar and their corresponding session values
|
|
|
|
thicknessRadiuses: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
|
|
|
|
// defines the physical height of the whiteboard
|
|
|
|
height: PropTypes.number.isRequired,
|
|
|
|
};
|