-
Notifications
You must be signed in to change notification settings - Fork 11.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
regression: Rooms page filters faulty behavior (#30315)
- Loading branch information
Showing
6 changed files
with
144 additions
and
254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,90 @@ | ||
import { isDiscussion } from '@rocket.chat/core-typings'; | ||
import type { IRoom, RoomAdminFieldsType } from '@rocket.chat/core-typings'; | ||
import { Box, Icon } from '@rocket.chat/fuselage'; | ||
import { useMediaQuery } from '@rocket.chat/fuselage-hooks'; | ||
import { useRouter, useTranslation } from '@rocket.chat/ui-contexts'; | ||
import React, { useCallback } from 'react'; | ||
|
||
import { GenericTableCell, GenericTableRow } from '../../../components/GenericTable'; | ||
import RoomAvatar from '../../../components/avatar/RoomAvatar'; | ||
import { roomCoordinator } from '../../../lib/rooms/roomCoordinator'; | ||
|
||
const roomTypeI18nMap = { | ||
l: 'Omnichannel', | ||
c: 'Channel', | ||
d: 'Direct_Message', | ||
p: 'Private_Channel', | ||
} as const; | ||
|
||
const getRoomDisplayName = (room: Pick<IRoom, RoomAdminFieldsType>): string | undefined => | ||
room.t === 'd' ? room.usernames?.join(' x ') : roomCoordinator.getRoomName(room.t, room); | ||
|
||
const RoomRow = ({ room }: { room: Pick<IRoom, RoomAdminFieldsType> }) => { | ||
const t = useTranslation(); | ||
const mediaQuery = useMediaQuery('(min-width: 1024px)'); | ||
const router = useRouter(); | ||
|
||
const { _id, t: type, usersCount, msgs, default: isDefault, featured, ...args } = room; | ||
const icon = roomCoordinator.getRoomDirectives(room.t).getIcon?.(room); | ||
const roomName = getRoomDisplayName(room); | ||
|
||
const getRoomType = ( | ||
room: Pick<IRoom, RoomAdminFieldsType>, | ||
): (typeof roomTypeI18nMap)[keyof typeof roomTypeI18nMap] | 'Teams_Public_Team' | 'Teams_Private_Team' | 'Discussion' => { | ||
if (room.teamMain) { | ||
return room.t === 'c' ? 'Teams_Public_Team' : 'Teams_Private_Team'; | ||
} | ||
if (isDiscussion(room)) { | ||
return 'Discussion'; | ||
} | ||
return roomTypeI18nMap[(room as IRoom).t as keyof typeof roomTypeI18nMap]; | ||
}; | ||
|
||
const onClick = useCallback( | ||
(rid) => (): void => | ||
router.navigate({ | ||
name: 'admin-rooms', | ||
params: { | ||
context: 'edit', | ||
id: rid, | ||
}, | ||
}), | ||
[router], | ||
); | ||
|
||
return ( | ||
<GenericTableRow action key={_id} onKeyDown={onClick(_id)} onClick={onClick(_id)} tabIndex={0} role='link' qa-room-id={_id}> | ||
<GenericTableCell withTruncatedText> | ||
<Box display='flex' alignContent='center'> | ||
<RoomAvatar size={mediaQuery ? 'x28' : 'x40'} room={{ type, name: roomName, _id, ...args }} /> | ||
<Box | ||
display='flex' | ||
flexGrow={1} | ||
flexShrink={1} | ||
flexBasis='0%' | ||
flexDirection='row' | ||
alignSelf='center' | ||
alignItems='center' | ||
withTruncatedText | ||
> | ||
{icon && <Icon mi={4} name={icon} fontScale='p2m' color='hint' />} | ||
<Box fontScale='p2m' withTruncatedText color='default' qa-room-name={roomName}> | ||
{roomName} | ||
</Box> | ||
</Box> | ||
</Box> | ||
</GenericTableCell> | ||
<GenericTableCell> | ||
<Box color='hint' fontScale='p2m' withTruncatedText> | ||
{t(getRoomType(room))} | ||
</Box> | ||
</GenericTableCell> | ||
<GenericTableCell withTruncatedText>{usersCount}</GenericTableCell> | ||
{mediaQuery && <GenericTableCell withTruncatedText>{msgs}</GenericTableCell>} | ||
{mediaQuery && <GenericTableCell withTruncatedText>{isDefault ? t('True') : t('False')}</GenericTableCell>} | ||
{mediaQuery && <GenericTableCell withTruncatedText>{featured ? t('True') : t('False')}</GenericTableCell>} | ||
</GenericTableRow> | ||
); | ||
}; | ||
|
||
export default RoomRow; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.