The communications platform that puts data protection first.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Rocket.Chat/apps/meteor/client/views/admin/deviceManagement/DeviceManagementAdminTable/DeviceManagementAdminRow.tsx

89 lines
2.7 KiB

import { Box } from '@rocket.chat/fuselage';
import { useMediaQuery, useEffectEvent } from '@rocket.chat/fuselage-hooks';
import type { GenericMenuItemProps } from '@rocket.chat/ui-client';
import { GenericMenu, GenericTableRow, GenericTableCell } from '@rocket.chat/ui-client';
import { useRoute } from '@rocket.chat/ui-contexts';
import type { KeyboardEvent } from 'react';
import { useCallback } from 'react';
import { useTranslation } from 'react-i18next';
import DeviceIcon from '../../../../components/deviceManagement/DeviceIcon';
import { useDeviceLogout } from '../../../../hooks/useDeviceLogout';
import { useFormatDateAndTime } from '../../../../hooks/useFormatDateAndTime';
type DeviceRowProps = {
_id: string;
username?: string;
ip: string;
deviceName?: string;
deviceType?: string;
deviceOSName?: string;
loginAt: string;
rcVersion?: string;
};
const DeviceManagementAdminRow = ({
_id,
username,
ip,
deviceName,
deviceType = 'browser',
deviceOSName = '',
loginAt,
rcVersion,
}: DeviceRowProps) => {
const { t } = useTranslation();
const deviceManagementRouter = useRoute('device-management');
const formatDateAndTime = useFormatDateAndTime();
const mediaQuery = useMediaQuery('(min-width: 1024px)');
const handleDeviceLogout = useDeviceLogout(_id, '/v1/sessions/logout');
const handleClick = useEffectEvent((): void => {
deviceManagementRouter.push({
context: 'info',
id: _id,
});
});
const handleKeyDown = useCallback(
(e: KeyboardEvent<HTMLOrSVGElement>): void => {
if (!['Enter', 'Space'].includes(e.nativeEvent.code)) {
return;
}
handleClick();
},
[handleClick],
);
const menuItems: GenericMenuItemProps[] = [
{
id: 'logoutDevice',
icon: 'sign-out',
content: t('Logout_Device'),
onClick: () => handleDeviceLogout(),
},
];
return (
<GenericTableRow key={_id} onKeyDown={handleKeyDown} onClick={handleClick} tabIndex={0} action>
<GenericTableCell>
<Box display='flex' alignItems='center'>
<DeviceIcon deviceType={deviceType} />
{deviceName && <Box withTruncatedText>{deviceName}</Box>}
</Box>
</GenericTableCell>
<GenericTableCell>{rcVersion}</GenericTableCell>
<GenericTableCell>{deviceOSName}</GenericTableCell>
<GenericTableCell withTruncatedText>{username}</GenericTableCell>
{mediaQuery && <GenericTableCell>{formatDateAndTime(loginAt)}</GenericTableCell>}
{mediaQuery && <GenericTableCell withTruncatedText>{_id}</GenericTableCell>}
{mediaQuery && <GenericTableCell withTruncatedText>{ip}</GenericTableCell>}
<GenericTableCell onClick={(e) => e.stopPropagation()}>
<GenericMenu detached placement='bottom-end' title={t('Options')} items={menuItems} />
</GenericTableCell>
</GenericTableRow>
);
};
export default DeviceManagementAdminRow;