lemmy-ui/src/shared/components/post/post-listing.tsx

1834 lines
52 KiB
TypeScript
Raw Normal View History

import classNames from "classnames";
2021-02-22 02:39:04 +00:00
import { Component, linkEvent } from "inferno";
import { Link } from "inferno-router";
import {
AddAdmin,
AddModToCommunity,
BanFromCommunity,
BanPerson,
BlockPerson,
CommunityModeratorView,
2020-12-24 01:58:27 +00:00
CreatePostLike,
CreatePostReport,
2020-12-24 01:58:27 +00:00
DeletePost,
2022-12-14 15:03:18 +00:00
FeaturePost,
Language,
2020-12-24 01:58:27 +00:00
LockPost,
2021-03-15 18:09:31 +00:00
PersonViewSafe,
2022-12-14 15:03:18 +00:00
PostFeatureType,
PostView,
PurgePerson,
PurgePost,
RemovePost,
SavePost,
2020-12-24 01:58:27 +00:00
TransferCommunity,
2021-02-22 02:39:04 +00:00
} from "lemmy-js-client";
import { externalHost } from "../../env";
import { i18n } from "../../i18next";
import { BanType, PostFormParams, PurgeType } from "../../interfaces";
import { UserService, WebSocketService } from "../../services";
import {
2022-12-14 15:03:18 +00:00
amAdmin,
amCommunityCreator,
amMod,
canAdmin,
canMod,
futureDaysToUnixTime,
hostname,
isAdmin,
isBanned,
isImage,
isMod,
isVideo,
mdNoImages,
mdToHtml,
mdToHtmlInline,
myAuth,
numToSI,
relTags,
setupTippy,
showScores,
wsClient,
} from "../../utils";
import { Icon, PurgeWarning, Spinner } from "../common/icon";
import { MomentTime } from "../common/moment-time";
import { PictrsImage } from "../common/pictrs-image";
import { CommunityLink } from "../community/community-link";
import { PersonListing } from "../person/person-listing";
import { MetadataCard } from "./metadata-card";
import { PostForm } from "./post-form";
interface PostListingState {
showEdit: boolean;
showRemoveDialog: boolean;
showPurgeDialog: boolean;
purgeReason?: string;
purgeType?: PurgeType;
purgeLoading: boolean;
removeReason?: string;
showBanDialog: boolean;
banReason?: string;
banExpireDays?: number;
banType?: BanType;
removeData?: boolean;
showConfirmTransferSite: boolean;
showConfirmTransferCommunity: boolean;
imageExpanded: boolean;
viewSource: boolean;
showAdvanced: boolean;
2020-09-26 16:18:49 +00:00
showMoreMobile: boolean;
showBody: boolean;
showReportDialog: boolean;
reportReason?: string;
my_vote?: number;
score: number;
upvotes: number;
downvotes: number;
}
interface PostListingProps {
2020-12-24 01:58:27 +00:00
post_view: PostView;
duplicates?: PostView[];
moderators?: CommunityModeratorView[];
admins?: PersonViewSafe[];
allLanguages: Language[];
siteLanguages: number[];
showCommunity?: boolean;
showBody?: boolean;
hideImage?: boolean;
enableDownvotes?: boolean;
enableNsfw?: boolean;
viewOnly?: boolean;
}
export class PostListing extends Component<PostListingProps, PostListingState> {
state: PostListingState = {
showEdit: false,
showRemoveDialog: false,
showPurgeDialog: false,
purgeType: PurgeType.Person,
purgeLoading: false,
showBanDialog: false,
banType: BanType.Community,
removeData: false,
showConfirmTransferSite: false,
showConfirmTransferCommunity: false,
imageExpanded: false,
viewSource: false,
showAdvanced: false,
2020-09-26 16:18:49 +00:00
showMoreMobile: false,
showBody: false,
showReportDialog: false,
2020-12-24 01:58:27 +00:00
my_vote: this.props.post_view.my_vote,
score: this.props.post_view.counts.score,
upvotes: this.props.post_view.counts.upvotes,
downvotes: this.props.post_view.counts.downvotes,
};
constructor(props: any, context: any) {
super(props, context);
this.handlePostLike = this.handlePostLike.bind(this);
this.handlePostDisLike = this.handlePostDisLike.bind(this);
this.handleEditPost = this.handleEditPost.bind(this);
this.handleEditCancel = this.handleEditCancel.bind(this);
}
componentWillReceiveProps(nextProps: PostListingProps) {
this.setState({
my_vote: nextProps.post_view.my_vote,
upvotes: nextProps.post_view.counts.upvotes,
downvotes: nextProps.post_view.counts.downvotes,
score: nextProps.post_view.counts.score,
});
2020-12-24 01:58:27 +00:00
if (this.props.post_view.post.id !== nextProps.post_view.post.id) {
this.setState({ imageExpanded: false });
}
}
render() {
const post = this.props.post_view.post;
return (
<div className="post-listing">
{!this.state.showEdit ? (
<>
{this.listing()}
{this.state.imageExpanded && !this.props.hideImage && this.img}
{post.url && this.showBody && post.embed_title && (
<MetadataCard post={post} />
)}
{this.showBody && this.body()}
</>
) : (
<div className="col-12">
<PostForm
post_view={this.props.post_view}
onEdit={this.handleEditPost}
onCancel={this.handleEditCancel}
enableNsfw={this.props.enableNsfw}
enableDownvotes={this.props.enableDownvotes}
allLanguages={this.props.allLanguages}
siteLanguages={this.props.siteLanguages}
/>
</div>
)}
</div>
);
}
body() {
let body = this.props.post_view.post.body;
return body ? (
<div className="col-12 card my-2 p-2">
{this.state.viewSource ? (
<pre>{body}</pre>
) : (
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(body)} />
)}
</div>
) : (
<></>
);
}
get img() {
let src = this.imageSrc;
return src ? (
<>
<div className="offset-sm-3 my-2 d-none d-sm-block">
<a href={src} className="d-inline-block">
<PictrsImage src={src} />
</a>
</div>
<div className="my-2 d-block d-sm-none">
<a
className="d-inline-block"
onClick={linkEvent(this, this.handleImageExpandClick)}
>
<PictrsImage src={src} />
</a>
</div>
</>
) : (
<></>
);
}
imgThumb(src: string) {
2020-12-24 01:58:27 +00:00
let post_view = this.props.post_view;
return (
<PictrsImage
src={src}
thumbnail
alt=""
2020-12-24 01:58:27 +00:00
nsfw={post_view.post.nsfw || post_view.community.nsfw}
/>
);
}
get imageSrc(): string | undefined {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
let url = post.url;
let thumbnail = post.thumbnail_url;
if (url && isImage(url)) {
if (url.includes("pictrs")) {
return url;
} else if (thumbnail) {
return thumbnail;
} else {
return url;
}
} else if (thumbnail) {
return thumbnail;
2020-09-09 00:48:17 +00:00
} else {
return undefined;
}
}
thumbnail() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
let url = post.url;
let thumbnail = post.thumbnail_url;
if (!this.props.hideImage && url && isImage(url) && this.imageSrc) {
return (
<a
href={this.imageSrc}
className="text-body d-inline-block position-relative mb-2"
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("expand_here")}
onClick={linkEvent(this, this.handleImageExpandClick)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("expand_here")}
>
{this.imgThumb(this.imageSrc)}
2021-02-11 20:35:27 +00:00
<Icon icon="image" classes="mini-overlay" />
</a>
);
} else if (!this.props.hideImage && url && thumbnail && this.imageSrc) {
return (
<a
className="text-body d-inline-block position-relative mb-2"
href={url}
rel={relTags}
title={url}
>
{this.imgThumb(this.imageSrc)}
2021-02-11 20:35:27 +00:00
<Icon icon="external-link" classes="mini-overlay" />
</a>
);
} else if (url) {
if (!this.props.hideImage && isVideo(url)) {
return (
<div className="embed-responsive embed-responsive-16by9">
<video
playsInline
muted
loop
controls
className="embed-responsive-item"
>
<source src={url} type="video/mp4" />
</video>
</div>
);
} else {
return (
<a className="text-body" href={url} title={url} rel={relTags}>
<div className="thumbnail rounded bg-light d-flex justify-content-center">
2021-02-11 20:35:27 +00:00
<Icon icon="external-link" classes="d-flex align-items-center" />
</div>
</a>
);
}
} else {
return (
<Link
className="text-body"
to={`/post/${post.id}`}
2021-02-22 02:39:04 +00:00
title={i18n.t("comments")}
>
<div className="thumbnail rounded bg-light d-flex justify-content-center">
2021-02-11 20:35:27 +00:00
<Icon icon="message-square" classes="d-flex align-items-center" />
</div>
</Link>
);
}
}
createdLine() {
2020-12-24 01:58:27 +00:00
let post_view = this.props.post_view;
let url = post_view.post.url;
let body = post_view.post.body;
return (
<ul className="list-inline mb-1 text-muted small">
<li className="list-inline-item">
2021-03-15 18:09:31 +00:00
<PersonListing person={post_view.creator} />
{this.creatorIsMod_ && (
2021-02-22 02:39:04 +00:00
<span className="mx-1 badge badge-light">{i18n.t("mod")}</span>
)}
{this.creatorIsAdmin_ && (
2021-02-22 02:39:04 +00:00
<span className="mx-1 badge badge-light">{i18n.t("admin")}</span>
)}
{post_view.creator.bot_account && (
<span className="mx-1 badge badge-light">
{i18n.t("bot_account").toLowerCase()}
</span>
)}
2020-12-24 01:58:27 +00:00
{(post_view.creator_banned_from_community ||
isBanned(post_view.creator)) && (
2021-02-22 02:39:04 +00:00
<span className="mx-1 badge badge-danger">{i18n.t("banned")}</span>
)}
{post_view.creator_blocked && (
<span className="mx-1 badge badge-danger">{"blocked"}</span>
)}
{this.props.showCommunity && (
<span>
<span className="mx-1"> {i18n.t("to")} </span>
2020-12-24 01:58:27 +00:00
<CommunityLink community={post_view.community} />
</span>
)}
</li>
<li className="list-inline-item"></li>
{url && !(hostname(url) == externalHost) && (
<>
<li className="list-inline-item">
<a
className="text-muted font-italic"
href={url}
title={url}
rel={relTags}
>
{hostname(url)}
</a>
</li>
<li className="list-inline-item"></li>
</>
)}
<li className="list-inline-item">
<span>
<MomentTime
published={post_view.post.published}
updated={post_view.post.updated}
/>
</span>
</li>
{body && (
<>
<li className="list-inline-item"></li>
<li className="list-inline-item">
<button
className="text-muted btn btn-sm btn-link p-0"
data-tippy-content={mdNoImages.render(body)}
data-tippy-allowHtml={true}
onClick={linkEvent(this, this.handleShowBody)}
>
<Icon icon="book-open" classes="icon-inline mr-1" />
</button>
</li>
</>
)}
</ul>
);
}
voteBar() {
return (
<div className={`vote-bar col-1 pr-0 small text-center`}>
<button
className={`btn-animate btn btn-link p-0 ${
this.state.my_vote == 1 ? "text-info" : "text-muted"
}`}
onClick={this.handlePostLike}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("upvote")}
aria-label={i18n.t("upvote")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="arrow-up1" classes="upvote" />
</button>
{showScores() ? (
<div
className={`unselectable pointer font-weight-bold text-muted px-1`}
data-tippy-content={this.pointsTippy}
>
{numToSI(this.state.score)}
</div>
) : (
<div className="p-1"></div>
)}
{this.props.enableDownvotes && (
<button
className={`btn-animate btn btn-link p-0 ${
this.state.my_vote == -1 ? "text-danger" : "text-muted"
}`}
onClick={this.handlePostDisLike}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("downvote")}
aria-label={i18n.t("downvote")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="arrow-down1" classes="downvote" />
</button>
)}
</div>
);
}
get postLink() {
let post = this.props.post_view.post;
return (
<Link
2023-02-21 20:53:15 +00:00
className={`d-inline-block ${
2022-12-14 15:03:18 +00:00
!post.featured_community && !post.featured_local
? "text-body"
: "text-primary"
2023-02-21 20:53:15 +00:00
}`}
to={`/post/${post.id}`}
title={i18n.t("comments")}
>
2023-02-21 20:53:15 +00:00
<div
className="d-inline-block"
dangerouslySetInnerHTML={mdToHtmlInline(post.name)}
/>
</Link>
);
}
postTitleLine() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
let url = post.url;
return (
<div className="post-title overflow-hidden">
<h5>
{url ? (
this.props.showBody ? (
<a
2023-02-21 20:53:15 +00:00
className={`d-inline-block ${
!post.featured_community && !post.featured_local
? "text-body"
: "text-primary"
2023-02-21 20:53:15 +00:00
}`}
href={url}
title={url}
rel={relTags}
>
2023-02-21 20:53:15 +00:00
<div
className="d-inline-block"
dangerouslySetInnerHTML={mdToHtmlInline(post.name)}
/>
</a>
) : (
this.postLink
)
) : (
this.postLink
)}
{(url && isImage(url)) ||
(post.thumbnail_url && (
<button
2023-02-21 20:53:15 +00:00
className="btn btn-link text-monospace text-muted small d-inline-block"
data-tippy-content={i18n.t("expand_here")}
onClick={linkEvent(this, this.handleImageExpandClick)}
>
<Icon
icon={
!this.state.imageExpanded ? "plus-square" : "minus-square"
}
classes="icon-inline"
/>
</button>
))}
{post.removed && (
<small className="ml-2 text-muted font-italic">
2021-02-22 02:39:04 +00:00
{i18n.t("removed")}
</small>
)}
{post.deleted && (
<small
className="unselectable pointer ml-2 text-muted font-italic"
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("deleted")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="trash" classes="icon-inline text-danger" />
</small>
)}
{post.locked && (
<small
className="unselectable pointer ml-2 text-muted font-italic"
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("locked")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="lock" classes="icon-inline text-danger" />
</small>
)}
2022-12-14 15:03:18 +00:00
{post.featured_community && (
<small
className="unselectable pointer ml-2 text-muted font-italic"
2022-12-14 15:03:18 +00:00
data-tippy-content={i18n.t("featured")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="pin" classes="icon-inline text-primary" />
</small>
)}
2022-12-14 15:03:18 +00:00
{post.featured_local && (
<small
className="unselectable pointer ml-2 text-muted font-italic"
data-tippy-content={i18n.t("featured")}
>
<Icon icon="pin" classes="icon-inline text-secondary" />
</small>
)}
{post.nsfw && (
<small className="ml-2 text-muted font-italic">
2021-02-22 02:39:04 +00:00
{i18n.t("nsfw")}
</small>
)}
</h5>
</div>
);
}
duplicatesLine() {
let dupes = this.props.duplicates;
return dupes && dupes.length > 0 ? (
<ul className="list-inline mb-1 small text-muted">
<>
<li className="list-inline-item mr-2">{i18n.t("cross_posted_to")}</li>
{dupes.map(pv => (
<li key={pv.post.id} className="list-inline-item mr-2">
<Link to={`/post/${pv.post.id}`}>
{pv.community.local
? pv.community.name
: `${pv.community.name}@${hostname(pv.community.actor_id)}`}
</Link>
</li>
))}
</>
</ul>
) : (
<></>
);
}
commentsLine(mobile = false) {
let post = this.props.post_view.post;
return (
<div className="d-flex justify-content-start flex-wrap text-muted font-weight-bold mb-1">
{this.commentsButton}
{!post.local && (
<a
className="btn btn-link btn-animate text-muted py-0"
title={i18n.t("link")}
href={post.ap_id}
>
<Icon icon="fedilink" inline />
</a>
)}
{mobile && !this.props.viewOnly && this.mobileVotes}
{UserService.Instance.myUserInfo &&
!this.props.viewOnly &&
this.postActions(mobile)}
</div>
);
}
postActions(mobile = false) {
// Possible enhancement: Priority+ pattern instead of just hard coding which get hidden behind the show more button.
// Possible enhancement: Make each button a component.
2020-12-24 01:58:27 +00:00
let post_view = this.props.post_view;
return (
<>
{this.saveButton}
{this.crossPostButton}
{mobile && this.showMoreButton}
{(!mobile || this.state.showAdvanced) && (
<>
{!this.myPost && (
<>
{this.reportButton}
{this.blockButton}
</>
)}
{this.myPost && (this.showBody || this.state.showAdvanced) && (
<>
{this.editButton}
{this.deleteButton}
</>
)}
</>
)}
{this.state.showAdvanced && (
<>
{this.showBody && post_view.post.body && this.viewSourceButton}
{/* Any mod can do these, not limited to hierarchy*/}
{(amMod(this.props.moderators) || amAdmin()) && (
<>
{this.lockButton}
2022-12-14 15:03:18 +00:00
{this.featureButton}
</>
)}
{(this.canMod_ || this.canAdmin_) && <>{this.modRemoveButton}</>}
</>
)}
{!mobile && this.showMoreButton}
</>
);
}
get commentsButton() {
let post_view = this.props.post_view;
return (
<button className="btn btn-link text-muted py-0 pl-0">
<Link
className="text-muted"
title={i18n.t("number_of_comments", {
count: post_view.counts.comments,
formattedCount: post_view.counts.comments,
})}
to={`/post/${post_view.post.id}?scrollToComments=true`}
>
<Icon icon="message-square" classes="mr-1" inline />
2022-09-27 19:42:24 +00:00
<span className="mr-2">
{i18n.t("number_of_comments", {
count: post_view.counts.comments,
formattedCount: numToSI(post_view.counts.comments),
})}
</span>
{this.unreadCount && (
<span className="small text-warning">
({this.unreadCount} {i18n.t("new")})
</span>
)}
</Link>
</button>
);
}
get unreadCount(): number | undefined {
2022-09-27 19:42:24 +00:00
let pv = this.props.post_view;
return pv.unread_comments == pv.counts.comments || pv.unread_comments == 0
? undefined
: pv.unread_comments;
2022-09-27 19:42:24 +00:00
}
get mobileVotes() {
// TODO: make nicer
let tippy = showScores() ? { "data-tippy-content": this.pointsTippy } : {};
return (
<>
<div>
<button
className={`btn-animate btn py-0 px-1 ${
this.state.my_vote == 1 ? "text-info" : "text-muted"
}`}
{...tippy}
onClick={this.handlePostLike}
aria-label={i18n.t("upvote")}
>
<Icon icon="arrow-up1" classes="icon-inline small" />
{showScores() && (
<span className="ml-2">{numToSI(this.state.upvotes)}</span>
)}
</button>
{this.props.enableDownvotes && (
<button
className={`ml-2 btn-animate btn py-0 px-1 ${
this.state.my_vote == -1 ? "text-danger" : "text-muted"
}`}
onClick={this.handlePostDisLike}
{...tippy}
aria-label={i18n.t("downvote")}
>
<Icon icon="arrow-down1" classes="icon-inline small" />
{showScores() && (
<span
className={classNames("ml-2", {
invisible: this.state.downvotes === 0,
})}
2020-09-26 16:18:49 +00:00
>
{numToSI(this.state.downvotes)}
</span>
2020-09-26 16:18:49 +00:00
)}
</button>
)}
</div>
</>
);
}
get saveButton() {
let saved = this.props.post_view.saved;
let label = saved ? i18n.t("unsave") : i18n.t("save");
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleSavePostClick)}
data-tippy-content={label}
aria-label={label}
>
<Icon
icon="star"
classes={classNames({ "text-warning": saved })}
inline
/>
</button>
);
}
get crossPostButton() {
return (
<Link
className="btn btn-link btn-animate text-muted py-0"
to={{
/* Empty string properties are required to satisfy type*/
pathname: "/create_post",
state: { ...this.crossPostParams },
hash: "",
key: "",
search: "",
}}
title={i18n.t("cross_post")}
>
<Icon icon="copy" inline />
</Link>
);
}
get reportButton() {
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleShowReportDialog)}
data-tippy-content={i18n.t("show_report_dialog")}
aria-label={i18n.t("show_report_dialog")}
>
<Icon icon="flag" inline />
</button>
);
}
get blockButton() {
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleBlockUserClick)}
data-tippy-content={i18n.t("block_user")}
aria-label={i18n.t("block_user")}
>
<Icon icon="slash" inline />
</button>
);
}
get editButton() {
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleEditClick)}
data-tippy-content={i18n.t("edit")}
aria-label={i18n.t("edit")}
>
<Icon icon="edit" inline />
</button>
);
}
get deleteButton() {
let deleted = this.props.post_view.post.deleted;
let label = !deleted ? i18n.t("delete") : i18n.t("restore");
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleDeleteClick)}
data-tippy-content={label}
aria-label={label}
>
<Icon
icon="trash"
classes={classNames({ "text-danger": deleted })}
inline
/>
</button>
);
}
get showMoreButton() {
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleShowAdvanced)}
data-tippy-content={i18n.t("more")}
aria-label={i18n.t("more")}
>
<Icon icon="more-vertical" inline />
</button>
);
}
get viewSourceButton() {
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleViewSource)}
data-tippy-content={i18n.t("view_source")}
aria-label={i18n.t("view_source")}
>
<Icon
icon="file-text"
classes={classNames({ "text-success": this.state.viewSource })}
inline
/>
</button>
);
}
get lockButton() {
let locked = this.props.post_view.post.locked;
let label = locked ? i18n.t("unlock") : i18n.t("lock");
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleModLock)}
data-tippy-content={label}
aria-label={label}
>
<Icon
icon="lock"
classes={classNames({ "text-danger": locked })}
inline
/>
</button>
);
}
2022-12-14 15:03:18 +00:00
get featureButton() {
const featuredCommunity = this.props.post_view.post.featured_community;
const labelCommunity = featuredCommunity
2022-12-14 15:03:18 +00:00
? i18n.t("unfeature_from_community")
: i18n.t("feature_in_community");
const featuredLocal = this.props.post_view.post.featured_local;
const labelLocal = featuredLocal
2022-12-14 15:03:18 +00:00
? i18n.t("unfeature_from_local")
: i18n.t("feature_in_local");
return (
2022-12-14 15:03:18 +00:00
<span>
<button
className="btn btn-link btn-animate text-muted py-0 pl-0"
onClick={linkEvent(this, this.handleModFeaturePostCommunity)}
data-tippy-content={labelCommunity}
aria-label={labelCommunity}
2022-12-14 15:03:18 +00:00
>
<Icon
icon="pin"
classes={classNames({ "text-success": featuredCommunity })}
2022-12-14 15:03:18 +00:00
inline
/>{" "}
Community
</button>
{amAdmin() && (
2022-12-14 15:03:18 +00:00
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleModFeaturePostLocal)}
data-tippy-content={labelLocal}
aria-label={labelLocal}
2022-12-14 15:03:18 +00:00
>
<Icon
icon="pin"
classes={classNames({ "text-success": featuredLocal })}
2022-12-14 15:03:18 +00:00
inline
/>{" "}
Local
</button>
)}
</span>
);
}
get modRemoveButton() {
let removed = this.props.post_view.post.removed;
return (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(
this,
!removed ? this.handleModRemoveShow : this.handleModRemoveSubmit
)}
>
{/* TODO: Find an icon for this. */}
{!removed ? i18n.t("remove") : i18n.t("restore")}
</button>
);
}
/**
* Mod/Admin actions to be taken against the author.
*/
userActionsLine() {
// TODO: make nicer
let post_view = this.props.post_view;
return (
this.state.showAdvanced && (
<>
{this.canMod_ && (
<>
{!this.creatorIsMod_ &&
(!post_view.creator_banned_from_community ? (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(
this,
this.handleModBanFromCommunityShow
)}
aria-label={i18n.t("ban_from_community")}
>
{i18n.t("ban_from_community")}
</button>
) : (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(
this,
this.handleModBanFromCommunitySubmit
)}
aria-label={i18n.t("unban")}
>
{i18n.t("unban")}
</button>
))}
{!post_view.creator_banned_from_community && (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleAddModToCommunity)}
aria-label={
this.creatorIsMod_
? i18n.t("remove_as_mod")
: i18n.t("appoint_as_mod")
}
>
{this.creatorIsMod_
? i18n.t("remove_as_mod")
: i18n.t("appoint_as_mod")}
</button>
)}
2020-09-26 16:18:49 +00:00
</>
)}
{/* Community creators and admins can transfer community to another mod */}
{(amCommunityCreator(post_view.creator.id, this.props.moderators) ||
this.canAdmin_) &&
this.creatorIsMod_ &&
(!this.state.showConfirmTransferCommunity ? (
2020-09-26 16:18:49 +00:00
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(
this,
this.handleShowConfirmTransferCommunity
)}
aria-label={i18n.t("transfer_community")}
2020-09-26 16:18:49 +00:00
>
{i18n.t("transfer_community")}
2020-09-26 16:18:49 +00:00
</button>
) : (
<>
2020-09-26 16:18:49 +00:00
<button
className="d-inline-block mr-1 btn btn-link btn-animate text-muted py-0"
aria-label={i18n.t("are_you_sure")}
2020-09-26 16:18:49 +00:00
>
{i18n.t("are_you_sure")}
2020-09-26 16:18:49 +00:00
</button>
<button
className="btn btn-link btn-animate text-muted py-0 d-inline-block mr-1"
aria-label={i18n.t("yes")}
onClick={linkEvent(this, this.handleTransferCommunity)}
>
{i18n.t("yes")}
</button>
<button
className="btn btn-link btn-animate text-muted py-0 d-inline-block"
onClick={linkEvent(
this,
this.handleCancelShowConfirmTransferCommunity
)}
aria-label={i18n.t("no")}
>
{i18n.t("no")}
</button>
</>
))}
{/* Admins can ban from all, and appoint other admins */}
{this.canAdmin_ && (
<>
{!this.creatorIsAdmin_ && (
<>
{!isBanned(post_view.creator) ? (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleModBanShow)}
aria-label={i18n.t("ban_from_site")}
>
{i18n.t("ban_from_site")}
</button>
) : (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleModBanSubmit)}
aria-label={i18n.t("unban_from_site")}
>
{i18n.t("unban_from_site")}
</button>
)}
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handlePurgePersonShow)}
aria-label={i18n.t("purge_user")}
2020-09-26 16:18:49 +00:00
>
{i18n.t("purge_user")}
</button>
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handlePurgePostShow)}
aria-label={i18n.t("purge_post")}
2020-09-26 16:18:49 +00:00
>
{i18n.t("purge_post")}
</button>
</>
)}
{!isBanned(post_view.creator) && post_view.creator.local && (
<button
className="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleAddAdmin)}
aria-label={
this.creatorIsAdmin_
? i18n.t("remove_as_admin")
: i18n.t("appoint_as_admin")
}
>
{this.creatorIsAdmin_
? i18n.t("remove_as_admin")
: i18n.t("appoint_as_admin")}
</button>
)}
2020-09-26 16:18:49 +00:00
</>
)}
</>
)
);
}
removeAndBanDialogs() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view;
let purgeTypeText =
this.state.purgeType == PurgeType.Post
? i18n.t("purge_post")
: `${i18n.t("purge")} ${post.creator.name}`;
return (
<>
{this.state.showRemoveDialog && (
<form
className="form-inline"
onSubmit={linkEvent(this, this.handleModRemoveSubmit)}
>
<label className="sr-only" htmlFor="post-listing-remove-reason">
2021-02-22 02:39:04 +00:00
{i18n.t("reason")}
</label>
<input
type="text"
id="post-listing-remove-reason"
className="form-control mr-2"
2021-02-22 02:39:04 +00:00
placeholder={i18n.t("reason")}
value={this.state.removeReason}
onInput={linkEvent(this, this.handleModRemoveReasonChange)}
/>
<button
type="submit"
className="btn btn-secondary"
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("remove_post")}
>
2021-02-22 02:39:04 +00:00
{i18n.t("remove_post")}
</button>
</form>
)}
{this.state.showBanDialog && (
<form onSubmit={linkEvent(this, this.handleModBanBothSubmit)}>
<div className="form-group row col-12">
<label
className="col-form-label"
htmlFor="post-listing-ban-reason"
>
2021-02-22 02:39:04 +00:00
{i18n.t("reason")}
</label>
<input
type="text"
id="post-listing-ban-reason"
className="form-control mr-2"
2021-02-22 02:39:04 +00:00
placeholder={i18n.t("reason")}
value={this.state.banReason}
onInput={linkEvent(this, this.handleModBanReasonChange)}
/>
<label className="col-form-label" htmlFor={`mod-ban-expires`}>
{i18n.t("expires")}
</label>
<input
type="number"
id={`mod-ban-expires`}
className="form-control mr-2"
placeholder={i18n.t("number_of_days")}
value={this.state.banExpireDays}
onInput={linkEvent(this, this.handleModBanExpireDaysChange)}
/>
<div className="form-group">
<div className="form-check">
<input
className="form-check-input"
id="mod-ban-remove-data"
type="checkbox"
checked={this.state.removeData}
onChange={linkEvent(this, this.handleModRemoveDataChange)}
/>
<label
className="form-check-label"
htmlFor="mod-ban-remove-data"
title={i18n.t("remove_content_more")}
>
{i18n.t("remove_content")}
</label>
</div>
</div>
</div>
{/* TODO hold off on expires until later */}
{/* <div class="form-group row"> */}
{/* <label class="col-form-label">Expires</label> */}
{/* <input type="date" class="form-control mr-2" placeholder={i18n.t('expires')} value={this.state.banExpires} onInput={linkEvent(this, this.handleModBanExpiresChange)} /> */}
{/* </div> */}
<div className="form-group row">
<button
type="submit"
className="btn btn-secondary"
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("ban")}
>
2021-02-22 02:39:04 +00:00
{i18n.t("ban")} {post.creator.name}
</button>
</div>
</form>
)}
{this.state.showReportDialog && (
<form
className="form-inline"
onSubmit={linkEvent(this, this.handleReportSubmit)}
>
<label className="sr-only" htmlFor="post-report-reason">
{i18n.t("reason")}
</label>
<input
type="text"
id="post-report-reason"
className="form-control mr-2"
placeholder={i18n.t("reason")}
required
value={this.state.reportReason}
onInput={linkEvent(this, this.handleReportReasonChange)}
/>
<button
type="submit"
className="btn btn-secondary"
aria-label={i18n.t("create_report")}
>
{i18n.t("create_report")}
</button>
</form>
)}
{this.state.showPurgeDialog && (
<form
className="form-inline"
onSubmit={linkEvent(this, this.handlePurgeSubmit)}
>
<PurgeWarning />
<label className="sr-only" htmlFor="purge-reason">
{i18n.t("reason")}
</label>
<input
type="text"
id="purge-reason"
className="form-control mr-2"
placeholder={i18n.t("reason")}
value={this.state.purgeReason}
onInput={linkEvent(this, this.handlePurgeReasonChange)}
/>
{this.state.purgeLoading ? (
<Spinner />
) : (
<button
type="submit"
className="btn btn-secondary"
aria-label={purgeTypeText}
>
{purgeTypeText}
</button>
)}
</form>
)}
</>
);
}
mobileThumbnail() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
return post.thumbnail_url || (post.url && isImage(post.url)) ? (
<div className="row">
2021-02-22 02:39:04 +00:00
<div className={`${this.state.imageExpanded ? "col-12" : "col-8"}`}>
{this.postTitleLine()}
</div>
<div className="col-4">
{/* Post body prev or thumbnail */}
{!this.state.imageExpanded && this.thumbnail()}
</div>
</div>
) : (
this.postTitleLine()
);
}
showMobilePreview() {
let body = this.props.post_view.post.body;
return !this.showBody && body ? (
<div className="md-div mb-1 preview-lines">{body}</div>
) : (
<></>
);
}
listing() {
return (
<>
{/* The mobile view*/}
<div className="d-block d-sm-none">
<div className="row">
<div className="col-12">
{this.createdLine()}
{/* If it has a thumbnail, do a right aligned thumbnail */}
{this.mobileThumbnail()}
{/* Show a preview of the post body */}
{this.showMobilePreview()}
{this.commentsLine(true)}
{this.userActionsLine()}
{this.duplicatesLine()}
{this.removeAndBanDialogs()}
</div>
</div>
</div>
{/* The larger view*/}
<div className="d-none d-sm-block">
<div className="row">
{!this.props.viewOnly && this.voteBar()}
<div className="col-sm-2 pr-0">
<div className="">{this.thumbnail()}</div>
</div>
<div className="col-12 col-sm-9">
<div className="row">
<div className="col-12">
{this.postTitleLine()}
{this.createdLine()}
{this.commentsLine()}
{this.duplicatesLine()}
{this.userActionsLine()}
{this.removeAndBanDialogs()}
</div>
</div>
</div>
</div>
</div>
</>
);
}
private get myPost(): boolean {
return (
this.props.post_view.creator.id ==
UserService.Instance.myUserInfo?.local_user_view.person.id
);
}
handlePostLike(event: any) {
event.preventDefault();
if (!UserService.Instance.myUserInfo) {
this.context.router.history.push(`/login`);
}
let myVote = this.state.my_vote;
let newVote = myVote == 1 ? 0 : 1;
if (myVote == 1) {
this.setState({
score: this.state.score - 1,
upvotes: this.state.upvotes - 1,
});
} else if (myVote == -1) {
this.setState({
score: this.state.score + 2,
upvotes: this.state.upvotes + 1,
downvotes: this.state.downvotes - 1,
});
} else {
this.setState({
score: this.state.score + 1,
upvotes: this.state.upvotes + 1,
});
}
this.setState({ my_vote: newVote });
let auth = myAuth();
if (auth) {
let form: CreatePostLike = {
post_id: this.props.post_view.post.id,
score: newVote,
auth,
};
WebSocketService.Instance.send(wsClient.likePost(form));
this.setState(this.state);
}
setupTippy();
}
handlePostDisLike(event: any) {
event.preventDefault();
if (!UserService.Instance.myUserInfo) {
this.context.router.history.push(`/login`);
}
let myVote = this.state.my_vote;
let newVote = myVote == -1 ? 0 : -1;
if (myVote == 1) {
this.setState({
score: this.state.score - 2,
upvotes: this.state.upvotes - 1,
downvotes: this.state.downvotes + 1,
});
} else if (myVote == -1) {
this.setState({
score: this.state.score + 1,
downvotes: this.state.downvotes - 1,
});
} else {
this.setState({
score: this.state.score - 1,
downvotes: this.state.downvotes + 1,
});
}
this.setState({ my_vote: newVote });
let auth = myAuth();
if (auth) {
let form: CreatePostLike = {
post_id: this.props.post_view.post.id,
score: newVote,
auth,
};
WebSocketService.Instance.send(wsClient.likePost(form));
this.setState(this.state);
}
setupTippy();
}
handleEditClick(i: PostListing) {
i.setState({ showEdit: true });
}
handleEditCancel() {
this.setState({ showEdit: false });
}
// The actual editing is done in the recieve for post
handleEditPost() {
this.setState({ showEdit: false });
}
handleShowReportDialog(i: PostListing) {
i.setState({ showReportDialog: !i.state.showReportDialog });
}
handleReportReasonChange(i: PostListing, event: any) {
i.setState({ reportReason: event.target.value });
}
handleReportSubmit(i: PostListing, event: any) {
event.preventDefault();
let auth = myAuth();
let reason = i.state.reportReason;
if (auth && reason) {
let form: CreatePostReport = {
post_id: i.props.post_view.post.id,
reason,
auth,
};
WebSocketService.Instance.send(wsClient.createPostReport(form));
i.setState({ showReportDialog: false });
}
}
handleBlockUserClick(i: PostListing) {
let auth = myAuth();
if (auth) {
let blockUserForm: BlockPerson = {
person_id: i.props.post_view.creator.id,
block: true,
auth,
};
WebSocketService.Instance.send(wsClient.blockPerson(blockUserForm));
}
}
handleDeleteClick(i: PostListing) {
let auth = myAuth();
if (auth) {
let deleteForm: DeletePost = {
post_id: i.props.post_view.post.id,
deleted: !i.props.post_view.post.deleted,
auth,
};
WebSocketService.Instance.send(wsClient.deletePost(deleteForm));
}
}
handleSavePostClick(i: PostListing) {
let auth = myAuth();
if (auth) {
let saved =
i.props.post_view.saved == undefined ? true : !i.props.post_view.saved;
let form: SavePost = {
post_id: i.props.post_view.post.id,
save: saved,
auth,
};
WebSocketService.Instance.send(wsClient.savePost(form));
}
}
get crossPostParams(): PostFormParams {
const queryParams: PostFormParams = {};
const { name, url } = this.props.post_view.post;
queryParams.name = name;
if (url) {
queryParams.url = url;
}
const crossPostBody = this.crossPostBody();
if (crossPostBody) {
queryParams.body = crossPostBody;
}
return queryParams;
}
crossPostBody(): string | undefined {
let post = this.props.post_view.post;
let body = post.body;
return body
? `${i18n.t("cross_posted_from")} ${post.ap_id}\n\n${body.replace(
/^/gm,
"> "
)}`
: undefined;
}
get showBody(): boolean {
return this.props.showBody || this.state.showBody;
}
handleModRemoveShow(i: PostListing) {
i.setState({
showRemoveDialog: !i.state.showRemoveDialog,
showBanDialog: false,
});
}
handleModRemoveReasonChange(i: PostListing, event: any) {
i.setState({ removeReason: event.target.value });
}
handleModRemoveDataChange(i: PostListing, event: any) {
i.setState({ removeData: event.target.checked });
}
2021-01-26 17:21:10 +00:00
handleModRemoveSubmit(i: PostListing, event: any) {
event.preventDefault();
let auth = myAuth();
if (auth) {
let form: RemovePost = {
post_id: i.props.post_view.post.id,
removed: !i.props.post_view.post.removed,
reason: i.state.removeReason,
auth,
};
WebSocketService.Instance.send(wsClient.removePost(form));
i.setState({ showRemoveDialog: false });
}
}
handleModLock(i: PostListing) {
let auth = myAuth();
if (auth) {
let form: LockPost = {
post_id: i.props.post_view.post.id,
locked: !i.props.post_view.post.locked,
auth,
};
WebSocketService.Instance.send(wsClient.lockPost(form));
}
}
handleModFeaturePostLocal(i: PostListing) {
let auth = myAuth();
if (auth) {
let form: FeaturePost = {
post_id: i.props.post_view.post.id,
feature_type: PostFeatureType.Local,
featured: !i.props.post_view.post.featured_local,
auth,
};
WebSocketService.Instance.send(wsClient.featurePost(form));
}
}
handleModFeaturePostCommunity(i: PostListing) {
let auth = myAuth();
if (auth) {
let form: FeaturePost = {
post_id: i.props.post_view.post.id,
feature_type: PostFeatureType.Community,
featured: !i.props.post_view.post.featured_community,
auth,
};
WebSocketService.Instance.send(wsClient.featurePost(form));
}
}
handleModBanFromCommunityShow(i: PostListing) {
i.setState({
showBanDialog: true,
banType: BanType.Community,
showRemoveDialog: false,
});
}
handleModBanShow(i: PostListing) {
i.setState({
showBanDialog: true,
banType: BanType.Site,
showRemoveDialog: false,
});
}
handlePurgePersonShow(i: PostListing) {
i.setState({
showPurgeDialog: true,
purgeType: PurgeType.Person,
showRemoveDialog: false,
});
}
handlePurgePostShow(i: PostListing) {
i.setState({
showPurgeDialog: true,
purgeType: PurgeType.Post,
showRemoveDialog: false,
});
}
handlePurgeReasonChange(i: PostListing, event: any) {
i.setState({ purgeReason: event.target.value });
}
handlePurgeSubmit(i: PostListing, event: any) {
event.preventDefault();
let auth = myAuth();
if (auth) {
if (i.state.purgeType == PurgeType.Person) {
let form: PurgePerson = {
person_id: i.props.post_view.creator.id,
reason: i.state.purgeReason,
auth,
};
WebSocketService.Instance.send(wsClient.purgePerson(form));
} else if (i.state.purgeType == PurgeType.Post) {
let form: PurgePost = {
post_id: i.props.post_view.post.id,
reason: i.state.purgeReason,
auth,
};
WebSocketService.Instance.send(wsClient.purgePost(form));
}
i.setState({ purgeLoading: true });
}
}
handleModBanReasonChange(i: PostListing, event: any) {
i.setState({ banReason: event.target.value });
}
handleModBanExpireDaysChange(i: PostListing, event: any) {
i.setState({ banExpireDays: event.target.value });
}
handleModBanFromCommunitySubmit(i: PostListing) {
i.setState({ banType: BanType.Community });
i.handleModBanBothSubmit(i);
}
handleModBanSubmit(i: PostListing) {
i.setState({ banType: BanType.Site });
i.handleModBanBothSubmit(i);
}
2021-01-26 17:21:10 +00:00
handleModBanBothSubmit(i: PostListing, event?: any) {
2021-04-07 17:01:58 +00:00
if (event) event.preventDefault();
let auth = myAuth();
if (auth) {
2020-12-24 01:58:27 +00:00
let ban = !i.props.post_view.creator_banned_from_community;
let person_id = i.props.post_view.creator.id;
let remove_data = i.state.removeData;
let reason = i.state.banReason;
let expires = futureDaysToUnixTime(i.state.banExpireDays);
if (i.state.banType == BanType.Community) {
// If its an unban, restore all their data
if (ban == false) {
i.setState({ removeData: false });
}
let form: BanFromCommunity = {
person_id,
community_id: i.props.post_view.community.id,
ban,
remove_data,
reason,
expires,
auth,
};
WebSocketService.Instance.send(wsClient.banFromCommunity(form));
} else {
// If its an unban, restore all their data
let ban = !i.props.post_view.creator.banned;
if (ban == false) {
i.setState({ removeData: false });
}
let form: BanPerson = {
person_id,
ban,
remove_data,
reason,
expires,
auth,
};
WebSocketService.Instance.send(wsClient.banPerson(form));
}
i.setState({ showBanDialog: false });
}
}
handleAddModToCommunity(i: PostListing) {
let auth = myAuth();
if (auth) {
let form: AddModToCommunity = {
person_id: i.props.post_view.creator.id,
community_id: i.props.post_view.community.id,
added: !i.creatorIsMod_,
auth,
};
WebSocketService.Instance.send(wsClient.addModToCommunity(form));
i.setState(i.state);
}
}
handleAddAdmin(i: PostListing) {
let auth = myAuth();
if (auth) {
let form: AddAdmin = {
person_id: i.props.post_view.creator.id,
added: !i.creatorIsAdmin_,
auth,
};
WebSocketService.Instance.send(wsClient.addAdmin(form));
i.setState(i.state);
}
}
handleShowConfirmTransferCommunity(i: PostListing) {
i.setState({ showConfirmTransferCommunity: true });
}
handleCancelShowConfirmTransferCommunity(i: PostListing) {
i.setState({ showConfirmTransferCommunity: false });
}
handleTransferCommunity(i: PostListing) {
let auth = myAuth();
if (auth) {
let form: TransferCommunity = {
community_id: i.props.post_view.community.id,
person_id: i.props.post_view.creator.id,
auth,
};
WebSocketService.Instance.send(wsClient.transferCommunity(form));
i.setState({ showConfirmTransferCommunity: false });
}
}
handleShowConfirmTransferSite(i: PostListing) {
i.setState({ showConfirmTransferSite: true });
}
handleCancelShowConfirmTransferSite(i: PostListing) {
i.setState({ showConfirmTransferSite: false });
}
handleImageExpandClick(i: PostListing, event: any) {
event.preventDefault();
i.setState({ imageExpanded: !i.state.imageExpanded });
setupTippy();
}
handleViewSource(i: PostListing) {
i.setState({ viewSource: !i.state.viewSource });
}
handleShowAdvanced(i: PostListing) {
i.setState({ showAdvanced: !i.state.showAdvanced });
setupTippy();
}
2020-09-26 16:18:49 +00:00
handleShowMoreMobile(i: PostListing) {
i.setState({
showMoreMobile: !i.state.showMoreMobile,
showAdvanced: !i.state.showAdvanced,
});
2020-09-26 16:18:49 +00:00
setupTippy();
}
handleShowBody(i: PostListing) {
i.setState({ showBody: !i.state.showBody });
setupTippy();
}
get pointsTippy(): string {
2021-02-22 02:39:04 +00:00
let points = i18n.t("number_of_points", {
count: this.state.score,
formattedCount: this.state.score,
});
2021-02-22 02:39:04 +00:00
let upvotes = i18n.t("number_of_upvotes", {
count: this.state.upvotes,
formattedCount: this.state.upvotes,
});
2021-02-22 02:39:04 +00:00
let downvotes = i18n.t("number_of_downvotes", {
count: this.state.downvotes,
formattedCount: this.state.downvotes,
});
return `${points}${upvotes}${downvotes}`;
}
get canModOnSelf_(): boolean {
return canMod(
this.props.post_view.creator.id,
this.props.moderators,
this.props.admins,
undefined,
true
);
}
get canMod_(): boolean {
return canMod(
this.props.post_view.creator.id,
this.props.moderators,
this.props.admins
);
}
get canAdmin_(): boolean {
return canAdmin(this.props.post_view.creator.id, this.props.admins);
}
get creatorIsMod_(): boolean {
return isMod(this.props.post_view.creator.id, this.props.moderators);
}
get creatorIsAdmin_(): boolean {
return isAdmin(this.props.post_view.creator.id, this.props.admins);
}
}