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

1139 lines
38 KiB
React
Raw Normal View History

import * as React from 'react';
import PropTypes from 'prop-types';
import { TldrawApp, Tldraw } from '@tldraw/tldraw';
import SlideCalcUtil, { HUNDRED_PERCENT } from '/imports/utils/slideCalcUtils';
// eslint-disable-next-line import/no-extraneous-dependencies
import { Utils } from '@tldraw/core';
import Cursors from './cursors/container';
import Settings from '/imports/ui/services/settings';
2023-01-24 04:00:05 +08:00
import logger from '/imports/startup/client/logger';
2023-02-06 21:37:34 +08:00
import KEY_CODES from '/imports/utils/keyCodes';
2023-03-27 23:33:10 +08:00
import {
presentationMenuHeight,
styleMenuOffset,
styleMenuOffsetSmall
} from '/imports/ui/stylesheets/styled-components/general';
2023-02-24 07:47:34 +08:00
import Styled from './styles';
import PanToolInjector from './pan-tool-injector/component';
import {
findRemoved, filterInvalidShapes, mapLanguage, sendShapeChanges, usePrevious,
} from './utils';
import { throttle } from '/imports/utils/throttle';
import { isEqual } from 'radash';
const SMALL_HEIGHT = 435;
const SMALLEST_HEIGHT = 363;
2022-11-18 07:37:17 +08:00
const SMALL_WIDTH = 800;
const SMALLEST_WIDTH = 645;
const TOOLBAR_SMALL = 28;
const TOOLBAR_LARGE = 38;
2022-04-05 22:49:13 +08:00
export default function Whiteboard(props) {
const {
isPresenter,
removeShapes,
2022-04-05 22:49:13 +08:00
initDefaultPages,
persistShape,
shapes,
assets,
2022-04-05 22:49:13 +08:00
currentUser,
curPres,
2022-05-07 00:37:43 +08:00
whiteboardId,
2022-05-12 05:58:16 +08:00
podId,
zoomSlide,
skipToSlide,
2022-05-12 05:58:16 +08:00
slidePosition,
2022-05-16 10:35:17 +08:00
curPageId,
presentationWidth,
presentationHeight,
2022-06-02 23:00:28 +08:00
isViewersCursorLocked,
zoomChanger,
isMultiUserActive,
2022-08-03 22:19:12 +08:00
isRTL,
fitToWidth,
zoomValue,
intl,
svgUri,
maxStickyNoteLength,
fontFamily,
hasShapeAccess,
2023-01-26 02:49:09 +08:00
presentationAreaHeight,
presentationAreaWidth,
maxNumberOfAnnotations,
notifyShapeNumberExceeded,
darkTheme,
2023-02-24 07:47:34 +08:00
isPanning: shortcutPanning,
setTldrawIsMounting,
width,
height,
hasMultiUserAccess,
2023-03-13 20:17:14 +08:00
tldrawAPI,
setTldrawAPI,
whiteboardToolbarAutoHide,
toggleToolsAnimations,
2023-03-27 23:45:16 +08:00
isIphone,
2023-04-13 02:36:13 +08:00
sidebarNavigationWidth,
animations,
isToolbarVisible,
2022-04-05 22:49:13 +08:00
} = props;
const { pages, pageStates } = initDefaultPages(curPres?.pages.length || 1);
2022-04-05 22:49:13 +08:00
const rDocument = React.useRef({
name: 'test',
2022-04-05 22:49:13 +08:00
version: TldrawApp.version,
2022-05-16 10:35:17 +08:00
id: whiteboardId,
2022-04-05 22:49:13 +08:00
pages,
pageStates,
bindings: {},
assets: {},
2022-04-05 22:49:13 +08:00
});
const [history, setHistory] = React.useState(null);
const [zoom, setZoom] = React.useState(HUNDRED_PERCENT);
2023-01-26 02:49:09 +08:00
const [tldrawZoom, setTldrawZoom] = React.useState(1);
const [isMounting, setIsMounting] = React.useState(true);
const prevShapes = usePrevious(shapes);
const prevSlidePosition = usePrevious(slidePosition);
const prevFitToWidth = usePrevious(fitToWidth);
const prevSvgUri = usePrevious(svgUri);
const language = mapLanguage(Settings?.application?.locale?.toLowerCase() || 'en');
2023-01-12 03:32:03 +08:00
const [currentTool, setCurrentTool] = React.useState(null);
const [currentStyle, setCurrentStyle] = React.useState({});
2023-02-11 02:30:24 +08:00
const [isMoving, setIsMoving] = React.useState(false);
2023-02-24 07:47:34 +08:00
const [isPanning, setIsPanning] = React.useState(shortcutPanning);
const [panSelected, setPanSelected] = React.useState(isPanning);
const isMountedRef = React.useRef(true);
2023-03-09 21:42:05 +08:00
const [isToolLocked, setIsToolLocked] = React.useState(tldrawAPI?.appState?.isToolLocked);
// eslint-disable-next-line arrow-body-style
React.useEffect(() => {
return () => {
isMountedRef.current = false;
};
}, []);
const setSafeTLDrawAPI = (api) => {
if (isMountedRef.current) {
2023-03-13 20:17:14 +08:00
setTldrawAPI(api);
}
};
2023-02-24 07:47:34 +08:00
const toggleOffCheck = (evt) => {
const clickedElement = evt.target;
const panBtnClicked = clickedElement?.getAttribute('data-test') === 'panButton'
|| clickedElement?.parentElement?.getAttribute('data-test') === 'panButton';
2023-03-09 04:41:25 +08:00
setIsToolLocked(false);
const panButton = document.querySelector('[data-test="panButton"]');
if (panBtnClicked) {
const dataZoom = panButton.getAttribute('data-zoom');
if ((dataZoom <= HUNDRED_PERCENT && !fitToWidth)) {
return;
}
panButton.classList.add('select');
panButton.classList.remove('selectOverride');
} else {
2023-02-24 07:47:34 +08:00
setIsPanning(false);
setPanSelected(false);
panButton.classList.add('selectOverride');
panButton.classList.remove('select');
2023-02-24 07:47:34 +08:00
}
};
React.useEffect(() => {
const toolbar = document.getElementById('TD-PrimaryTools');
2023-02-24 07:47:34 +08:00
const handleClick = (evt) => {
toggleOffCheck(evt);
};
const handleDBClick = (evt) => {
evt.preventDefault();
evt.stopPropagation();
2023-03-09 04:41:25 +08:00
setIsToolLocked(true);
tldrawAPI?.patchState(
{
appState: {
isToolLocked: true,
},
},
2023-03-09 04:41:25 +08:00
);
};
2023-02-24 07:47:34 +08:00
toolbar?.addEventListener('click', handleClick);
toolbar?.addEventListener('dblclick', handleDBClick);
2023-03-09 04:41:25 +08:00
2023-02-24 07:47:34 +08:00
return () => {
toolbar?.removeEventListener('click', handleClick);
toolbar?.removeEventListener('dblclick', handleDBClick);
2023-02-24 07:47:34 +08:00
};
2023-03-09 04:41:25 +08:00
}, [tldrawAPI, isToolLocked]);
React.useEffect(() => {
if (whiteboardToolbarAutoHide) {
toggleToolsAnimations('fade-in', 'fade-out', animations ? '3s' : '0s');
} else {
toggleToolsAnimations('fade-out', 'fade-in', animations ? '.3s' : '0s');
}
}, [whiteboardToolbarAutoHide]);
const calculateZoom = (localWidth, localHeight) => {
const calcedZoom = fitToWidth ? (presentationWidth / localWidth) : Math.min(
(presentationWidth) / localWidth,
(presentationHeight) / localHeight,
);
return (calcedZoom === 0 || calcedZoom === Infinity) ? HUNDRED_PERCENT : calcedZoom;
};
React.useEffect(() => {
setTldrawIsMounting(true);
}, []);
const checkClientBounds = (e) => {
if (
e.clientX > document.documentElement.clientWidth
|| e.clientX < 0
|| e.clientY > document.documentElement.clientHeight
|| e.clientY < 0
) {
if (tldrawAPI?.session) {
tldrawAPI?.completeSession?.();
}
}
};
const checkVisibility = () => {
if (document.visibilityState === 'hidden' && tldrawAPI?.session) {
tldrawAPI?.completeSession?.();
}
};
const handleWheelEvent = (event) => {
if (!event.ctrlKey) {
// Prevent the event from reaching the tldraw library
event.stopPropagation();
event.preventDefault();
const newEvent = new WheelEvent('wheel', {
deltaX: event.deltaX,
deltaY: event.deltaY,
deltaZ: event.deltaZ,
ctrlKey: true,
clientX: event.clientX,
clientY: event.clientY,
});
2023-03-14 01:22:38 +08:00
const canvas = document.getElementById('canvas');
if (canvas) {
canvas.dispatchEvent(newEvent);
}
}
}
React.useEffect(() => {
document.addEventListener('mouseup', checkClientBounds);
document.addEventListener('visibilitychange', checkVisibility);
return () => {
document.removeEventListener('mouseup', checkClientBounds);
document.removeEventListener('visibilitychange', checkVisibility);
const canvas = document.getElementById('canvas');
if (canvas) {
canvas.removeEventListener('wheel', handleWheelEvent);
}
};
}, [tldrawAPI]);
const doc = React.useMemo(() => {
2022-04-05 22:49:13 +08:00
const currentDoc = rDocument.current;
// update document if the number of pages has changed
if (currentDoc.id !== whiteboardId && currentDoc?.pages.length !== curPres?.pages.length) {
2023-03-29 20:35:10 +08:00
const currentPageShapes = currentDoc?.pages[curPageId]?.shapes;
currentDoc.id = whiteboardId;
currentDoc.pages = pages;
2023-03-29 20:35:10 +08:00
currentDoc.pages[curPageId].shapes = currentPageShapes;
currentDoc.pageStates = pageStates;
}
const next = { ...currentDoc };
let changed = false;
2023-02-23 21:27:16 +08:00
if (next.pageStates[curPageId] && !isEqual(prevShapes, shapes)) {
const editingShape = tldrawAPI?.getShape(tldrawAPI?.getPageState()?.editingId);
if (editingShape) {
shapes[editingShape?.id] = editingShape;
}
const removed = prevShapes && findRemoved(Object.keys(prevShapes), Object.keys((shapes)));
if (removed && removed.length > 0) {
2023-01-24 04:00:05 +08:00
const patchedShapes = Object.fromEntries(removed.map((id) => [id, undefined]));
try {
tldrawAPI?.patchState(
{
document: {
pageStates: {
[curPageId]: {
selectedIds:
tldrawAPI?.selectedIds?.filter((id) => !removed.includes(id)) || [],
2023-01-24 04:00:05 +08:00
},
},
2023-01-24 04:00:05 +08:00
pages: {
[curPageId]: {
shapes: patchedShapes,
},
},
},
},
2023-01-24 04:00:05 +08:00
);
} catch (error) {
logger.error({
logCode: 'whiteboard_shapes_remove_error',
extraInfo: { error },
}, 'Whiteboard catch error on removing shapes');
}
}
next.pages[curPageId].shapes = filterInvalidShapes(shapes, curPageId, tldrawAPI);
changed = true;
}
2022-04-05 22:49:13 +08:00
if (curPageId && (!next.assets[`slide-background-asset-${curPageId}`] || (svgUri && !isEqual(prevSvgUri, svgUri)))) {
next.assets[`slide-background-asset-${curPageId}`] = assets[`slide-background-asset-${curPageId}`];
tldrawAPI?.patchState(
{
document: {
assets,
},
},
);
2023-01-18 01:45:15 +08:00
changed = true;
2022-04-05 22:49:13 +08:00
}
if (changed && tldrawAPI) {
// merge patch manually (this improves performance and reduce side effects on fast updates)
const patch = {
document: {
pages: {
[curPageId]: { shapes: filterInvalidShapes(shapes, curPageId, tldrawAPI) },
},
},
};
const prevState = tldrawAPI._state;
const nextState = Utils.deepMerge(tldrawAPI._state, patch);
if (nextState.document.pages[curPageId].shapes) {
filterInvalidShapes(nextState.document.pages[curPageId].shapes, curPageId, tldrawAPI);
2023-01-24 04:00:05 +08:00
}
const final = tldrawAPI.cleanup(nextState, prevState, patch, '');
tldrawAPI._state = final;
2023-01-24 04:00:05 +08:00
try {
tldrawAPI?.forceUpdate();
} catch (error) {
2023-01-24 04:00:05 +08:00
logger.error({
logCode: 'whiteboard_shapes_update_error',
extraInfo: { error },
}, 'Whiteboard catch error on updating shapes');
}
}
// move poll result text to bottom right
if (next.pages[curPageId] && slidePosition) {
const pollResults = Object.entries(next.pages[curPageId].shapes)
.filter(([, shape]) => shape.name?.includes('poll-result'));
pollResults.forEach(([id, shape]) => {
2023-02-23 21:27:16 +08:00
if (isEqual(shape.point, [0, 0])) {
try {
const shapeBounds = tldrawAPI?.getShapeBounds(id);
if (shapeBounds) {
const editedShape = shape;
editedShape.point = [
slidePosition.width - shapeBounds.width,
slidePosition.height - shapeBounds.height,
];
editedShape.size = [shapeBounds.width, shapeBounds.height];
if (isPresenter) persistShape(editedShape, whiteboardId);
}
} catch (error) {
logger.error({
logCode: 'whiteboard_poll_results_error',
extraInfo: { error },
}, 'Whiteboard catch error on moving unpublished poll results');
}
}
});
}
return currentDoc;
}, [shapes, tldrawAPI, curPageId, slidePosition]);
// when presentationSizes change, update tldraw camera
React.useEffect(() => {
if (curPageId && slidePosition && tldrawAPI
&& presentationWidth > 0 && presentationHeight > 0
) {
if (prevFitToWidth !== null && fitToWidth !== prevFitToWidth) {
const newZoom = calculateZoom(slidePosition.width, slidePosition.height);
tldrawAPI?.setCamera([0, 0], newZoom);
const viewedRegionH = SlideCalcUtil.calcViewedRegionHeight(
tldrawAPI?.viewport.height, slidePosition.height,
);
setZoom(HUNDRED_PERCENT);
zoomChanger(HUNDRED_PERCENT);
zoomSlide(parseInt(curPageId, 10), podId, HUNDRED_PERCENT, viewedRegionH, 0, 0);
} else {
const currentAspectRatio = Math.round((presentationWidth / presentationHeight) * 100) / 100;
const previousAspectRatio = Math.round(
(slidePosition.viewBoxWidth / slidePosition.viewBoxHeight) * 100,
) / 100;
if (fitToWidth && currentAspectRatio !== previousAspectRatio) {
2023-03-07 12:29:00 +08:00
// we need this to ensure tldraw updates the viewport size after re-mounting
setTimeout(() => {
const newZoom = calculateZoom(slidePosition.viewBoxWidth, slidePosition.viewBoxHeight);
tldrawAPI.setCamera([slidePosition.x, slidePosition.y], newZoom, 'zoomed');
}, 50);
} else {
const newZoom = calculateZoom(slidePosition.viewBoxWidth, slidePosition.viewBoxHeight);
tldrawAPI?.setCamera([slidePosition.x, slidePosition.y], newZoom);
}
}
}
}, [presentationWidth, presentationHeight, curPageId, document?.documentElement?.dir]);
React.useEffect(() => {
if (presentationWidth > 0 && presentationHeight > 0 && slidePosition) {
const cameraZoom = tldrawAPI?.getPageState()?.camera?.zoom;
const newzoom = calculateZoom(slidePosition.viewBoxWidth, slidePosition.viewBoxHeight);
if (cameraZoom && cameraZoom === 1) {
tldrawAPI?.setCamera([slidePosition.x, slidePosition.y], newzoom);
} else if (isMounting) {
setIsMounting(false);
setTldrawIsMounting(false);
const currentAspectRatio = Math.round((presentationWidth / presentationHeight) * 100) / 100;
const previousAspectRatio = Math.round(
(slidePosition.viewBoxWidth / slidePosition.viewBoxHeight) * 100,
) / 100;
// case where the presenter had fit-to-width enabled and he reloads the page
if (!fitToWidth && currentAspectRatio !== previousAspectRatio) {
// wee need this to ensure tldraw updates the viewport size after re-mounting
setTimeout(() => {
tldrawAPI?.setCamera([slidePosition.x, slidePosition.y], newzoom, 'zoomed');
}, 50);
} else {
tldrawAPI?.setCamera([slidePosition.x, slidePosition.y], newzoom);
}
}
}
}, [tldrawAPI?.getPageState()?.camera, presentationWidth, presentationHeight]);
// change tldraw page when presentation page changes
React.useEffect(() => {
if (tldrawAPI && curPageId && slidePosition) {
tldrawAPI.changePage(curPageId);
const newZoom = prevSlidePosition
? calculateZoom(prevSlidePosition.viewBoxWidth, prevSlidePosition.viewBoxHeight)
: calculateZoom(slidePosition.viewBoxWidth, slidePosition.viewBoxHeight);
tldrawAPI?.setCamera([slidePosition.x, slidePosition.y], newZoom, 'zoomed_previous_page');
}
}, [curPageId]);
2022-04-05 22:49:13 +08:00
// change tldraw camera when slidePosition changes
React.useEffect(() => {
if (tldrawAPI && !isPresenter && curPageId && slidePosition) {
const newZoom = calculateZoom(slidePosition.viewBoxWidth, slidePosition.viewBoxHeight);
tldrawAPI?.setCamera([slidePosition.x, slidePosition.y], newZoom, 'zoomed');
}
}, [curPageId, slidePosition]);
// update zoom according to toolbar
React.useEffect(() => {
if (tldrawAPI && isPresenter && curPageId && slidePosition && zoom !== zoomValue) {
const zoomFitSlide = calculateZoom(slidePosition.width, slidePosition.height);
const zoomCamera = (zoomFitSlide * zoomValue) / HUNDRED_PERCENT;
setTimeout(() => {
tldrawAPI?.zoomTo(zoomCamera);
}, 50);
}
}, [zoomValue]);
// update zoom when presenter changes if the aspectRatio has changed
React.useEffect(() => {
if (tldrawAPI && isPresenter && curPageId && slidePosition && !isMounting) {
const currentAspectRatio = Math.round((presentationWidth / presentationHeight) * 100) / 100;
const previousAspectRatio = Math.round(
(slidePosition.viewBoxWidth / slidePosition.viewBoxHeight) * 100,
) / 100;
if (previousAspectRatio !== currentAspectRatio) {
if (fitToWidth) {
const newZoom = calculateZoom(slidePosition.width, slidePosition.height);
tldrawAPI?.setCamera([0, 0], newZoom);
const viewedRegionH = SlideCalcUtil.calcViewedRegionHeight(
tldrawAPI?.viewport.height, slidePosition.height,
);
zoomSlide(parseInt(curPageId, 10), podId, HUNDRED_PERCENT, viewedRegionH, 0, 0);
setZoom(HUNDRED_PERCENT);
zoomChanger(HUNDRED_PERCENT);
} else if (!isMounting) {
let viewedRegionW = SlideCalcUtil.calcViewedRegionWidth(
tldrawAPI?.viewport.width, slidePosition.width,
);
let viewedRegionH = SlideCalcUtil.calcViewedRegionHeight(
tldrawAPI?.viewport.height, slidePosition.height,
);
const camera = tldrawAPI?.getPageState()?.camera;
const zoomFitSlide = calculateZoom(slidePosition.width, slidePosition.height);
if (!fitToWidth && camera.zoom === zoomFitSlide) {
viewedRegionW = HUNDRED_PERCENT;
viewedRegionH = HUNDRED_PERCENT;
}
zoomSlide(
parseInt(curPageId, 10),
podId,
viewedRegionW,
viewedRegionH,
camera.point[0],
camera.point[1],
);
const zoomToolbar = Math.round(
((HUNDRED_PERCENT * camera.zoom) / zoomFitSlide) * 100,
) / 100;
if (zoom !== zoomToolbar) {
setZoom(zoomToolbar);
zoomChanger(zoomToolbar);
}
}
}
}
}, [isPresenter]);
const hasWBAccess = hasMultiUserAccess(whiteboardId, currentUser.userId);
2022-08-03 22:30:22 +08:00
2022-08-15 06:49:39 +08:00
React.useEffect(() => {
if (tldrawAPI) {
tldrawAPI.isForcePanning = isPanning;
}
}, [isPanning]);
React.useEffect(() => {
tldrawAPI?.setSetting('language', language);
}, [language]);
// Reset zoom to default when current presentation changes.
React.useEffect(() => {
if (isPresenter && slidePosition && tldrawAPI) {
tldrawAPI.zoomTo(0);
setHistory(null);
2023-03-23 02:00:19 +08:00
tldrawAPI.resetHistory();
}
}, [curPres?.id]);
2023-01-26 02:49:09 +08:00
React.useEffect(() => {
const currentZoom = tldrawAPI?.getPageState()?.camera?.zoom;
if (currentZoom !== tldrawZoom) {
2023-01-26 02:49:09 +08:00
setTldrawZoom(currentZoom);
}
}, [presentationAreaHeight, presentationAreaWidth]);
2023-02-06 21:37:34 +08:00
const fullscreenToggleHandler = () => {
const {
fullscreenElementId,
isFullscreen,
layoutContextDispatch,
fullscreenAction,
fullscreenRef,
handleToggleFullScreen,
} = props;
handleToggleFullScreen(fullscreenRef);
const newElement = isFullscreen ? '' : fullscreenElementId;
layoutContextDispatch({
type: fullscreenAction,
value: {
element: newElement,
group: '',
},
});
};
2023-02-06 21:37:34 +08:00
const nextSlideHandler = (event) => {
const { nextSlide, numberOfSlides } = props;
2023-02-06 21:37:34 +08:00
if (event) event.currentTarget.blur();
nextSlide(+curPageId, numberOfSlides, podId);
};
2023-02-06 21:37:34 +08:00
const previousSlideHandler = (event) => {
const { previousSlide } = props;
2023-02-06 21:37:34 +08:00
if (event) event.currentTarget.blur();
previousSlide(+curPageId, podId);
};
2023-02-06 21:37:34 +08:00
const handleOnKeyDown = (event) => {
const { which, ctrlKey } = event;
2023-02-06 21:37:34 +08:00
switch (which) {
case KEY_CODES.ARROW_LEFT:
case KEY_CODES.PAGE_UP:
previousSlideHandler();
break;
case KEY_CODES.ARROW_RIGHT:
case KEY_CODES.PAGE_DOWN:
nextSlideHandler();
break;
case KEY_CODES.ENTER:
fullscreenToggleHandler();
break;
case KEY_CODES.A:
if (ctrlKey) {
event.preventDefault();
event.stopPropagation();
tldrawAPI?.selectAll();
}
break;
2023-02-06 21:37:34 +08:00
default:
}
};
2023-02-06 21:37:34 +08:00
2022-07-21 02:50:13 +08:00
const onMount = (app) => {
const menu = document.getElementById('TD-Styles')?.parentElement;
const canvas = document.getElementById('canvas');
if (canvas) {
canvas.addEventListener('wheel', handleWheelEvent, { capture: true });
}
if (menu) {
const MENU_OFFSET = '48px';
menu.style.position = 'relative';
2023-02-10 21:37:29 +08:00
menu.style.height = presentationMenuHeight;
menu.setAttribute('id', 'TD-Styles-Parent');
2022-10-28 01:16:44 +08:00
if (isRTL) {
menu.style.left = MENU_OFFSET;
} else {
menu.style.right = MENU_OFFSET;
}
[...menu.children]
.sort((a, b) => (a?.id > b?.id ? -1 : 1))
.forEach((n) => menu.appendChild(n));
}
app.setSetting('language', language);
2022-11-14 02:15:17 +08:00
app?.setSetting('isDarkMode', false);
app?.patchState(
{
appState: {
currentStyle: {
textAlign: isRTL ? 'end' : 'start',
font: fontFamily,
2022-11-14 02:15:17 +08:00
},
},
},
2022-11-14 02:15:17 +08:00
);
setSafeTLDrawAPI(app);
2022-07-21 02:50:13 +08:00
// disable for non presenter that doesn't have multi user access
if (!hasWBAccess && !isPresenter) {
const newApp = app;
newApp.onPan = () => { };
newApp.setSelectedIds = () => { };
newApp.setHoveredId = () => { };
2022-07-21 02:50:13 +08:00
}
if (history) {
app.replaceHistory(history);
}
2023-03-23 02:00:19 +08:00
if (curPageId) {
app.patchState(
{
appState: {
currentPageId: curPageId,
},
},
);
setIsMounting(true);
}
2022-07-21 02:50:13 +08:00
};
2022-08-03 22:19:12 +08:00
const onPatch = (e, t, reason) => {
if (!e?.pageState || !reason) return;
if (((isPanning || panSelected) && (reason === 'selected' || reason === 'set_hovered_id'))) {
e.patchState(
{
document: {
pageStates: {
[e.getPage()?.id]: {
selectedIds: [],
hoveredId: null,
},
},
},
},
);
return;
}
// don't allow select others shapes for editing if don't have permission
if (reason && reason.includes('set_editing_id')) {
if (!hasShapeAccess(e.pageState.editingId)) {
e.pageState.editingId = null;
}
}
// don't allow hover others shapes for editing if don't have permission
if (reason && reason.includes('set_hovered_id')) {
if (!hasShapeAccess(e.pageState.hoveredId)) {
e.pageState.hoveredId = null;
}
}
// don't allow select others shapes if don't have permission
if (reason && reason.includes('selected')) {
const validIds = [];
e.pageState.selectedIds.forEach((id) => hasShapeAccess(id) && validIds.push(id));
e.pageState.selectedIds = validIds;
e.patchState(
{
document: {
pageStates: {
[e.getPage()?.id]: {
selectedIds: validIds,
},
},
},
},
);
}
// don't allow selecting others shapes with ctrl (brush)
if (e?.session?.type === 'brush' && e?.session?.status === 'brushing') {
const validIds = [];
e.pageState.selectedIds.forEach((id) => hasShapeAccess(id) && validIds.push(id));
e.pageState.selectedIds = validIds;
if (!validIds.find((id) => id === e.pageState.hoveredId)) {
e.pageState.hoveredId = undefined;
}
}
2023-02-11 02:30:24 +08:00
// change cursor when moving shapes
if (e?.session?.type === 'translate' && e?.session?.status === 'translating') {
2023-02-11 02:30:24 +08:00
if (!isMoving) setIsMoving(true);
if (reason === 'set_status:idle') setIsMoving(false);
2023-02-11 02:30:24 +08:00
}
if (reason && isPresenter && slidePosition && (reason.includes('zoomed') || reason.includes('panned'))) {
2023-02-24 07:47:34 +08:00
const camera = tldrawAPI?.getPageState()?.camera;
// limit bounds
if (tldrawAPI?.viewport.maxX > slidePosition.width) {
camera.point[0] += (tldrawAPI?.viewport.maxX - slidePosition.width);
}
if (tldrawAPI?.viewport.maxY > slidePosition.height) {
camera.point[1] += (tldrawAPI?.viewport.maxY - slidePosition.height);
}
if (camera.point[0] > 0 || tldrawAPI?.viewport.minX < 0) {
camera.point[0] = 0;
}
if (camera.point[1] > 0 || tldrawAPI?.viewport.minY < 0) {
camera.point[1] = 0;
2022-07-21 02:50:13 +08:00
}
const zoomFitSlide = calculateZoom(slidePosition.width, slidePosition.height);
if (camera.zoom < zoomFitSlide) {
camera.zoom = zoomFitSlide;
}
tldrawAPI?.setCamera([camera.point[0], camera.point[1]], camera.zoom);
const zoomToolbar = Math.round(((HUNDRED_PERCENT * camera.zoom) / zoomFitSlide) * 100) / 100;
if (zoom !== zoomToolbar) {
setZoom(zoomToolbar);
if (isPresenter) zoomChanger(zoomToolbar);
2022-07-21 02:50:13 +08:00
}
let viewedRegionW = SlideCalcUtil.calcViewedRegionWidth(
tldrawAPI?.viewport.width, slidePosition.width,
);
let viewedRegionH = SlideCalcUtil.calcViewedRegionHeight(
tldrawAPI?.viewport.height, slidePosition.height,
);
if (!fitToWidth && camera.zoom === zoomFitSlide) {
viewedRegionW = HUNDRED_PERCENT;
viewedRegionH = HUNDRED_PERCENT;
}
zoomSlide(
parseInt(curPageId, 10),
podId,
viewedRegionW,
viewedRegionH,
camera.point[0],
camera.point[1],
);
2022-07-21 02:50:13 +08:00
}
// don't allow non-presenters to pan&zoom
if (slidePosition && reason && !isPresenter && (reason.includes('zoomed') || reason.includes('panned'))) {
const newZoom = calculateZoom(slidePosition.viewBoxWidth, slidePosition.viewBoxHeight);
tldrawAPI?.setCamera([slidePosition.x, slidePosition.y], newZoom);
2022-07-21 02:50:13 +08:00
}
// disable select for non presenter that doesn't have multi user access
if (!hasWBAccess && !isPresenter) {
if (e?.getPageState()?.brush || e?.selectedIds?.length !== 0) {
e.patchState(
{
document: {
pageStates: {
[e?.currentPageId]: {
selectedIds: [],
brush: null,
},
},
},
},
);
}
}
2022-09-01 03:01:53 +08:00
if (reason && reason === 'patched_shapes' && e?.session?.type === 'edit') {
2022-09-01 03:01:53 +08:00
const patchedShape = e?.getShape(e?.getPageState()?.editingId);
if (e?.session?.initialShape?.type === 'sticky' && patchedShape?.text?.length > maxStickyNoteLength) {
patchedShape.text = patchedShape.text.substring(0, maxStickyNoteLength);
}
if (e?.session?.initialShape?.type === 'text' && !shapes[patchedShape.id]) {
// check for maxShapes
const currentShapes = e?.document?.pages[e?.currentPageId]?.shapes;
const shapeNumberExceeded = Object.keys(currentShapes).length - 1 > maxNumberOfAnnotations;
if (shapeNumberExceeded) {
notifyShapeNumberExceeded(intl, maxNumberOfAnnotations);
e?.cancelSession?.();
} else {
patchedShape.userId = currentUser?.userId;
persistShape(patchedShape, whiteboardId);
}
} else {
const diff = {
id: patchedShape.id,
point: patchedShape.point,
text: patchedShape.text,
};
persistShape(diff, whiteboardId);
2022-09-01 03:01:53 +08:00
}
}
2023-01-12 03:32:03 +08:00
if (reason && reason.includes('selected_tool')) {
const tool = reason.split(':')[1];
setCurrentTool(tool);
2023-02-24 07:47:34 +08:00
setPanSelected(false);
setIsPanning(false);
}
2023-03-09 04:41:25 +08:00
if (reason && reason.includes('ui:toggled_is_loading')) {
e?.patchState(
{
appState: {
currentStyle,
},
},
);
}
2023-03-09 04:41:25 +08:00
e?.patchState(
{
appState: {
isToolLocked,
2023-03-09 04:41:25 +08:00
},
},
2023-03-09 04:41:25 +08:00
);
if ((panSelected || isPanning)) {
e.isForcePanning = isPanning;
}
2022-07-21 02:50:13 +08:00
};
const onUndo = (app) => {
if (app.currentPageId !== curPageId) {
if (isPresenter) {
// change slide for others
skipToSlide(Number.parseInt(app.currentPageId, 10), podId);
} else {
// ignore, stay on same page
app.changePage(curPageId);
}
return;
}
const lastCommand = app.stack[app.pointer + 1];
const changedShapes = lastCommand?.before?.document?.pages[app.currentPageId]?.shapes;
if (changedShapes) {
sendShapeChanges(
app, changedShapes, shapes, prevShapes, hasShapeAccess,
whiteboardId, currentUser, intl, true,
);
}
};
const onRedo = (app) => {
if (app.currentPageId !== curPageId) {
if (isPresenter) {
// change slide for others
skipToSlide(Number.parseInt(app.currentPageId, 10), podId);
} else {
// ignore, stay on same page
app.changePage(curPageId);
2022-09-01 03:01:53 +08:00
}
return;
}
const lastCommand = app.stack[app.pointer];
const changedShapes = lastCommand?.after?.document?.pages[app.currentPageId]?.shapes;
if (changedShapes) {
sendShapeChanges(
app, changedShapes, shapes, prevShapes, hasShapeAccess, whiteboardId, currentUser, intl,
);
}
};
const onCommand = (app, command) => {
const isFirstCommand = command.id === "change_page" && command.before?.appState.currentPageId === "0";
if (!isFirstCommand){
setHistory(app.history);
}
if (whiteboardToolbarAutoHide && command && command.id === "change_page") {
toggleToolsAnimations('fade-in', 'fade-out', '0s');
}
if (command?.id?.includes('style')) {
setCurrentStyle({ ...currentStyle, ...command?.after?.appState?.currentStyle });
}
const changedShapes = command.after?.document?.pages[app.currentPageId]?.shapes;
if (!isMounting && app.currentPageId !== curPageId) {
// can happen then the "move to page action" is called, or using undo after changing a page
const currentPage = curPres.pages.find(
(page) => page.num === Number.parseInt(app.currentPageId, 10),
);
if (!currentPage) return;
const newWhiteboardId = currentPage.id;
// remove from previous page and persist on new
if (changedShapes) {
removeShapes(Object.keys(changedShapes), whiteboardId);
Object.entries(changedShapes)
.forEach(([id, shape]) => {
const shapeBounds = app.getShapeBounds(id);
const editedShape = shape;
editedShape.size = [shapeBounds.width, shapeBounds.height];
persistShape(editedShape, newWhiteboardId);
});
}
if (isPresenter) {
// change slide for others
skipToSlide(Number.parseInt(app.currentPageId, 10), podId);
} else {
// ignore, stay on same page
app.changePage(curPageId);
}
} else if (changedShapes) {
sendShapeChanges(
app, changedShapes, shapes, prevShapes, hasShapeAccess, whiteboardId, currentUser, intl,
);
2022-09-01 03:01:53 +08:00
}
2022-07-21 02:50:13 +08:00
};
const webcams = document.getElementById('cameraDock');
const dockPos = webcams?.getAttribute('data-position');
2023-01-26 02:49:09 +08:00
2023-03-27 21:38:05 +08:00
if (currentTool && !isPanning && !tldrawAPI?.isForcePanning) tldrawAPI?.selectTool(currentTool);
2023-01-26 02:49:09 +08:00
2022-07-21 02:50:13 +08:00
const editableWB = (
<Styled.EditableWBWrapper onKeyDown={handleOnKeyDown}>
2022-12-14 00:11:56 +08:00
<Tldraw
2023-04-13 02:36:13 +08:00
key={`wb-${isRTL}-${dockPos}-${presentationAreaHeight}-${presentationAreaWidth}-${sidebarNavigationWidth}`}
2022-12-14 00:11:56 +08:00
document={doc}
// disable the ability to drag and drop files onto the whiteboard
// until we handle saving of assets in akka.
disableAssets
2022-12-14 00:11:56 +08:00
// Disable automatic focus. Users were losing focus on shared notes
// and chat on presentation mount.
autofocus={false}
onMount={onMount}
showPages={false}
showZoom={false}
showUI={curPres ? (isPresenter || hasWBAccess) : true}
showMenu={!curPres}
2022-12-14 00:11:56 +08:00
showMultiplayerMenu={false}
readOnly={false}
onPatch={onPatch}
onUndo={onUndo}
onRedo={onRedo}
onCommand={onCommand}
/>
</Styled.EditableWBWrapper>
2022-07-21 02:50:13 +08:00
);
const readOnlyWB = (
<Tldraw
key="wb-readOnly"
2022-07-21 02:50:13 +08:00
document={doc}
onMount={onMount}
// disable the ability to drag and drop files onto the whiteboard
// until we handle saving of assets in akka.
disableAssets
2022-07-21 02:50:13 +08:00
// Disable automatic focus. Users were losing focus on shared notes
// and chat on presentation mount.
autofocus={false}
showPages={false}
showZoom={false}
showUI={false}
showMenu={false}
showMultiplayerMenu={false}
readOnly
2022-07-21 02:50:13 +08:00
onPatch={onPatch}
/>
);
const size = ((height < SMALL_HEIGHT) || (width < SMALL_WIDTH))
? TOOLBAR_SMALL : TOOLBAR_LARGE;
if (hasWBAccess || isPresenter) {
if (((height < SMALLEST_HEIGHT) || (width < SMALLEST_WIDTH))) {
tldrawAPI?.setSetting('dockPosition', 'bottom');
} else {
tldrawAPI?.setSetting('dockPosition', isRTL ? 'left' : 'right');
}
}
2023-03-27 23:33:10 +08:00
const menuOffsetValues = {
true: {
true: `${styleMenuOffsetSmall}`,
false: `${styleMenuOffset}`,
},
false: {
true: `-${styleMenuOffsetSmall}`,
false: `-${styleMenuOffset}`,
},
};
const menuOffset = menuOffsetValues[isRTL][isIphone];
2022-07-21 02:50:13 +08:00
return (
<div key={`animations=-${animations}`}>
2022-07-21 02:50:13 +08:00
<Cursors
tldrawAPI={tldrawAPI}
currentUser={currentUser}
hasMultiUserAccess={hasMultiUserAccess}
2022-07-21 02:50:13 +08:00
whiteboardId={whiteboardId}
isViewersCursorLocked={isViewersCursorLocked}
isMultiUserActive={isMultiUserActive}
isPanning={isPanning || panSelected}
2023-02-11 02:30:24 +08:00
isMoving={isMoving}
2023-01-12 03:32:03 +08:00
currentTool={currentTool}
whiteboardToolbarAutoHide={whiteboardToolbarAutoHide}
toggleToolsAnimations={toggleToolsAnimations}
2022-07-21 02:50:13 +08:00
>
{(hasWBAccess || isPresenter) ? editableWB : readOnlyWB}
<Styled.TldrawGlobalStyle
hideContextMenu={!hasWBAccess && !isPresenter}
{...{
hasWBAccess,
isPresenter,
size,
darkTheme,
2023-03-27 23:33:10 +08:00
menuOffset,
2023-04-02 22:39:41 +08:00
panSelected,
isToolbarVisible,
}}
/>
</Cursors>
{isPresenter && (
2023-02-24 07:47:34 +08:00
<PanToolInjector
{...{
tldrawAPI,
fitToWidth,
isPanning,
setIsPanning,
zoomValue,
panSelected,
setPanSelected,
currentTool,
2023-02-24 07:47:34 +08:00
}}
formatMessage={intl?.formatMessage}
/>
)}
</div>
2022-04-05 22:49:13 +08:00
);
}
Whiteboard.propTypes = {
isPresenter: PropTypes.bool.isRequired,
2023-03-27 23:45:16 +08:00
isIphone: PropTypes.bool.isRequired,
removeShapes: PropTypes.func.isRequired,
initDefaultPages: PropTypes.func.isRequired,
persistShape: PropTypes.func.isRequired,
notifyNotAllowedChange: PropTypes.func.isRequired,
shapes: PropTypes.objectOf(PropTypes.shape).isRequired,
assets: PropTypes.objectOf(PropTypes.shape).isRequired,
currentUser: PropTypes.shape({
userId: PropTypes.string.isRequired,
}).isRequired,
curPres: PropTypes.shape({
pages: PropTypes.arrayOf(PropTypes.shape({})),
id: PropTypes.string.isRequired,
}),
whiteboardId: PropTypes.string,
podId: PropTypes.string.isRequired,
zoomSlide: PropTypes.func.isRequired,
skipToSlide: PropTypes.func.isRequired,
slidePosition: PropTypes.shape({
x: PropTypes.number.isRequired,
y: PropTypes.number.isRequired,
height: PropTypes.number.isRequired,
width: PropTypes.number.isRequired,
viewBoxWidth: PropTypes.number.isRequired,
viewBoxHeight: PropTypes.number.isRequired,
}),
curPageId: PropTypes.string.isRequired,
presentationWidth: PropTypes.number.isRequired,
presentationHeight: PropTypes.number.isRequired,
isViewersCursorLocked: PropTypes.bool.isRequired,
zoomChanger: PropTypes.func.isRequired,
isMultiUserActive: PropTypes.func.isRequired,
isRTL: PropTypes.bool.isRequired,
fitToWidth: PropTypes.bool.isRequired,
zoomValue: PropTypes.number.isRequired,
intl: PropTypes.shape({
formatMessage: PropTypes.func.isRequired,
}).isRequired,
svgUri: PropTypes.string,
maxStickyNoteLength: PropTypes.number.isRequired,
fontFamily: PropTypes.string.isRequired,
hasShapeAccess: PropTypes.func.isRequired,
presentationAreaHeight: PropTypes.number.isRequired,
presentationAreaWidth: PropTypes.number.isRequired,
maxNumberOfAnnotations: PropTypes.number.isRequired,
notifyShapeNumberExceeded: PropTypes.func.isRequired,
darkTheme: PropTypes.bool.isRequired,
isPanning: PropTypes.bool.isRequired,
setTldrawIsMounting: PropTypes.func.isRequired,
width: PropTypes.number.isRequired,
height: PropTypes.number.isRequired,
hasMultiUserAccess: PropTypes.func.isRequired,
fullscreenElementId: PropTypes.string.isRequired,
isFullscreen: PropTypes.bool.isRequired,
layoutContextDispatch: PropTypes.func.isRequired,
fullscreenAction: PropTypes.string.isRequired,
fullscreenRef: PropTypes.instanceOf(Element),
handleToggleFullScreen: PropTypes.func.isRequired,
nextSlide: PropTypes.func.isRequired,
numberOfSlides: PropTypes.number.isRequired,
previousSlide: PropTypes.func.isRequired,
2023-04-13 02:36:13 +08:00
sidebarNavigationWidth: PropTypes.number,
};
Whiteboard.defaultProps = {
curPres: undefined,
fullscreenRef: undefined,
slidePosition: undefined,
svgUri: undefined,
whiteboardId: undefined,
2023-04-13 02:36:13 +08:00
sidebarNavigationWidth: 0,
};