Files
frontend-app-discussions/src/discussions/posts/post/PostHeader.jsx
2022-05-19 15:55:06 +05:00

108 lines
3.3 KiB
JavaScript

import React from 'react';
import PropTypes from 'prop-types';
import { useSelector } from 'react-redux';
import { injectIntl, intlShape } from '@edx/frontend-platform/i18n';
import { Avatar, Badge, Icon } from '@edx/paragon';
import { Help } from '../../../components/icons';
import { AvatarBorderAndLabelColors, ThreadType } from '../../../data/constants';
import { ActionsDropdown, AuthorLabel } from '../../common';
import { selectAuthorAvatars } from '../data/selectors';
import messages from './messages';
import { postShape } from './proptypes';
export function PostAvatar({ post, authorLabel, fromPostLink }) {
const authorAvatars = useSelector(selectAuthorAvatars(post.author));
const borderColor = AvatarBorderAndLabelColors[authorLabel];
return (
<div style={{ width: '3.75rem' }} className="d-flex pr-2.5">
<div className="ml-auto mr-auto">
{post.type === ThreadType.QUESTION && (
<Icon
src={Help}
className="position-absolute bg-white rounded-circle"
style={{
width: '1.75rem',
height: '1.75rem',
}}
/>
)}
<Avatar
size={fromPostLink ? 'sm' : 'md'}
className={`${borderColor && `border-${borderColor}`} ${post.type === ThreadType.QUESTION ? 'mt-2.5 ml-2.5' : ''}`}
style={{ borderWidth: '2px', height: '1.5rem', width: '1.5rem' }}
alt={post.author}
src={authorAvatars?.imageUrlSmall}
/>
</div>
</div>
);
}
PostAvatar.propTypes = {
post: postShape.isRequired,
authorLabel: PropTypes.string,
fromPostLink: PropTypes.bool,
};
PostAvatar.defaultProps = {
authorLabel: null,
fromPostLink: false,
};
function PostHeader({
intl,
post,
preview,
actionHandlers,
}) {
const showAnsweredBadge = preview && post.hasEndorsed && post.type === ThreadType.QUESTION;
const authorLabelColor = AvatarBorderAndLabelColors[post.authorLabel];
return (
<div className="d-flex flex-fill mw-100">
<PostAvatar post={post} authorLabel={post.authorLabel} />
<div className="align-items-center d-flex flex-row" style={{ width: 'calc(100% - 8rem)' }}>
<div className="d-flex flex-column justify-content-start mw-100">
{preview
? (
<div className="h4 d-flex align-items-center pb-0 mb-0 flex-fill">
<div className="flex-fill text-truncate">
{post.title}
</div>
{showAnsweredBadge
&& <Badge variant="success">{intl.formatMessage(messages.answered)}</Badge>}
</div>
)
: <h3 className="mb-0">{post.title}</h3>}
<AuthorLabel
author={post.author || intl.formatMessage(messages.anonymous)}
authorLabel={post.authorLabel}
labelColor={authorLabelColor && `text-${authorLabelColor}`}
/>
</div>
</div>
{!preview
&& (
<div className="ml-auto">
<ActionsDropdown commentOrPost={post} actionHandlers={actionHandlers} />
</div>
)}
</div>
);
}
PostHeader.propTypes = {
intl: intlShape.isRequired,
post: postShape.isRequired,
preview: PropTypes.bool,
actionHandlers: PropTypes.objectOf(PropTypes.func).isRequired,
};
PostHeader.defaultProps = {
preview: false,
};
export default injectIntl(PostHeader);