/* * Wire * Copyright (C) 2023 Wire Swiss GmbH * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see http://www.gnu.org/licenses/. * */ import React from 'react'; import ko from 'knockout'; import {UserBlockedBadge, UserVerificationBadges} from 'Components/Badge'; import * as Icon from 'Components/Icon'; import {UserInfo} from 'Components/UserInfo'; import {User} from 'src/script/entity/User'; import {ServiceEntity} from 'src/script/integration/ServiceEntity'; import {useKoSubscribableChildren} from 'Util/ComponentUtil'; import { contentInfoWrapper, contentInfoText, selfIndicator, userName, ellipsis, nameWrapper, chevronIcon, contentText, wrapper, } from './ParticipantItem.styles'; export interface ParticipantItemContentProps { /** the conversation context in which we are displaying the user (will enable e2ei verification badges) */ groupId?: string; participant: User | ServiceEntity; shortDescription?: string; selfString?: string; hasUsernameInfo?: boolean; showArrow?: boolean; onDropdownClick?: (event: React.MouseEvent) => void; isProteusVerified?: boolean; isMLSVerified?: boolean; } const servicePlaceholder = {isBlocked: ko.observable(false)}; export const ParticipantItemContent = ({ groupId, participant, shortDescription = '', selfString = '', hasUsernameInfo = false, showArrow = false, }: ParticipantItemContentProps) => { const {name} = useKoSubscribableChildren(participant, ['name']); const isService = participant instanceof ServiceEntity; const {isBlocked} = useKoSubscribableChildren(!isService ? participant : servicePlaceholder, ['isBlocked']); return (
{!isService ? ( {isBlocked && ( )} ) : ( <>
{name} {selfString && {selfString}}
)}
{shortDescription && (
{shortDescription}
)}
{showArrow && }
); };