Feliday-UI/src/shared/components/post/post-listing.tsx

1560 lines
48 KiB
TypeScript
Raw Normal View History

2021-02-22 02:39:04 +00:00
import { Component, linkEvent } from "inferno";
import { Link } from "inferno-router";
import {
AddAdmin,
AddModToCommunity,
BanFromCommunity,
BanPerson,
CommunityModeratorView,
2020-12-24 01:58:27 +00:00
CreatePostLike,
DeletePost,
LockPost,
2021-03-15 18:09:31 +00:00
PersonViewSafe,
PostView,
RemovePost,
SavePost,
StickyPost,
2020-12-24 01:58:27 +00:00
TransferCommunity,
TransferSite,
2021-02-22 02:39:04 +00:00
} from "lemmy-js-client";
import { externalHost } from "../../env";
import { i18n } from "../../i18next";
import { BanType } from "../../interfaces";
import { UserService, WebSocketService } from "../../services";
import {
authField,
canMod,
getUnixTime,
hostname,
isImage,
isMod,
isVideo,
md,
mdToHtml,
previewLines,
setupTippy,
showScores,
wsClient,
} from "../../utils";
import { Icon } 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 { IFramelyCard } from "./iframely-card";
import { PostForm } from "./post-form";
interface PostListingState {
showEdit: boolean;
showRemoveDialog: boolean;
removeReason: string;
showBanDialog: boolean;
removeData: boolean;
banReason: string;
banExpires: string;
banType: BanType;
showConfirmTransferSite: boolean;
showConfirmTransferCommunity: boolean;
imageExpanded: boolean;
viewSource: boolean;
showAdvanced: boolean;
2020-09-26 16:18:49 +00:00
showMoreMobile: boolean;
showBody: boolean;
my_vote: number;
score: number;
upvotes: number;
downvotes: number;
}
interface PostListingProps {
2020-12-24 01:58:27 +00:00
post_view: PostView;
duplicates?: PostView[];
showCommunity?: boolean;
showBody?: boolean;
2020-12-24 01:58:27 +00:00
moderators?: CommunityModeratorView[];
2021-03-15 18:09:31 +00:00
admins?: PersonViewSafe[];
enableDownvotes: boolean;
enableNsfw: boolean;
}
export class PostListing extends Component<PostListingProps, PostListingState> {
private emptyState: PostListingState = {
showEdit: false,
showRemoveDialog: false,
removeReason: null,
showBanDialog: false,
2021-01-26 17:21:10 +00:00
removeData: false,
banReason: null,
banExpires: null,
banType: BanType.Community,
showConfirmTransferSite: false,
showConfirmTransferCommunity: false,
imageExpanded: false,
viewSource: false,
showAdvanced: false,
2020-09-26 16:18:49 +00:00
showMoreMobile: false,
showBody: 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.state = this.emptyState;
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) {
2020-12-24 01:58:27 +00:00
this.state.my_vote = nextProps.post_view.my_vote;
this.state.upvotes = nextProps.post_view.counts.upvotes;
this.state.downvotes = nextProps.post_view.counts.downvotes;
this.state.score = nextProps.post_view.counts.score;
if (this.props.post_view.post.id !== nextProps.post_view.post.id) {
this.state.imageExpanded = false;
}
this.setState(this.state);
}
render() {
return (
<div class="">
{!this.state.showEdit ? (
<>
{this.listing()}
{this.body()}
</>
) : (
<div class="col-12">
<PostForm
2020-12-24 01:58:27 +00:00
post_view={this.props.post_view}
onEdit={this.handleEditPost}
onCancel={this.handleEditCancel}
enableNsfw={this.props.enableNsfw}
enableDownvotes={this.props.enableDownvotes}
/>
</div>
)}
</div>
);
}
body() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
return (
<div class="row">
<div class="col-12">
{post.url && this.showBody && post.embed_title && (
2020-12-24 01:58:27 +00:00
<IFramelyCard post={post} />
)}
{this.showBody &&
2020-12-24 01:58:27 +00:00
post.body &&
2020-09-09 20:33:40 +00:00
(this.state.viewSource ? (
2020-12-24 01:58:27 +00:00
<pre>{post.body}</pre>
2020-09-09 20:33:40 +00:00
) : (
<div
className="md-div"
2020-12-24 01:58:27 +00:00
dangerouslySetInnerHTML={mdToHtml(post.body)}
2020-09-09 20:33:40 +00:00
/>
))}
</div>
</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}
/>
);
}
getImageSrc(): string {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
if (isImage(post.url)) {
2021-02-22 02:39:04 +00:00
if (post.url.includes("pictrs")) {
return post.url;
} else if (post.thumbnail_url) {
return post.thumbnail_url;
} else {
return post.url;
}
} else if (post.thumbnail_url) {
return post.thumbnail_url;
2020-09-09 00:48:17 +00:00
} else {
return null;
}
}
thumbnail() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
if (isImage(post.url)) {
return (
<div
class="float-right text-body pointer 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)}
role="button"
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("expand_here")}
>
{this.imgThumb(this.getImageSrc())}
2021-02-11 20:35:27 +00:00
<Icon icon="image" classes="mini-overlay" />
</div>
);
} else if (post.thumbnail_url) {
return (
<a
class="float-right text-body d-inline-block position-relative mb-2"
href={post.url}
rel="noopener"
title={post.url}
>
{this.imgThumb(this.getImageSrc())}
2021-02-11 20:35:27 +00:00
<Icon icon="external-link" classes="mini-overlay" />
</a>
);
} else if (post.url) {
if (isVideo(post.url)) {
return (
<div class="embed-responsive embed-responsive-16by9">
<video
playsinline
muted
loop
controls
class="embed-responsive-item"
>
<source src={post.url} type="video/mp4" />
</video>
</div>
);
} else {
return (
<a
className="text-body"
href={post.url}
title={post.url}
rel="noopener"
>
<div class="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 class="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;
return (
<ul class="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.isMod && (
2021-02-22 02:39:04 +00:00
<span className="mx-1 badge badge-light">{i18n.t("mod")}</span>
)}
{this.isAdmin && (
2021-02-22 02:39:04 +00:00
<span className="mx-1 badge badge-light">{i18n.t("admin")}</span>
)}
2020-12-24 01:58:27 +00:00
{(post_view.creator_banned_from_community ||
post_view.creator.banned) && (
2021-02-22 02:39:04 +00:00
<span className="mx-1 badge badge-danger">{i18n.t("banned")}</span>
)}
{this.props.showCommunity && (
<span>
2021-02-22 02:39:04 +00:00
<span class="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>
2020-12-24 01:58:27 +00:00
{post_view.post.url && !(hostname(post_view.post.url) == externalHost) && (
<>
<li className="list-inline-item">
<a
className="text-muted font-italic"
2020-12-24 01:58:27 +00:00
href={post_view.post.url}
title={post_view.post.url}
rel="noopener"
>
2020-12-24 01:58:27 +00:00
{hostname(post_view.post.url)}
</a>
</li>
<li className="list-inline-item"></li>
</>
)}
<li className="list-inline-item">
<span>
2020-12-24 01:58:27 +00:00
<MomentTime data={post_view.post} />
</span>
</li>
2020-12-24 01:58:27 +00:00
{post_view.post.body && (
<>
<li className="list-inline-item"></li>
<li className="list-inline-item">
<button
className="text-muted btn btn-sm btn-link p-0"
2020-12-24 01:58:27 +00:00
data-tippy-content={md.render(
previewLines(post_view.post.body)
)}
data-tippy-allowHtml={true}
onClick={linkEvent(this, this.handleShowBody)}
>
2021-02-11 20:35:27 +00:00
<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 ${
2021-02-22 02:39:04 +00:00
this.state.my_vote == 1 ? "text-info" : "text-muted"
}`}
onClick={linkEvent(this, 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
class={`unselectable pointer font-weight-bold text-muted px-1`}
data-tippy-content={this.pointsTippy}
>
{this.state.score}
</div>
) : (
<div class="p-1"></div>
)}
{this.props.enableDownvotes && (
<button
className={`btn-animate btn btn-link p-0 ${
2021-02-22 02:39:04 +00:00
this.state.my_vote == -1 ? "text-danger" : "text-muted"
}`}
onClick={linkEvent(this, 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>
);
}
postTitleLine() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
return (
<div className="post-title overflow-hidden">
<h5>
{this.showBody && post.url ? (
<a
2021-02-22 02:39:04 +00:00
className={!post.stickied ? "text-body" : "text-primary"}
href={post.url}
title={post.url}
rel="noopener"
>
{post.name}
</a>
) : (
<Link
2021-02-22 02:39:04 +00:00
className={!post.stickied ? "text-body" : "text-primary"}
to={`/post/${post.id}`}
2021-02-22 02:39:04 +00:00
title={i18n.t("comments")}
>
{post.name}
</Link>
)}
2020-12-24 01:58:27 +00:00
{(isImage(post.url) || post.thumbnail_url) &&
2020-09-11 18:09:21 +00:00
(!this.state.imageExpanded ? (
<button
class="btn btn-link text-monospace text-muted small d-inline-block ml-2"
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("expand_here")}
2020-09-11 18:09:21 +00:00
onClick={linkEvent(this, this.handleImageExpandClick)}
>
2021-02-11 20:35:27 +00:00
<Icon icon="plus-square" classes="icon-inline" />
</button>
2020-09-11 18:09:21 +00:00
) : (
<span>
<button
class="btn btn-link text-monospace text-muted small d-inline-block ml-2"
onClick={linkEvent(this, this.handleImageExpandClick)}
>
2021-02-11 20:35:27 +00:00
<Icon icon="minus-square" classes="icon-inline" />
</button>
2020-09-11 18:09:21 +00:00
<div>
<button
class="btn btn-link d-inline-block"
onClick={linkEvent(this, this.handleImageExpandClick)}
>
<PictrsImage src={this.getImageSrc()} />
</button>
2020-09-11 18:09:21 +00:00
</div>
</span>
))}
{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>
)}
{post.stickied && (
<small
className="unselectable pointer ml-2 text-muted font-italic"
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("stickied")}
>
2021-02-11 20:35:27 +00:00
<Icon icon="pin" classes="icon-inline text-primary" />
</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>
);
}
commentsLine(mobile = false) {
2020-12-24 01:58:27 +00:00
let post_view = this.props.post_view;
return (
2020-09-26 16:18:49 +00:00
<div class="d-flex justify-content-between justify-content-lg-start flex-wrap text-muted font-weight-bold mb-1">
<button class="btn btn-link text-muted p-0">
<Link
className="text-muted small"
2021-02-22 02:39:04 +00:00
title={i18n.t("number_of_comments", {
2020-12-24 01:58:27 +00:00
count: post_view.counts.comments,
})}
2020-12-24 01:58:27 +00:00
to={`/post/${post_view.post.id}`}
>
2021-02-11 20:35:27 +00:00
<Icon icon="message-square" classes="icon-inline mr-1" />
2021-02-22 02:39:04 +00:00
{i18n.t("number_of_comments", {
2020-12-24 01:58:27 +00:00
count: post_view.counts.comments,
})}
</Link>
</button>
2020-09-26 16:18:49 +00:00
{!mobile && (
<>
{this.state.downvotes !== 0 && showScores() && (
2020-09-26 16:18:49 +00:00
<button
class="btn text-muted py-0 pr-0"
data-tippy-content={this.pointsTippy}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("downvote")}
2020-09-26 16:18:49 +00:00
>
<small>
2021-02-11 20:35:27 +00:00
<Icon icon="arrow-down1" classes="icon-inline mr-1" />
2020-09-26 16:18:49 +00:00
<span>{this.state.downvotes}</span>
</small>
</button>
)}
{!this.showBody && (
2020-09-26 16:18:49 +00:00
<button
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleSavePostClick)}
data-tippy-content={
2021-02-22 02:39:04 +00:00
post_view.saved ? i18n.t("unsave") : i18n.t("save")
2020-09-26 16:18:49 +00:00
}
2021-02-22 02:39:04 +00:00
aria-label={post_view.saved ? i18n.t("unsave") : i18n.t("save")}
2020-09-26 16:18:49 +00:00
>
<small>
2021-02-11 20:35:27 +00:00
<Icon
icon="star"
2021-02-22 02:39:04 +00:00
classes={`icon-inline ${post_view.saved && "text-warning"}`}
2021-02-11 20:35:27 +00:00
/>
2020-09-26 16:18:49 +00:00
</small>
</button>
)}
</>
2020-09-25 22:47:38 +00:00
)}
{/* This is an expanding spacer for mobile */}
<div className="flex-grow-1"></div>
2020-09-25 22:47:38 +00:00
{mobile && (
<>
<div>
{showScores() ? (
2020-11-17 19:48:09 +00:00
<button
className={`btn-animate btn py-0 px-1 ${
this.state.my_vote == 1 ? "text-info" : "text-muted"
2020-11-17 19:48:09 +00:00
}`}
data-tippy-content={this.pointsTippy}
onClick={linkEvent(this, this.handlePostLike)}
aria-label={i18n.t("upvote")}
>
<Icon icon="arrow-up1" classes="icon-inline small mr-2" />
{this.state.upvotes}
</button>
) : (
<button
className={`btn-animate btn py-0 px-1 ${
this.state.my_vote == 1 ? "text-info" : "text-muted"
}`}
onClick={linkEvent(this, this.handlePostLike)}
aria-label={i18n.t("upvote")}
2020-11-17 19:48:09 +00:00
>
<Icon icon="arrow-up1" classes="icon-inline small" />
2020-11-17 19:48:09 +00:00
</button>
)}
{this.props.enableDownvotes &&
(showScores() ? (
<button
className={`ml-2 btn-animate btn py-0 pl-1 ${
this.state.my_vote == -1 ? "text-danger" : "text-muted"
}`}
onClick={linkEvent(this, this.handlePostDisLike)}
data-tippy-content={this.pointsTippy}
aria-label={i18n.t("downvote")}
>
<Icon icon="arrow-down1" classes="icon-inline small mr-2" />
{this.state.downvotes !== 0 && (
<span>{this.state.downvotes}</span>
)}
</button>
) : (
<button
className={`ml-2 btn-animate btn py-0 pl-1 ${
this.state.my_vote == -1 ? "text-danger" : "text-muted"
}`}
onClick={linkEvent(this, this.handlePostDisLike)}
aria-label={i18n.t("downvote")}
>
<Icon icon="arrow-down1" classes="icon-inline small" />
</button>
))}
</div>
<button
2020-10-03 15:41:57 +00:00
class="btn btn-link btn-animate text-muted py-0 pl-1 pr-0"
onClick={linkEvent(this, this.handleSavePostClick)}
2021-02-22 02:39:04 +00:00
aria-label={post_view.saved ? i18n.t("unsave") : i18n.t("save")}
data-tippy-content={
2021-02-22 02:39:04 +00:00
post_view.saved ? i18n.t("unsave") : i18n.t("save")
}
>
2021-02-11 20:35:27 +00:00
<Icon
icon="star"
2021-02-22 02:39:04 +00:00
classes={`icon-inline ${post_view.saved && "text-warning"}`}
2021-02-11 20:35:27 +00:00
/>
</button>
2020-09-26 16:18:49 +00:00
{!this.state.showMoreMobile && this.showBody && (
2020-09-26 16:18:49 +00:00
<button
2020-10-03 15:41:57 +00:00
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleShowMoreMobile)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("more")}
data-tippy-content={i18n.t("more")}
2020-09-26 16:18:49 +00:00
>
2021-02-11 20:35:27 +00:00
<Icon icon="more-vertical" classes="icon-inline" />
2020-09-26 16:18:49 +00:00
</button>
)}
{this.state.showMoreMobile && this.postActions(mobile)}
</>
)}
</div>
);
}
duplicatesLine() {
2020-12-26 03:28:05 +00:00
let dupes = this.props.duplicates;
return (
2020-12-26 03:28:05 +00:00
dupes &&
dupes.length > 0 && (
<ul class="list-inline mb-1 small text-muted">
<>
<li className="list-inline-item mr-2">
2021-02-22 02:39:04 +00:00
{i18n.t("cross_posted_to")}
</li>
2020-12-26 03:28:05 +00:00
{dupes.map(pv => (
<li className="list-inline-item mr-2">
2020-12-24 01:58:27 +00:00
<Link to={`/post/${pv.post.id}`}>
{pv.community.local
? pv.community.name
: `${pv.community.name}@${hostname(pv.community.actor_id)}`}
</Link>
</li>
))}
</>
</ul>
)
);
}
postActions(mobile = false) {
2020-12-24 01:58:27 +00:00
let post_view = this.props.post_view;
return (
2021-03-15 18:09:31 +00:00
UserService.Instance.localUserView && (
2020-09-26 16:18:49 +00:00
<>
{this.showBody && (
2020-09-26 16:18:49 +00:00
<>
{!mobile && (
<button
class="btn btn-link btn-animate text-muted py-0 pl-0"
onClick={linkEvent(this, this.handleSavePostClick)}
data-tippy-content={
2021-02-22 02:39:04 +00:00
post_view.saved ? i18n.t("unsave") : i18n.t("save")
2020-09-26 16:18:49 +00:00
}
aria-label={
2021-02-22 02:39:04 +00:00
post_view.saved ? i18n.t("unsave") : i18n.t("save")
}
2020-09-26 16:18:49 +00:00
>
2021-02-11 20:35:27 +00:00
<Icon
icon="star"
2021-02-22 02:39:04 +00:00
classes={`icon-inline ${post_view.saved && "text-warning"}`}
2021-02-11 20:35:27 +00:00
/>
2020-09-26 16:18:49 +00:00
</button>
)}
<Link
className="btn btn-link btn-animate text-muted py-0"
to={`/create_post${this.crossPostParams}`}
2021-02-22 02:39:04 +00:00
title={i18n.t("cross_post")}
2020-09-26 16:18:49 +00:00
>
2021-02-11 20:35:27 +00:00
<Icon icon="copy" classes="icon-inline" />
2020-09-26 16:18:49 +00:00
</Link>
</>
)}
{this.myPost && this.showBody && (
2020-09-26 16:18:49 +00:00
<>
<button
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleEditClick)}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("edit")}
aria-label={i18n.t("edit")}
2020-09-26 16:18:49 +00:00
>
2021-02-11 20:35:27 +00:00
<Icon icon="edit" classes="icon-inline" />
2020-09-26 16:18:49 +00:00
</button>
<button
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleDeleteClick)}
data-tippy-content={
2021-02-22 02:39:04 +00:00
!post_view.post.deleted ? i18n.t("delete") : i18n.t("restore")
2020-09-26 16:18:49 +00:00
}
aria-label={
2021-02-22 02:39:04 +00:00
!post_view.post.deleted ? i18n.t("delete") : i18n.t("restore")
}
2020-09-26 16:18:49 +00:00
>
2021-02-11 20:35:27 +00:00
<Icon
icon="trash"
classes={`icon-inline ${
2021-02-22 02:39:04 +00:00
post_view.post.deleted && "text-danger"
2020-12-24 01:58:27 +00:00
}`}
2021-02-11 20:35:27 +00:00
/>
2020-09-26 16:18:49 +00:00
</button>
</>
)}
{!this.state.showAdvanced && this.showBody ? (
2020-09-26 16:18:49 +00:00
<button
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleShowAdvanced)}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("more")}
aria-label={i18n.t("more")}
2020-09-26 16:18:49 +00:00
>
2021-02-11 20:35:27 +00:00
<Icon icon="more-vertical" classes="icon-inline" />
2020-09-26 16:18:49 +00:00
</button>
) : (
<>
{this.showBody && post_view.post.body && (
2020-09-26 16:18:49 +00:00
<button
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleViewSource)}
2021-02-22 02:39:04 +00:00
data-tippy-content={i18n.t("view_source")}
aria-label={i18n.t("view_source")}
2020-09-26 16:18:49 +00:00
>
2021-02-11 20:35:27 +00:00
<Icon
icon="file-text"
classes={`icon-inline ${
2021-02-22 02:39:04 +00:00
this.state.viewSource && "text-success"
2020-09-26 16:18:49 +00:00
}`}
2021-02-11 20:35:27 +00:00
/>
2020-09-26 16:18:49 +00:00
</button>
)}
{this.canModOnSelf && (
<>
<button
2020-09-26 16:18:49 +00:00
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleModLock)}
data-tippy-content={
2021-02-22 02:39:04 +00:00
post_view.post.locked ? i18n.t("unlock") : i18n.t("lock")
2020-09-26 16:18:49 +00:00
}
aria-label={
2021-02-22 02:39:04 +00:00
post_view.post.locked ? i18n.t("unlock") : i18n.t("lock")
}
>
2021-02-11 20:35:27 +00:00
<Icon
icon="lock"
classes={`icon-inline ${
2021-02-22 02:39:04 +00:00
post_view.post.locked && "text-danger"
2020-12-24 01:58:27 +00:00
}`}
2021-02-11 20:35:27 +00:00
/>
</button>
<button
2020-09-26 16:18:49 +00:00
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleModSticky)}
data-tippy-content={
2020-12-24 01:58:27 +00:00
post_view.post.stickied
2021-02-22 02:39:04 +00:00
? i18n.t("unsticky")
: i18n.t("sticky")
}
aria-label={
post_view.post.stickied
2021-02-22 02:39:04 +00:00
? i18n.t("unsticky")
: i18n.t("sticky")
}
>
2021-02-11 20:35:27 +00:00
<Icon
icon="pin"
classes={`icon-inline ${
2021-02-22 02:39:04 +00:00
post_view.post.stickied && "text-success"
}`}
2021-02-11 20:35:27 +00:00
/>
</button>
2020-09-26 16:18:49 +00:00
</>
)}
{/* Mods can ban from community, and appoint as mods to community */}
{(this.canMod || this.canAdmin) &&
2020-12-24 01:58:27 +00:00
(!post_view.post.removed ? (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleModRemoveShow)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("remove")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("remove")}
</button>
2020-09-26 16:18:49 +00:00
) : (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleModRemoveSubmit)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("restore")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("restore")}
</button>
2020-09-26 16:18:49 +00:00
))}
{this.canMod && (
<>
{!this.isMod &&
2020-12-24 01:58:27 +00:00
(!post_view.creator_banned_from_community ? (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(
this,
this.handleModBanFromCommunityShow
)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("ban")}
>
2021-02-22 02:39:04 +00:00
{i18n.t("ban")}
</button>
) : (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(
this,
this.handleModBanFromCommunitySubmit
)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("unban")}
>
2021-02-22 02:39:04 +00:00
{i18n.t("unban")}
</button>
2020-09-26 16:18:49 +00:00
))}
2021-03-22 13:18:46 +00:00
{!post_view.creator_banned_from_community && (
<button
class="btn btn-link btn-animate text-muted py-0"
onClick={linkEvent(this, this.handleAddModToCommunity)}
aria-label={
this.isMod
2021-02-22 02:39:04 +00:00
? i18n.t("remove_as_mod")
: i18n.t("appoint_as_mod")
}
>
{this.isMod
? 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 */}
{(this.amCommunityCreator || this.canAdmin) &&
this.isMod &&
(!this.state.showConfirmTransferCommunity ? (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(
this,
this.handleShowConfirmTransferCommunity
)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("transfer_community")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("transfer_community")}
</button>
2020-09-26 16:18:49 +00:00
) : (
<>
<button
class="d-inline-block mr-1 btn btn-link btn-animate text-muted py-0"
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("are_you_sure")}
>
2021-02-22 02:39:04 +00:00
{i18n.t("are_you_sure")}
</button>
<button
class="btn btn-link btn-animate text-muted py-0 d-inline-block mr-1"
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("yes")}
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleTransferCommunity)}
>
2021-02-22 02:39:04 +00:00
{i18n.t("yes")}
</button>
<button
class="btn btn-link btn-animate text-muted py-0 d-inline-block"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(
this,
this.handleCancelShowConfirmTransferCommunity
)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("no")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("no")}
</button>
</>
2020-09-26 16:18:49 +00:00
))}
{/* Admins can ban from all, and appoint other admins */}
{this.canAdmin && (
<>
{!this.isAdmin &&
2020-12-24 01:58:27 +00:00
(!post_view.creator.banned ? (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleModBanShow)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("ban_from_site")}
>
2021-02-22 02:39:04 +00:00
{i18n.t("ban_from_site")}
</button>
) : (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleModBanSubmit)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("unban_from_site")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("unban_from_site")}
</button>
2020-09-26 16:18:49 +00:00
))}
2020-12-24 01:58:27 +00:00
{!post_view.creator.banned && post_view.creator.local && (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleAddAdmin)}
aria-label={
this.isAdmin
2021-02-22 02:39:04 +00:00
? i18n.t("remove_as_admin")
: i18n.t("appoint_as_admin")
}
2020-09-26 16:18:49 +00:00
>
{this.isAdmin
2021-02-22 02:39:04 +00:00
? i18n.t("remove_as_admin")
: i18n.t("appoint_as_admin")}
</button>
2020-09-26 16:18:49 +00:00
)}
</>
)}
{/* Site Creator can transfer to another admin */}
{this.amSiteCreator &&
this.isAdmin &&
(!this.state.showConfirmTransferSite ? (
<button
class="btn btn-link btn-animate text-muted py-0"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(
this,
this.handleShowConfirmTransferSite
)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("transfer_site")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("transfer_site")}
</button>
2020-09-26 16:18:49 +00:00
) : (
<>
<button
class="btn btn-link btn-animate text-muted py-0 d-inline-block mr-1"
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("are_you_sure")}
>
2021-02-22 02:39:04 +00:00
{i18n.t("are_you_sure")}
</button>
<button
class="btn btn-link btn-animate text-muted py-0 d-inline-block mr-1"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(this, this.handleTransferSite)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("yes")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("yes")}
</button>
<button
class="btn btn-link btn-animate text-muted py-0 d-inline-block"
2020-09-26 16:18:49 +00:00
onClick={linkEvent(
this,
this.handleCancelShowConfirmTransferSite
)}
2021-02-22 02:39:04 +00:00
aria-label={i18n.t("no")}
2020-09-26 16:18:49 +00:00
>
2021-02-22 02:39:04 +00:00
{i18n.t("no")}
</button>
2020-09-26 16:18:49 +00:00
</>
))}
</>
)}
</>
)
);
}
removeAndBanDialogs() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view;
return (
<>
{this.state.showRemoveDialog && (
<form
class="form-inline"
onSubmit={linkEvent(this, this.handleModRemoveSubmit)}
>
<label class="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"
class="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"
class="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 class="form-group row">
<label class="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"
class="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)}
/>
<div class="form-group">
<div class="form-check">
<input
class="form-check-input"
id="mod-ban-remove-data"
type="checkbox"
checked={this.state.removeData}
onChange={linkEvent(this, this.handleModRemoveDataChange)}
/>
<label class="form-check-label" htmlFor="mod-ban-remove-data">
2021-02-22 02:39:04 +00:00
{i18n.t("remove_posts_comments")}
</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 class="form-group row">
<button
type="submit"
class="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>
)}
</>
);
}
mobileThumbnail() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
return post.thumbnail_url || isImage(post.url) ? (
<div class="row">
2021-02-22 02:39:04 +00:00
<div className={`${this.state.imageExpanded ? "col-12" : "col-8"}`}>
{this.postTitleLine()}
</div>
<div class="col-4">
{/* Post body prev or thumbnail */}
{!this.state.imageExpanded && this.thumbnail()}
</div>
</div>
) : (
this.postTitleLine()
);
}
showMobilePreview() {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
return (
2020-12-24 01:58:27 +00:00
post.body &&
!this.showBody && (
<div
className="md-div mb-1"
dangerouslySetInnerHTML={{
2020-12-24 01:58:27 +00:00
__html: md.render(previewLines(post.body)),
}}
/>
)
);
}
listing() {
return (
<>
{/* The mobile view*/}
<div class="d-block d-sm-none">
<div class="row">
<div class="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.duplicatesLine()}
{this.removeAndBanDialogs()}
</div>
</div>
</div>
{/* The larger view*/}
<div class="d-none d-sm-block">
<div class="row">
{this.voteBar()}
{!this.state.imageExpanded && (
<div class="col-sm-2 pr-0">
<div class="">{this.thumbnail()}</div>
</div>
)}
<div
class={`${
2021-02-22 02:39:04 +00:00
this.state.imageExpanded ? "col-12" : "col-12 col-sm-9"
}`}
>
<div class="row">
<div className="col-12">
{this.postTitleLine()}
{this.createdLine()}
{this.commentsLine()}
{this.duplicatesLine()}
{this.postActions()}
{this.removeAndBanDialogs()}
</div>
</div>
</div>
</div>
</div>
</>
);
}
private get myPost(): boolean {
return (
2021-03-15 18:09:31 +00:00
UserService.Instance.localUserView &&
this.props.post_view.creator.id ==
UserService.Instance.localUserView.person.id
);
}
get isMod(): boolean {
return (
this.props.moderators &&
isMod(
2020-12-24 01:58:27 +00:00
this.props.moderators.map(m => m.moderator.id),
this.props.post_view.creator.id
)
);
}
get isAdmin(): boolean {
return (
this.props.admins &&
isMod(
2021-03-15 18:09:31 +00:00
this.props.admins.map(a => a.person.id),
2020-12-24 01:58:27 +00:00
this.props.post_view.creator.id
)
);
}
get canMod(): boolean {
if (this.props.admins && this.props.moderators) {
let adminsThenMods = this.props.admins
2021-03-15 18:09:31 +00:00
.map(a => a.person.id)
2020-12-24 01:58:27 +00:00
.concat(this.props.moderators.map(m => m.moderator.id));
return canMod(
2021-03-15 18:09:31 +00:00
UserService.Instance.localUserView,
adminsThenMods,
2020-12-24 01:58:27 +00:00
this.props.post_view.creator.id
);
} else {
return false;
}
}
get canModOnSelf(): boolean {
if (this.props.admins && this.props.moderators) {
let adminsThenMods = this.props.admins
2021-03-15 18:09:31 +00:00
.map(a => a.person.id)
2020-12-24 01:58:27 +00:00
.concat(this.props.moderators.map(m => m.moderator.id));
return canMod(
2021-03-15 18:09:31 +00:00
UserService.Instance.localUserView,
adminsThenMods,
2020-12-24 01:58:27 +00:00
this.props.post_view.creator.id,
true
);
} else {
return false;
}
}
get canAdmin(): boolean {
return (
this.props.admins &&
canMod(
2021-03-15 18:09:31 +00:00
UserService.Instance.localUserView,
this.props.admins.map(a => a.person.id),
2020-12-24 01:58:27 +00:00
this.props.post_view.creator.id
)
);
}
get amCommunityCreator(): boolean {
return (
this.props.moderators &&
2021-03-15 18:09:31 +00:00
UserService.Instance.localUserView &&
this.props.post_view.creator.id !=
UserService.Instance.localUserView.person.id &&
UserService.Instance.localUserView.person.id ==
this.props.moderators[0].moderator.id
);
}
get amSiteCreator(): boolean {
return (
this.props.admins &&
2021-03-15 18:09:31 +00:00
UserService.Instance.localUserView &&
this.props.post_view.creator.id !=
UserService.Instance.localUserView.person.id &&
UserService.Instance.localUserView.person.id ==
this.props.admins[0].person.id
);
}
handlePostLike(i: PostListing, event: any) {
event.preventDefault();
2021-03-15 18:09:31 +00:00
if (!UserService.Instance.localUserView) {
this.context.router.history.push(`/login`);
}
let new_vote = i.state.my_vote == 1 ? 0 : 1;
if (i.state.my_vote == 1) {
i.state.score--;
i.state.upvotes--;
} else if (i.state.my_vote == -1) {
i.state.downvotes--;
i.state.upvotes++;
i.state.score += 2;
} else {
i.state.upvotes++;
i.state.score++;
}
i.state.my_vote = new_vote;
2020-12-24 01:58:27 +00:00
let form: CreatePostLike = {
post_id: i.props.post_view.post.id,
score: i.state.my_vote,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.likePost(form));
i.setState(i.state);
setupTippy();
}
handlePostDisLike(i: PostListing, event: any) {
event.preventDefault();
2021-03-15 18:09:31 +00:00
if (!UserService.Instance.localUserView) {
this.context.router.history.push(`/login`);
}
let new_vote = i.state.my_vote == -1 ? 0 : -1;
if (i.state.my_vote == 1) {
i.state.score -= 2;
i.state.upvotes--;
i.state.downvotes++;
} else if (i.state.my_vote == -1) {
i.state.downvotes--;
i.state.score++;
} else {
i.state.downvotes++;
i.state.score--;
}
i.state.my_vote = new_vote;
2020-12-24 01:58:27 +00:00
let form: CreatePostLike = {
post_id: i.props.post_view.post.id,
score: i.state.my_vote,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.likePost(form));
i.setState(i.state);
setupTippy();
}
handleEditClick(i: PostListing) {
i.state.showEdit = true;
i.setState(i.state);
}
handleEditCancel() {
this.state.showEdit = false;
this.setState(this.state);
}
// The actual editing is done in the recieve for post
handleEditPost() {
this.state.showEdit = false;
this.setState(this.state);
}
handleDeleteClick(i: PostListing) {
2020-12-24 01:58:27 +00:00
let deleteForm: DeletePost = {
post_id: i.props.post_view.post.id,
2020-12-24 01:58:27 +00:00
deleted: !i.props.post_view.post.deleted,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.deletePost(deleteForm));
}
handleSavePostClick(i: PostListing) {
2020-12-24 01:58:27 +00:00
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: authField(),
};
WebSocketService.Instance.send(wsClient.savePost(form));
}
get crossPostParams(): string {
2020-12-24 01:58:27 +00:00
let post = this.props.post_view.post;
let params = `?title=${encodeURIComponent(post.name)}`;
if (post.url) {
params += `&url=${encodeURIComponent(post.url)}`;
}
2020-12-24 01:58:27 +00:00
if (post.body) {
params += `&body=${encodeURIComponent(this.crossPostBody())}`;
}
return params;
}
crossPostBody(): string {
let post = this.props.post_view.post;
let body = `${i18n.t("cross_posted_from")} ${
post.ap_id
2021-03-25 17:30:25 +00:00
}\n\n${post.body.replace(/^/gm, "> ")}`;
return body;
}
get showBody(): boolean {
return this.props.showBody || this.state.showBody;
}
handleModRemoveShow(i: PostListing) {
i.state.showRemoveDialog = true;
i.setState(i.state);
}
handleModRemoveReasonChange(i: PostListing, event: any) {
i.state.removeReason = event.target.value;
i.setState(i.state);
}
handleModRemoveDataChange(i: PostListing, event: any) {
i.state.removeData = event.target.checked;
i.setState(i.state);
}
2021-01-26 17:21:10 +00:00
handleModRemoveSubmit(i: PostListing, event: any) {
event.preventDefault();
2020-12-24 01:58:27 +00:00
let form: RemovePost = {
post_id: i.props.post_view.post.id,
2020-12-24 01:58:27 +00:00
removed: !i.props.post_view.post.removed,
reason: i.state.removeReason,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.removePost(form));
i.state.showRemoveDialog = false;
i.setState(i.state);
}
handleModLock(i: PostListing) {
2020-12-24 01:58:27 +00:00
let form: LockPost = {
post_id: i.props.post_view.post.id,
2020-12-24 01:58:27 +00:00
locked: !i.props.post_view.post.locked,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.lockPost(form));
}
handleModSticky(i: PostListing) {
2020-12-24 01:58:27 +00:00
let form: StickyPost = {
post_id: i.props.post_view.post.id,
2020-12-24 01:58:27 +00:00
stickied: !i.props.post_view.post.stickied,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.stickyPost(form));
}
handleModBanFromCommunityShow(i: PostListing) {
i.state.showBanDialog = true;
i.state.banType = BanType.Community;
i.setState(i.state);
}
handleModBanShow(i: PostListing) {
i.state.showBanDialog = true;
i.state.banType = BanType.Site;
i.setState(i.state);
}
handleModBanReasonChange(i: PostListing, event: any) {
i.state.banReason = event.target.value;
i.setState(i.state);
}
handleModBanExpiresChange(i: PostListing, event: any) {
i.state.banExpires = event.target.value;
i.setState(i.state);
}
handleModBanFromCommunitySubmit(i: PostListing) {
i.state.banType = BanType.Community;
i.setState(i.state);
i.handleModBanBothSubmit(i);
}
handleModBanSubmit(i: PostListing) {
i.state.banType = BanType.Site;
i.setState(i.state);
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();
if (i.state.banType == BanType.Community) {
// If its an unban, restore all their data
2020-12-24 01:58:27 +00:00
let ban = !i.props.post_view.creator_banned_from_community;
if (ban == false) {
i.state.removeData = false;
}
2020-12-24 01:58:27 +00:00
let form: BanFromCommunity = {
2021-03-15 18:09:31 +00:00
person_id: i.props.post_view.creator.id,
2020-12-24 01:58:27 +00:00
community_id: i.props.post_view.community.id,
ban,
remove_data: i.state.removeData,
reason: i.state.banReason,
expires: getUnixTime(i.state.banExpires),
auth: authField(),
};
WebSocketService.Instance.send(wsClient.banFromCommunity(form));
} else {
// If its an unban, restore all their data
2020-12-24 01:58:27 +00:00
let ban = !i.props.post_view.creator.banned;
if (ban == false) {
i.state.removeData = false;
}
2021-03-15 18:09:31 +00:00
let form: BanPerson = {
person_id: i.props.post_view.creator.id,
ban,
remove_data: i.state.removeData,
reason: i.state.banReason,
expires: getUnixTime(i.state.banExpires),
auth: authField(),
};
2021-03-15 18:09:31 +00:00
WebSocketService.Instance.send(wsClient.banPerson(form));
}
i.state.showBanDialog = false;
i.setState(i.state);
}
handleAddModToCommunity(i: PostListing) {
2020-12-24 01:58:27 +00:00
let form: AddModToCommunity = {
2021-03-15 18:09:31 +00:00
person_id: i.props.post_view.creator.id,
2020-12-24 01:58:27 +00:00
community_id: i.props.post_view.community.id,
added: !i.isMod,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.addModToCommunity(form));
i.setState(i.state);
}
handleAddAdmin(i: PostListing) {
2020-12-24 01:58:27 +00:00
let form: AddAdmin = {
2021-03-15 18:09:31 +00:00
person_id: i.props.post_view.creator.id,
added: !i.isAdmin,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.addAdmin(form));
i.setState(i.state);
}
handleShowConfirmTransferCommunity(i: PostListing) {
i.state.showConfirmTransferCommunity = true;
i.setState(i.state);
}
handleCancelShowConfirmTransferCommunity(i: PostListing) {
i.state.showConfirmTransferCommunity = false;
i.setState(i.state);
}
handleTransferCommunity(i: PostListing) {
2020-12-24 01:58:27 +00:00
let form: TransferCommunity = {
community_id: i.props.post_view.community.id,
2021-03-15 18:09:31 +00:00
person_id: i.props.post_view.creator.id,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.transferCommunity(form));
i.state.showConfirmTransferCommunity = false;
i.setState(i.state);
}
handleShowConfirmTransferSite(i: PostListing) {
i.state.showConfirmTransferSite = true;
i.setState(i.state);
}
handleCancelShowConfirmTransferSite(i: PostListing) {
i.state.showConfirmTransferSite = false;
i.setState(i.state);
}
handleTransferSite(i: PostListing) {
2020-12-24 01:58:27 +00:00
let form: TransferSite = {
2021-03-15 18:09:31 +00:00
person_id: i.props.post_view.creator.id,
auth: authField(),
};
WebSocketService.Instance.send(wsClient.transferSite(form));
i.state.showConfirmTransferSite = false;
i.setState(i.state);
}
handleImageExpandClick(i: PostListing) {
i.state.imageExpanded = !i.state.imageExpanded;
i.setState(i.state);
}
handleViewSource(i: PostListing) {
i.state.viewSource = !i.state.viewSource;
i.setState(i.state);
}
handleShowAdvanced(i: PostListing) {
i.state.showAdvanced = !i.state.showAdvanced;
i.setState(i.state);
setupTippy();
}
2020-09-26 16:18:49 +00:00
handleShowMoreMobile(i: PostListing) {
i.state.showMoreMobile = !i.state.showMoreMobile;
i.state.showAdvanced = !i.state.showAdvanced;
i.setState(i.state);
setupTippy();
}
handleShowBody(i: PostListing) {
i.state.showBody = !i.state.showBody;
i.setState(i.state);
setupTippy();
}
get pointsTippy(): string {
2021-02-22 02:39:04 +00:00
let points = i18n.t("number_of_points", {
count: this.state.score,
});
2021-02-22 02:39:04 +00:00
let upvotes = i18n.t("number_of_upvotes", {
count: this.state.upvotes,
});
2021-02-22 02:39:04 +00:00
let downvotes = i18n.t("number_of_downvotes", {
count: this.state.downvotes,
});
return `${points}${upvotes}${downvotes}`;
}
}