actionNavigate.tsx 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. import { getClientColors, getClientInitials } from "../clients";
  2. import { Avatar } from "../components/Avatar";
  3. import { centerScrollOn } from "../scene/scroll";
  4. import { Collaborator } from "../types";
  5. import { register } from "./register";
  6. export const actionGoToCollaborator = register({
  7. name: "goToCollaborator",
  8. trackEvent: { category: "collab" },
  9. perform: (_elements, appState, value) => {
  10. const point = value as Collaborator["pointer"];
  11. if (!point) {
  12. return { appState, commitToHistory: false };
  13. }
  14. return {
  15. appState: {
  16. ...appState,
  17. ...centerScrollOn({
  18. scenePoint: point,
  19. viewportDimensions: {
  20. width: appState.width,
  21. height: appState.height,
  22. },
  23. zoom: appState.zoom,
  24. }),
  25. // Close mobile menu
  26. openMenu: appState.openMenu === "canvas" ? null : appState.openMenu,
  27. },
  28. commitToHistory: false,
  29. };
  30. },
  31. PanelComponent: ({ appState, updateData, data }) => {
  32. const clientId: string | undefined = data?.id;
  33. if (!clientId) {
  34. return null;
  35. }
  36. const collaborator = appState.collaborators.get(clientId);
  37. if (!collaborator) {
  38. return null;
  39. }
  40. const { background, stroke } = getClientColors(clientId, appState);
  41. const shortName = getClientInitials(collaborator.username);
  42. return (
  43. <Avatar
  44. color={background}
  45. border={stroke}
  46. onClick={() => updateData(collaborator.pointer)}
  47. >
  48. {shortName}
  49. </Avatar>
  50. );
  51. },
  52. });