import React from 'react';
import classNames from 'classnames';
import { Emojify } from './Emojify';
import { useConversationUsername } from '../../hooks/useParamSelector';
type Props = {
  pubkey: string;
  name?: string | null;
  profileName?: string | null;
  module?: string;
  boldProfileName?: Boolean;
  compact?: Boolean;
  shouldShowPubkey: Boolean;
};
export const ContactName = (props: Props) => {
  const { pubkey, name, profileName, module, boldProfileName, compact, shouldShowPubkey } = props;
  const prefix = module ? module : 'module-contact-name';
  const convoName = useConversationUsername(pubkey);
  const shouldShowProfile = Boolean(convoName || profileName || name);
  const styles = (boldProfileName
    ? {
        fontWeight: 'bold',
      }
    : {}) as React.CSSProperties;
  const textProfile = profileName || name || convoName || window.i18n('anonymous');
  const profileElement = shouldShowProfile ? (
    
      
    
  ) : null;
  const pubKeyElement = shouldShowPubkey ? (
    
      
    
  ) : null;
  return (
    
      {profileElement}
      {shouldShowProfile ? ' ' : null}
      {pubKeyElement}
    
  );
};