// @flow import { makeStyles } from '@material-ui/styles'; import clsx from 'clsx'; import React, { useCallback, useState } from 'react'; import { useTranslation } from 'react-i18next'; import { useSelector } from 'react-redux'; import { ListItem } from '../../../base/components'; import { Icon, IconArrowDown, IconArrowUp } from '../../../base/icons'; import ParticipantItem from '../../../participants-pane/components/web/ParticipantItem'; import { ACTION_TRIGGER } from '../../../participants-pane/constants'; type Props = { /** * Type of trigger for the breakout room actions. */ actionsTrigger?: string, /** * React children. */ children: React$Node, /** * Is this item highlighted/raised. */ isHighlighted?: boolean, /** * Callback to raise menu. Used to raise menu on mobile long press. */ onRaiseMenu: Function, /** * Callback for when the mouse leaves this component. */ onLeave?: Function, /** * Room reference. */ room: Object, } const useStyles = makeStyles(theme => { return { container: { boxShadow: 'none' }, roomName: { overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap', ...theme.typography.labelButton, lineHeight: `${theme.typography.labelButton.lineHeight}px`, padding: '12px 0' }, arrowContainer: { backgroundColor: theme.palette.ui03, width: '24px', height: '24px', borderRadius: '6px', marginRight: '16px', display: 'flex', alignItems: 'center', justifyContent: 'center' } }; }); export const CollapsibleRoom = ({ actionsTrigger = ACTION_TRIGGER.HOVER, children, isHighlighted, onRaiseMenu, onLeave, room }: Props) => { const { t } = useTranslation(); const styles = useStyles(); const [ collapsed, setCollapsed ] = useState(false); const toggleCollapsed = useCallback(() => { setCollapsed(!collapsed); }, [ collapsed ]); const raiseMenu = useCallback(target => { onRaiseMenu(target); }, [ onRaiseMenu ]); const { defaultRemoteDisplayName } = useSelector(state => state['features/base/config']); const arrow = (
); const roomName = ( {`${room.name || t('breakoutRooms.mainRoom')} (${Object.keys(room?.participants || {}).length})`} ); return ( <> {!collapsed && room?.participants && Object.values(room?.participants || {}).map((p: Object) => ( )) } ); };