* add mutation observer hok * add hook to read speaking member by observing iframe content * display speaking member name in call status bar and improve layout * fix shrining * add joined call control bar * remove chat toggle from room header * change member speaking icon to mic * fix joined call control appear in other * show spinner on end call button * hide call statusbar for mobile view when room is selected * make call statusbar more mobile friendly * fix call status bar item align
137 lines
4.5 KiB
TypeScript
137 lines
4.5 KiB
TypeScript
import React, { MouseEventHandler, useState } from 'react';
|
|
import {
|
|
Avatar,
|
|
Badge,
|
|
Box,
|
|
Chip,
|
|
config,
|
|
Icon,
|
|
Icons,
|
|
Menu,
|
|
MenuItem,
|
|
PopOut,
|
|
RectCords,
|
|
Scroll,
|
|
Text,
|
|
toRem,
|
|
} from 'folds';
|
|
import { CallMembership } from 'matrix-js-sdk/lib/matrixrtc/CallMembership';
|
|
import FocusTrap from 'focus-trap-react';
|
|
import { Room } from 'matrix-js-sdk';
|
|
import * as css from './styles.css';
|
|
import { stopPropagation } from '../../utils/keyboard';
|
|
import { getMemberAvatarMxc, getMemberDisplayName } from '../../utils/room';
|
|
import { getMxIdLocalPart, mxcUrlToHttp } from '../../utils/matrix';
|
|
import { useMatrixClient } from '../../hooks/useMatrixClient';
|
|
import { useMediaAuthentication } from '../../hooks/useMediaAuthentication';
|
|
import { UserAvatar } from '../../components/user-avatar';
|
|
import { useOpenUserRoomProfile } from '../../state/hooks/userRoomProfile';
|
|
import { getMouseEventCords } from '../../utils/dom';
|
|
|
|
type LiveChipProps = {
|
|
room: Room;
|
|
members: CallMembership[];
|
|
count: number;
|
|
};
|
|
export function LiveChip({ count, room, members }: LiveChipProps) {
|
|
const mx = useMatrixClient();
|
|
const useAuthentication = useMediaAuthentication();
|
|
const openUserProfile = useOpenUserRoomProfile();
|
|
|
|
const [cords, setCords] = useState<RectCords>();
|
|
|
|
const handleOpenMenu: MouseEventHandler<HTMLButtonElement> = (evt) => {
|
|
setCords(evt.currentTarget.getBoundingClientRect());
|
|
};
|
|
|
|
return (
|
|
<PopOut
|
|
anchor={cords}
|
|
position="Top"
|
|
align="Start"
|
|
content={
|
|
<FocusTrap
|
|
focusTrapOptions={{
|
|
initialFocus: false,
|
|
onDeactivate: () => setCords(undefined),
|
|
clickOutsideDeactivates: true,
|
|
isKeyForward: (evt: KeyboardEvent) => evt.key === 'ArrowDown',
|
|
isKeyBackward: (evt: KeyboardEvent) => evt.key === 'ArrowUp',
|
|
escapeDeactivates: stopPropagation,
|
|
}}
|
|
>
|
|
<Menu
|
|
style={{
|
|
maxHeight: '75vh',
|
|
maxWidth: toRem(300),
|
|
display: 'flex',
|
|
}}
|
|
>
|
|
<Box grow="Yes">
|
|
<Scroll size="0" hideTrack visibility="Hover">
|
|
<Box direction="Column" style={{ padding: config.space.S100 }}>
|
|
{members.map((callMember) => {
|
|
const userId = callMember.sender;
|
|
if (!userId) return null;
|
|
const name =
|
|
getMemberDisplayName(room, userId) ?? getMxIdLocalPart(userId) ?? userId;
|
|
const avatarMxc = getMemberAvatarMxc(room, userId);
|
|
const avatarUrl = avatarMxc
|
|
? mxcUrlToHttp(mx, avatarMxc, useAuthentication, 96, 96) ?? undefined
|
|
: undefined;
|
|
|
|
return (
|
|
<MenuItem
|
|
key={callMember.membershipID}
|
|
size="400"
|
|
variant="Surface"
|
|
radii="300"
|
|
style={{ paddingLeft: config.space.S200 }}
|
|
onClick={(evt) =>
|
|
openUserProfile(
|
|
room.roomId,
|
|
undefined,
|
|
userId,
|
|
getMouseEventCords(evt.nativeEvent),
|
|
'Right'
|
|
)
|
|
}
|
|
before={
|
|
<Avatar size="200" radii="400">
|
|
<UserAvatar
|
|
userId={userId}
|
|
src={avatarUrl}
|
|
alt={name}
|
|
renderFallback={() => <Icon size="50" src={Icons.User} filled />}
|
|
/>
|
|
</Avatar>
|
|
}
|
|
>
|
|
<Text size="T300" truncate>
|
|
{name}
|
|
</Text>
|
|
</MenuItem>
|
|
);
|
|
})}
|
|
</Box>
|
|
</Scroll>
|
|
</Box>
|
|
</Menu>
|
|
</FocusTrap>
|
|
}
|
|
>
|
|
<Chip
|
|
variant="Surface"
|
|
fill="Soft"
|
|
before={<Badge variant="Critical" fill="Solid" size="200" />}
|
|
after={<Icon size="50" src={cords ? Icons.ChevronBottom : Icons.ChevronTop} />}
|
|
radii="Pill"
|
|
onClick={handleOpenMenu}
|
|
>
|
|
<Text className={css.LiveChipText} as="span" size="L400" truncate>
|
|
{count} Live
|
|
</Text>
|
|
</Chip>
|
|
</PopOut>
|
|
);
|
|
}
|