Merge remote-tracking branch 'origin/master' into fix_multiplayer_concurrency
This commit is contained in:
commit
642e47bd03
@ -34,8 +34,7 @@ export function getDefaultAppState(): AppState {
|
|||||||
openMenu: null,
|
openMenu: null,
|
||||||
lastPointerDownWith: "mouse",
|
lastPointerDownWith: "mouse",
|
||||||
selectedElementIds: {},
|
selectedElementIds: {},
|
||||||
remotePointers: {},
|
collaborators: new Map(),
|
||||||
collaboratorCount: 0,
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -47,6 +46,8 @@ export function clearAppStateForLocalStorage(appState: AppState) {
|
|||||||
editingElement,
|
editingElement,
|
||||||
selectionElement,
|
selectionElement,
|
||||||
isResizing,
|
isResizing,
|
||||||
|
collaborators,
|
||||||
|
isCollaborating,
|
||||||
...exportedState
|
...exportedState
|
||||||
} = appState;
|
} = appState;
|
||||||
return exportedState;
|
return exportedState;
|
||||||
|
@ -193,8 +193,7 @@ export class App extends React.Component<any, AppState> {
|
|||||||
this.setState(state => ({
|
this.setState(state => ({
|
||||||
...res.appState,
|
...res.appState,
|
||||||
isCollaborating: state.isCollaborating,
|
isCollaborating: state.isCollaborating,
|
||||||
remotePointers: state.remotePointers,
|
collaborators: state.collaborators,
|
||||||
collaboratorCount: state.collaboratorCount,
|
|
||||||
}));
|
}));
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -234,8 +233,7 @@ export class App extends React.Component<any, AppState> {
|
|||||||
private destroySocketClient = () => {
|
private destroySocketClient = () => {
|
||||||
this.setState({
|
this.setState({
|
||||||
isCollaborating: false,
|
isCollaborating: false,
|
||||||
remotePointers: {},
|
collaborators: new Map(),
|
||||||
collaboratorCount: 0,
|
|
||||||
});
|
});
|
||||||
if (this.socket) {
|
if (this.socket) {
|
||||||
this.socket.close();
|
this.socket.close();
|
||||||
@ -348,11 +346,14 @@ export class App extends React.Component<any, AppState> {
|
|||||||
break;
|
break;
|
||||||
case "MOUSE_LOCATION":
|
case "MOUSE_LOCATION":
|
||||||
const { socketID, pointerCoords } = decryptedData.payload;
|
const { socketID, pointerCoords } = decryptedData.payload;
|
||||||
this.setState({
|
this.setState(state => {
|
||||||
remotePointers: {
|
if (state.collaborators.has(socketID)) {
|
||||||
...this.state.remotePointers,
|
const user = state.collaborators.get(socketID)!;
|
||||||
[socketID]: pointerCoords,
|
user.pointer = pointerCoords;
|
||||||
},
|
state.collaborators.set(socketID, user);
|
||||||
|
return state;
|
||||||
|
}
|
||||||
|
return null;
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -364,8 +365,21 @@ export class App extends React.Component<any, AppState> {
|
|||||||
}
|
}
|
||||||
this.socketInitialized = true;
|
this.socketInitialized = true;
|
||||||
});
|
});
|
||||||
this.socket.on("room-user-count", (collaboratorCount: number) => {
|
this.socket.on("room-user-change", (clients: string[]) => {
|
||||||
this.setState({ collaboratorCount });
|
this.setState(state => {
|
||||||
|
const collaborators: typeof state.collaborators = new Map();
|
||||||
|
for (const socketID of clients) {
|
||||||
|
if (state.collaborators.has(socketID)) {
|
||||||
|
collaborators.set(socketID, state.collaborators.get(socketID)!);
|
||||||
|
} else {
|
||||||
|
collaborators.set(socketID, {});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return {
|
||||||
|
...state,
|
||||||
|
collaborators,
|
||||||
|
};
|
||||||
|
});
|
||||||
});
|
});
|
||||||
this.socket.on("new-user", async (socketID: string) => {
|
this.socket.on("new-user", async (socketID: string) => {
|
||||||
this.broadcastSocketData({
|
this.broadcastSocketData({
|
||||||
@ -2133,17 +2147,19 @@ export class App extends React.Component<any, AppState> {
|
|||||||
const pointerViewportCoords: {
|
const pointerViewportCoords: {
|
||||||
[id: string]: { x: number; y: number };
|
[id: string]: { x: number; y: number };
|
||||||
} = {};
|
} = {};
|
||||||
for (const clientId in this.state.remotePointers) {
|
this.state.collaborators.forEach((user, socketID) => {
|
||||||
const remotePointerCoord = this.state.remotePointers[clientId];
|
if (!user.pointer) {
|
||||||
pointerViewportCoords[clientId] = sceneCoordsToViewportCoords(
|
return;
|
||||||
|
}
|
||||||
|
pointerViewportCoords[socketID] = sceneCoordsToViewportCoords(
|
||||||
{
|
{
|
||||||
sceneX: remotePointerCoord.x,
|
sceneX: user.pointer.x,
|
||||||
sceneY: remotePointerCoord.y,
|
sceneY: user.pointer.y,
|
||||||
},
|
},
|
||||||
this.state,
|
this.state,
|
||||||
this.canvas,
|
this.canvas,
|
||||||
);
|
);
|
||||||
}
|
});
|
||||||
const { atLeastOneVisibleElement, scrollBars } = renderScene(
|
const { atLeastOneVisibleElement, scrollBars } = renderScene(
|
||||||
elements,
|
elements,
|
||||||
this.state,
|
this.state,
|
||||||
|
@ -116,7 +116,7 @@ export const LayerUI = React.memo(
|
|||||||
{actionManager.renderAction("clearCanvas")}
|
{actionManager.renderAction("clearCanvas")}
|
||||||
<RoomDialog
|
<RoomDialog
|
||||||
isCollaborating={appState.isCollaborating}
|
isCollaborating={appState.isCollaborating}
|
||||||
collaboratorCount={appState.collaboratorCount}
|
collaboratorCount={appState.collaborators.size}
|
||||||
onRoomCreate={onRoomCreate}
|
onRoomCreate={onRoomCreate}
|
||||||
onRoomDestroy={onRoomDestroy}
|
onRoomDestroy={onRoomDestroy}
|
||||||
/>
|
/>
|
||||||
|
@ -47,7 +47,7 @@ export function MobileMenu({
|
|||||||
{actionManager.renderAction("clearCanvas")}
|
{actionManager.renderAction("clearCanvas")}
|
||||||
<RoomDialog
|
<RoomDialog
|
||||||
isCollaborating={appState.isCollaborating}
|
isCollaborating={appState.isCollaborating}
|
||||||
collaboratorCount={appState.collaboratorCount}
|
collaboratorCount={appState.collaborators.size}
|
||||||
onRoomCreate={onRoomCreate}
|
onRoomCreate={onRoomCreate}
|
||||||
onRoomDestroy={onRoomDestroy}
|
onRoomDestroy={onRoomDestroy}
|
||||||
/>
|
/>
|
||||||
|
@ -116,7 +116,7 @@ export function RoomDialog({
|
|||||||
onRoomDestroy,
|
onRoomDestroy,
|
||||||
}: {
|
}: {
|
||||||
isCollaborating: AppState["isCollaborating"];
|
isCollaborating: AppState["isCollaborating"];
|
||||||
collaboratorCount: AppState["collaboratorCount"];
|
collaboratorCount: number;
|
||||||
onRoomCreate: () => void;
|
onRoomCreate: () => void;
|
||||||
onRoomDestroy: () => void;
|
onRoomDestroy: () => void;
|
||||||
}) {
|
}) {
|
||||||
|
@ -36,7 +36,7 @@ export function restoreFromLocalStorage() {
|
|||||||
appState = JSON.parse(savedState) as AppState;
|
appState = JSON.parse(savedState) as AppState;
|
||||||
// If we're retrieving from local storage, we should not be collaborating
|
// If we're retrieving from local storage, we should not be collaborating
|
||||||
appState.isCollaborating = false;
|
appState.isCollaborating = false;
|
||||||
appState.collaboratorCount = 0;
|
appState.collaborators = new Map();
|
||||||
} catch {
|
} catch {
|
||||||
// Do nothing because appState is already null
|
// Do nothing because appState is already null
|
||||||
}
|
}
|
||||||
|
@ -34,8 +34,7 @@ export type AppState = {
|
|||||||
openMenu: "canvas" | "shape" | null;
|
openMenu: "canvas" | "shape" | null;
|
||||||
lastPointerDownWith: PointerType;
|
lastPointerDownWith: PointerType;
|
||||||
selectedElementIds: { [id: string]: boolean };
|
selectedElementIds: { [id: string]: boolean };
|
||||||
remotePointers: { [id: string]: { x: number; y: number } };
|
collaborators: Map<string, { pointer?: { x: number; y: number } }>;
|
||||||
collaboratorCount: number;
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export type PointerCoords = Readonly<{
|
export type PointerCoords = Readonly<{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user