mirror of
https://github.com/cinnyapp/cinny.git
synced 2025-11-04 14:30:29 +03:00
55 lines
1.7 KiB
TypeScript
55 lines
1.7 KiB
TypeScript
import React from 'react';
|
|
import { Menu, PopOut, toRem } from 'folds';
|
|
import FocusTrap from 'focus-trap-react';
|
|
import { useCloseUserRoomProfile, useUserRoomProfileState } from '../state/hooks/userRoomProfile';
|
|
import { UserRoomProfile } from './user-profile';
|
|
import { UserRoomProfileState } from '../state/userRoomProfile';
|
|
import { useAllJoinedRoomsSet, useGetRoom } from '../hooks/useGetRoom';
|
|
import { stopPropagation } from '../utils/keyboard';
|
|
import { SpaceProvider } from '../hooks/useSpace';
|
|
import { RoomProvider } from '../hooks/useRoom';
|
|
|
|
function UserRoomProfileContextMenu({ state }: { state: UserRoomProfileState }) {
|
|
const { roomId, spaceId, userId, cords, position } = state;
|
|
const allJoinedRooms = useAllJoinedRoomsSet();
|
|
const getRoom = useGetRoom(allJoinedRooms);
|
|
const room = getRoom(roomId);
|
|
const space = spaceId ? getRoom(spaceId) : undefined;
|
|
|
|
const close = useCloseUserRoomProfile();
|
|
|
|
if (!room) return null;
|
|
|
|
return (
|
|
<PopOut
|
|
anchor={cords}
|
|
position={position ?? 'Top'}
|
|
align="Start"
|
|
content={
|
|
<FocusTrap
|
|
focusTrapOptions={{
|
|
initialFocus: false,
|
|
onDeactivate: close,
|
|
clickOutsideDeactivates: true,
|
|
escapeDeactivates: stopPropagation,
|
|
}}
|
|
>
|
|
<Menu style={{ width: toRem(340) }}>
|
|
<SpaceProvider value={space ?? null}>
|
|
<RoomProvider value={room}>
|
|
<UserRoomProfile userId={userId} />
|
|
</RoomProvider>
|
|
</SpaceProvider>
|
|
</Menu>
|
|
</FocusTrap>
|
|
}
|
|
/>
|
|
);
|
|
}
|
|
|
|
export function UserRoomProfileRenderer() {
|
|
const state = useUserRoomProfileState();
|
|
|
|
if (!state) return null;
|
|
return <UserRoomProfileContextMenu state={state} />;
|
|
}
|