import React from 'react'; import PropTypes from 'prop-types'; import { Avatar } from '@openedx/paragon'; import classNames from 'classnames'; import { useSelector } from 'react-redux'; import { getConfig } from '@edx/frontend-platform'; import { AvatarOutlineAndLabelColors } from '../../../../data/constants'; import { AuthorLabel } from '../../../common'; import { useAlertBannerVisible } from '../../../data/hooks'; import { selectAuthorAvatar } from '../../../posts/data/selectors'; const CommentHeader = ({ author, authorLabel, abuseFlagged, closed, createdAt, lastEdit, commentUsers, }) => { const colorClass = AvatarOutlineAndLabelColors[authorLabel]; const hasAnyAlert = useAlertBannerVisible({ author, abuseFlagged, lastEdit, closed, }); const authorAvatar = useSelector(selectAuthorAvatar(author)); const profileImage = getConfig()?.ENABLE_PROFILE_IMAGE === 'true' ? Object.values(commentUsers ?? {})[0]?.profile?.image : null; return (