2020-09-06 16:15:25 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
|
|
|
import {
|
2020-12-24 01:58:27 +00:00
|
|
|
CreateCommentLike,
|
|
|
|
DeleteComment,
|
|
|
|
RemoveComment,
|
|
|
|
MarkCommentAsRead,
|
|
|
|
MarkUserMentionAsRead,
|
|
|
|
SaveComment,
|
|
|
|
BanFromCommunity,
|
|
|
|
BanUser,
|
|
|
|
CommunityModeratorView,
|
|
|
|
UserViewSafe,
|
|
|
|
AddModToCommunity,
|
|
|
|
AddAdmin,
|
|
|
|
TransferCommunity,
|
|
|
|
TransferSite,
|
2020-09-06 16:15:25 +00:00
|
|
|
SortType,
|
2020-12-24 01:58:27 +00:00
|
|
|
CommentView,
|
|
|
|
UserMentionView,
|
2020-09-06 16:15:25 +00:00
|
|
|
} from 'lemmy-js-client';
|
2020-12-24 01:58:27 +00:00
|
|
|
import {
|
|
|
|
CommentSortType,
|
|
|
|
CommentNode as CommentNodeI,
|
|
|
|
BanType,
|
|
|
|
} from '../interfaces';
|
2020-09-06 16:15:25 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
|
|
|
import {
|
|
|
|
mdToHtml,
|
|
|
|
getUnixTime,
|
|
|
|
canMod,
|
|
|
|
isMod,
|
|
|
|
setupTippy,
|
|
|
|
colorList,
|
2020-12-24 22:05:57 +00:00
|
|
|
wsClient,
|
|
|
|
authField,
|
2020-09-06 16:15:25 +00:00
|
|
|
} from '../utils';
|
|
|
|
import moment from 'moment';
|
|
|
|
import { MomentTime } from './moment-time';
|
|
|
|
import { CommentForm } from './comment-form';
|
|
|
|
import { CommentNodes } from './comment-nodes';
|
|
|
|
import { UserListing } from './user-listing';
|
|
|
|
import { CommunityLink } from './community-link';
|
|
|
|
import { i18n } from '../i18next';
|
|
|
|
|
|
|
|
interface CommentNodeState {
|
|
|
|
showReply: boolean;
|
|
|
|
showEdit: boolean;
|
|
|
|
showRemoveDialog: boolean;
|
|
|
|
removeReason: string;
|
|
|
|
showBanDialog: boolean;
|
|
|
|
removeData: boolean;
|
|
|
|
banReason: string;
|
|
|
|
banExpires: string;
|
|
|
|
banType: BanType;
|
|
|
|
showConfirmTransferSite: boolean;
|
|
|
|
showConfirmTransferCommunity: boolean;
|
|
|
|
showConfirmAppointAsMod: boolean;
|
|
|
|
showConfirmAppointAsAdmin: boolean;
|
|
|
|
collapsed: boolean;
|
|
|
|
viewSource: boolean;
|
|
|
|
showAdvanced: boolean;
|
|
|
|
my_vote: number;
|
|
|
|
score: number;
|
|
|
|
upvotes: number;
|
|
|
|
downvotes: number;
|
|
|
|
borderColor: string;
|
|
|
|
readLoading: boolean;
|
|
|
|
saveLoading: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface CommentNodeProps {
|
|
|
|
node: CommentNodeI;
|
|
|
|
noBorder?: boolean;
|
|
|
|
noIndent?: boolean;
|
|
|
|
viewOnly?: boolean;
|
|
|
|
locked?: boolean;
|
|
|
|
markable?: boolean;
|
|
|
|
showContext?: boolean;
|
2020-12-24 01:58:27 +00:00
|
|
|
moderators: CommunityModeratorView[];
|
|
|
|
admins: UserViewSafe[];
|
2020-09-06 16:15:25 +00:00
|
|
|
// TODO is this necessary, can't I get it from the node itself?
|
|
|
|
postCreatorId?: number;
|
|
|
|
showCommunity?: boolean;
|
|
|
|
sort?: CommentSortType;
|
|
|
|
sortType?: SortType;
|
|
|
|
enableDownvotes: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
|
|
|
private emptyState: CommentNodeState = {
|
|
|
|
showReply: false,
|
|
|
|
showEdit: false,
|
|
|
|
showRemoveDialog: false,
|
|
|
|
removeReason: null,
|
|
|
|
showBanDialog: false,
|
|
|
|
removeData: null,
|
|
|
|
banReason: null,
|
|
|
|
banExpires: null,
|
|
|
|
banType: BanType.Community,
|
|
|
|
collapsed: false,
|
|
|
|
viewSource: false,
|
|
|
|
showAdvanced: false,
|
|
|
|
showConfirmTransferSite: false,
|
|
|
|
showConfirmTransferCommunity: false,
|
|
|
|
showConfirmAppointAsMod: false,
|
|
|
|
showConfirmAppointAsAdmin: false,
|
2020-12-24 01:58:27 +00:00
|
|
|
my_vote: this.props.node.comment_view.my_vote,
|
|
|
|
score: this.props.node.comment_view.counts.score,
|
|
|
|
upvotes: this.props.node.comment_view.counts.upvotes,
|
|
|
|
downvotes: this.props.node.comment_view.counts.downvotes,
|
|
|
|
borderColor: this.props.node.depth
|
|
|
|
? colorList[this.props.node.depth % colorList.length]
|
2020-09-06 16:15:25 +00:00
|
|
|
: colorList[0],
|
|
|
|
readLoading: false,
|
|
|
|
saveLoading: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
this.handleReplyCancel = this.handleReplyCancel.bind(this);
|
|
|
|
this.handleCommentUpvote = this.handleCommentUpvote.bind(this);
|
|
|
|
this.handleCommentDownvote = this.handleCommentDownvote.bind(this);
|
|
|
|
}
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
// TODO see if there's a better way to do this, and all willReceiveProps
|
2020-09-06 16:15:25 +00:00
|
|
|
componentWillReceiveProps(nextProps: CommentNodeProps) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let cv = nextProps.node.comment_view;
|
|
|
|
this.state.my_vote = cv.my_vote;
|
|
|
|
this.state.upvotes = cv.counts.upvotes;
|
|
|
|
this.state.downvotes = cv.counts.downvotes;
|
|
|
|
this.state.score = cv.counts.score;
|
2020-09-06 16:15:25 +00:00
|
|
|
this.state.readLoading = false;
|
|
|
|
this.state.saveLoading = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let node = this.props.node;
|
2020-12-24 01:58:27 +00:00
|
|
|
let cv = this.props.node.comment_view;
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
|
|
|
<div
|
|
|
|
className={`comment ${
|
2020-12-24 01:58:27 +00:00
|
|
|
cv.comment.parent_id && !this.props.noIndent ? 'ml-1' : ''
|
2020-09-06 16:15:25 +00:00
|
|
|
}`}
|
|
|
|
>
|
|
|
|
<div
|
2020-12-24 01:58:27 +00:00
|
|
|
id={`comment-${cv.comment.id}`}
|
2020-09-06 16:15:25 +00:00
|
|
|
className={`details comment-node py-2 ${
|
|
|
|
!this.props.noBorder ? 'border-top border-light' : ''
|
|
|
|
} ${this.isCommentNew ? 'mark' : ''}`}
|
|
|
|
style={
|
|
|
|
!this.props.noIndent &&
|
2020-12-24 01:58:27 +00:00
|
|
|
cv.comment.parent_id &&
|
2020-09-06 16:15:25 +00:00
|
|
|
`border-left: 2px ${this.state.borderColor} solid !important`
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<div
|
2020-12-24 01:58:27 +00:00
|
|
|
class={`${!this.props.noIndent && cv.comment.parent_id && 'ml-2'}`}
|
2020-09-06 16:15:25 +00:00
|
|
|
>
|
|
|
|
<div class="d-flex flex-wrap align-items-center text-muted small">
|
|
|
|
<span class="mr-2">
|
2020-12-24 01:58:27 +00:00
|
|
|
<UserListing user={cv.creator} />
|
2020-09-06 16:15:25 +00:00
|
|
|
</span>
|
|
|
|
|
|
|
|
{this.isMod && (
|
|
|
|
<div className="badge badge-light d-none d-sm-inline mr-2">
|
|
|
|
{i18n.t('mod')}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{this.isAdmin && (
|
|
|
|
<div className="badge badge-light d-none d-sm-inline mr-2">
|
|
|
|
{i18n.t('admin')}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{this.isPostCreator && (
|
|
|
|
<div className="badge badge-light d-none d-sm-inline mr-2">
|
|
|
|
{i18n.t('creator')}
|
|
|
|
</div>
|
|
|
|
)}
|
2020-12-24 01:58:27 +00:00
|
|
|
{(cv.creator_banned_from_community || cv.creator.banned) && (
|
2020-09-06 16:15:25 +00:00
|
|
|
<div className="badge badge-danger mr-2">
|
|
|
|
{i18n.t('banned')}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{this.props.showCommunity && (
|
|
|
|
<>
|
|
|
|
<span class="mx-1">{i18n.t('to')}</span>
|
2020-12-24 01:58:27 +00:00
|
|
|
<CommunityLink community={cv.community} />
|
2020-09-06 16:15:25 +00:00
|
|
|
<span class="mx-2">•</span>
|
2020-12-24 01:58:27 +00:00
|
|
|
<Link className="mr-2" to={`/post/${cv.post.id}`}>
|
|
|
|
{cv.post.name}
|
2020-09-06 16:15:25 +00:00
|
|
|
</Link>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
<button
|
2020-09-25 21:16:41 +00:00
|
|
|
class="btn btn-sm text-muted"
|
2020-09-06 16:15:25 +00:00
|
|
|
onClick={linkEvent(this, this.handleCommentCollapse)}
|
|
|
|
>
|
2020-09-25 21:16:41 +00:00
|
|
|
{this.state.collapsed ? '+' : '—'}
|
2020-09-06 16:15:25 +00:00
|
|
|
</button>
|
|
|
|
{/* This is an expanding spacer for mobile */}
|
|
|
|
<div className="mr-lg-4 flex-grow-1 flex-lg-grow-0 unselectable pointer mx-2"></div>
|
2020-09-25 21:16:41 +00:00
|
|
|
<a
|
|
|
|
className={`unselectable pointer ${this.scoreColor}`}
|
2020-09-06 16:15:25 +00:00
|
|
|
onClick={linkEvent(node, this.handleCommentUpvote)}
|
|
|
|
data-tippy-content={this.pointsTippy}
|
|
|
|
>
|
2020-09-25 21:16:41 +00:00
|
|
|
<span class="mr-1 font-weight-bold">{this.state.score}</span>
|
|
|
|
</a>
|
2020-09-06 16:15:25 +00:00
|
|
|
<span className="mr-1">•</span>
|
|
|
|
<span>
|
2020-12-24 01:58:27 +00:00
|
|
|
<MomentTime data={cv.comment} />
|
2020-09-06 16:15:25 +00:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
{/* end of user row */}
|
|
|
|
{this.state.showEdit && (
|
|
|
|
<CommentForm
|
|
|
|
node={node}
|
|
|
|
edit
|
|
|
|
onReplyCancel={this.handleReplyCancel}
|
|
|
|
disabled={this.props.locked}
|
|
|
|
focus
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{!this.state.showEdit && !this.state.collapsed && (
|
|
|
|
<div>
|
|
|
|
{this.state.viewSource ? (
|
|
|
|
<pre>{this.commentUnlessRemoved}</pre>
|
|
|
|
) : (
|
|
|
|
<div
|
|
|
|
className="md-div"
|
|
|
|
dangerouslySetInnerHTML={mdToHtml(
|
|
|
|
this.commentUnlessRemoved
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<div class="d-flex justify-content-between justify-content-lg-start flex-wrap text-muted font-weight-bold">
|
|
|
|
{this.props.showContext && this.linkBtn}
|
|
|
|
{this.props.markable && (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(this, this.handleMarkRead)}
|
|
|
|
data-tippy-content={
|
2021-01-06 21:05:42 +00:00
|
|
|
this.commentOrMentionRead
|
2020-09-06 16:15:25 +00:00
|
|
|
? i18n.t('mark_as_unread')
|
|
|
|
: i18n.t('mark_as_read')
|
|
|
|
}
|
|
|
|
>
|
|
|
|
{this.state.readLoading ? (
|
|
|
|
this.loadingIcon
|
|
|
|
) : (
|
|
|
|
<svg
|
|
|
|
class={`icon icon-inline ${
|
2021-01-06 21:05:42 +00:00
|
|
|
this.commentOrMentionRead && 'text-success'
|
2020-09-06 16:15:25 +00:00
|
|
|
}`}
|
|
|
|
>
|
|
|
|
<use xlinkHref="#icon-check"></use>
|
|
|
|
</svg>
|
|
|
|
)}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
{UserService.Instance.user && !this.props.viewOnly && (
|
|
|
|
<>
|
|
|
|
<button
|
|
|
|
className={`btn btn-link btn-animate ${
|
|
|
|
this.state.my_vote == 1 ? 'text-info' : 'text-muted'
|
|
|
|
}`}
|
|
|
|
onClick={linkEvent(node, this.handleCommentUpvote)}
|
|
|
|
data-tippy-content={i18n.t('upvote')}
|
|
|
|
>
|
|
|
|
<svg class="icon icon-inline">
|
2020-09-25 21:16:41 +00:00
|
|
|
<use xlinkHref="#icon-arrow-up1"></use>
|
2020-09-06 16:15:25 +00:00
|
|
|
</svg>
|
|
|
|
{this.state.upvotes !== this.state.score && (
|
|
|
|
<span class="ml-1">{this.state.upvotes}</span>
|
|
|
|
)}
|
|
|
|
</button>
|
|
|
|
{this.props.enableDownvotes && (
|
|
|
|
<button
|
|
|
|
className={`btn btn-link btn-animate ${
|
|
|
|
this.state.my_vote == -1
|
|
|
|
? 'text-danger'
|
|
|
|
: 'text-muted'
|
|
|
|
}`}
|
|
|
|
onClick={linkEvent(node, this.handleCommentDownvote)}
|
|
|
|
data-tippy-content={i18n.t('downvote')}
|
|
|
|
>
|
|
|
|
<svg class="icon icon-inline">
|
2020-09-25 21:16:41 +00:00
|
|
|
<use xlinkHref="#icon-arrow-down1"></use>
|
2020-09-06 16:15:25 +00:00
|
|
|
</svg>
|
|
|
|
{this.state.upvotes !== this.state.score && (
|
|
|
|
<span class="ml-1">{this.state.downvotes}</span>
|
|
|
|
)}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(this, this.handleReplyClick)}
|
|
|
|
data-tippy-content={i18n.t('reply')}
|
|
|
|
>
|
|
|
|
<svg class="icon icon-inline">
|
|
|
|
<use xlinkHref="#icon-reply1"></use>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
{!this.state.showAdvanced ? (
|
|
|
|
<button
|
|
|
|
className="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(this, this.handleShowAdvanced)}
|
|
|
|
data-tippy-content={i18n.t('more')}
|
|
|
|
>
|
|
|
|
<svg class="icon icon-inline">
|
|
|
|
<use xlinkHref="#icon-more-vertical"></use>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
{!this.myComment && (
|
|
|
|
<button class="btn btn-link btn-animate">
|
|
|
|
<Link
|
2020-09-09 00:48:17 +00:00
|
|
|
className="text-muted"
|
2020-12-24 01:58:27 +00:00
|
|
|
to={`/create_private_message/recipient/${cv.creator.id}`}
|
2020-09-06 16:15:25 +00:00
|
|
|
title={i18n.t('message').toLowerCase()}
|
|
|
|
>
|
|
|
|
<svg class="icon">
|
|
|
|
<use xlinkHref="#icon-mail"></use>
|
|
|
|
</svg>
|
|
|
|
</Link>
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
{!this.props.showContext && this.linkBtn}
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleSaveCommentClick
|
|
|
|
)}
|
|
|
|
data-tippy-content={
|
2020-12-24 01:58:27 +00:00
|
|
|
cv.saved ? i18n.t('unsave') : i18n.t('save')
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
>
|
|
|
|
{this.state.saveLoading ? (
|
|
|
|
this.loadingIcon
|
|
|
|
) : (
|
|
|
|
<svg
|
|
|
|
class={`icon icon-inline ${
|
2020-12-24 01:58:27 +00:00
|
|
|
cv.saved && 'text-warning'
|
2020-09-06 16:15:25 +00:00
|
|
|
}`}
|
|
|
|
>
|
|
|
|
<use xlinkHref="#icon-star"></use>
|
|
|
|
</svg>
|
|
|
|
)}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
className="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(this, this.handleViewSource)}
|
|
|
|
data-tippy-content={i18n.t('view_source')}
|
|
|
|
>
|
|
|
|
<svg
|
|
|
|
class={`icon icon-inline ${
|
|
|
|
this.state.viewSource && 'text-success'
|
|
|
|
}`}
|
|
|
|
>
|
|
|
|
<use xlinkHref="#icon-file-text"></use>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
{this.myComment && (
|
|
|
|
<>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(this, this.handleEditClick)}
|
|
|
|
data-tippy-content={i18n.t('edit')}
|
|
|
|
>
|
|
|
|
<svg class="icon icon-inline">
|
|
|
|
<use xlinkHref="#icon-edit"></use>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleDeleteClick
|
|
|
|
)}
|
|
|
|
data-tippy-content={
|
2020-12-24 01:58:27 +00:00
|
|
|
!cv.comment.deleted
|
2020-09-06 16:15:25 +00:00
|
|
|
? i18n.t('delete')
|
|
|
|
: i18n.t('restore')
|
|
|
|
}
|
|
|
|
>
|
|
|
|
<svg
|
|
|
|
class={`icon icon-inline ${
|
2020-12-24 01:58:27 +00:00
|
|
|
cv.comment.deleted && 'text-danger'
|
2020-09-06 16:15:25 +00:00
|
|
|
}`}
|
|
|
|
>
|
|
|
|
<use xlinkHref="#icon-trash"></use>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{/* Admins and mods can remove comments */}
|
|
|
|
{(this.canMod || this.canAdmin) && (
|
|
|
|
<>
|
2020-12-24 01:58:27 +00:00
|
|
|
{!cv.comment.removed ? (
|
2020-09-06 16:15:25 +00:00
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModRemoveShow
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('remove')}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModRemoveSubmit
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('restore')}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{/* Mods can ban from community, and appoint as mods to community */}
|
|
|
|
{this.canMod && (
|
|
|
|
<>
|
|
|
|
{!this.isMod &&
|
2020-12-24 01:58:27 +00:00
|
|
|
(!cv.creator_banned_from_community ? (
|
2020-09-06 16:15:25 +00:00
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModBanFromCommunityShow
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('ban')}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModBanFromCommunitySubmit
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('unban')}
|
|
|
|
</button>
|
|
|
|
))}
|
2020-12-24 01:58:27 +00:00
|
|
|
{!cv.creator_banned_from_community &&
|
|
|
|
cv.creator.local &&
|
2020-09-06 16:15:25 +00:00
|
|
|
(!this.state.showConfirmAppointAsMod ? (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmAppointAsMod
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{this.isMod
|
|
|
|
? i18n.t('remove_as_mod')
|
|
|
|
: i18n.t('appoint_as_mod')}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<button class="btn btn-link btn-animate text-muted">
|
|
|
|
{i18n.t('are_you_sure')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleAddModToCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('yes')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCancelConfirmAppointAsMod
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('no')}
|
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{/* Community creators and admins can transfer community to another mod */}
|
|
|
|
{(this.amCommunityCreator || this.canAdmin) &&
|
|
|
|
this.isMod &&
|
2020-12-24 01:58:27 +00:00
|
|
|
cv.creator.local &&
|
2020-09-06 16:15:25 +00:00
|
|
|
(!this.state.showConfirmTransferCommunity ? (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmTransferCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('transfer_community')}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<button class="btn btn-link btn-animate text-muted">
|
|
|
|
{i18n.t('are_you_sure')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleTransferCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('yes')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this
|
|
|
|
.handleCancelShowConfirmTransferCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('no')}
|
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
))}
|
|
|
|
{/* Admins can ban from all, and appoint other admins */}
|
|
|
|
{this.canAdmin && (
|
|
|
|
<>
|
|
|
|
{!this.isAdmin &&
|
2020-12-24 01:58:27 +00:00
|
|
|
(!cv.creator.banned ? (
|
2020-09-06 16:15:25 +00:00
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModBanShow
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('ban_from_site')}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModBanSubmit
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('unban_from_site')}
|
|
|
|
</button>
|
|
|
|
))}
|
2020-12-24 01:58:27 +00:00
|
|
|
{!cv.creator.banned &&
|
|
|
|
cv.creator.local &&
|
2020-09-06 16:15:25 +00:00
|
|
|
(!this.state.showConfirmAppointAsAdmin ? (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmAppointAsAdmin
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{this.isAdmin
|
|
|
|
? i18n.t('remove_as_admin')
|
|
|
|
: i18n.t('appoint_as_admin')}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<button class="btn btn-link btn-animate text-muted">
|
|
|
|
{i18n.t('are_you_sure')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleAddAdmin
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('yes')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCancelConfirmAppointAsAdmin
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('no')}
|
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{/* Site Creator can transfer to another admin */}
|
|
|
|
{this.amSiteCreator &&
|
|
|
|
this.isAdmin &&
|
2020-12-24 01:58:27 +00:00
|
|
|
cv.creator.local &&
|
2020-09-06 16:15:25 +00:00
|
|
|
(!this.state.showConfirmTransferSite ? (
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmTransferSite
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('transfer_site')}
|
|
|
|
</button>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<button class="btn btn-link btn-animate text-muted">
|
|
|
|
{i18n.t('are_you_sure')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleTransferSite
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('yes')}
|
|
|
|
</button>
|
|
|
|
<button
|
|
|
|
class="btn btn-link btn-animate text-muted"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCancelShowConfirmTransferSite
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{i18n.t('no')}
|
|
|
|
</button>
|
|
|
|
</>
|
|
|
|
))}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
{/* end of button group */}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{/* end of details */}
|
|
|
|
{this.state.showRemoveDialog && (
|
|
|
|
<form
|
|
|
|
class="form-inline"
|
|
|
|
onSubmit={linkEvent(this, this.handleModRemoveSubmit)}
|
|
|
|
>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
class="form-control mr-2"
|
|
|
|
placeholder={i18n.t('reason')}
|
|
|
|
value={this.state.removeReason}
|
|
|
|
onInput={linkEvent(this, this.handleModRemoveReasonChange)}
|
|
|
|
/>
|
|
|
|
<button type="submit" class="btn btn-secondary">
|
|
|
|
{i18n.t('remove_comment')}
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
)}
|
|
|
|
{this.state.showBanDialog && (
|
|
|
|
<form onSubmit={linkEvent(this, this.handleModBanBothSubmit)}>
|
|
|
|
<div class="form-group row">
|
|
|
|
<label class="col-form-label">{i18n.t('reason')}</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
class="form-control mr-2"
|
|
|
|
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">
|
|
|
|
{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">
|
2020-12-24 01:58:27 +00:00
|
|
|
{i18n.t('ban')} {cv.creator.name}
|
2020-09-06 16:15:25 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
)}
|
|
|
|
{this.state.showReply && (
|
|
|
|
<CommentForm
|
|
|
|
node={node}
|
|
|
|
onReplyCancel={this.handleReplyCancel}
|
|
|
|
disabled={this.props.locked}
|
|
|
|
focus
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{node.children && !this.state.collapsed && (
|
|
|
|
<CommentNodes
|
|
|
|
nodes={node.children}
|
|
|
|
locked={this.props.locked}
|
|
|
|
moderators={this.props.moderators}
|
|
|
|
admins={this.props.admins}
|
|
|
|
postCreatorId={this.props.postCreatorId}
|
|
|
|
sort={this.props.sort}
|
|
|
|
sortType={this.props.sortType}
|
|
|
|
enableDownvotes={this.props.enableDownvotes}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{/* A collapsed clearfix */}
|
|
|
|
{this.state.collapsed && <div class="row col-12"></div>}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-01-06 21:05:42 +00:00
|
|
|
get commentOrMentionRead() {
|
|
|
|
let cv = this.props.node.comment_view;
|
|
|
|
return this.isUserMentionType(cv) ? cv.user_mention.read : cv.comment.read;
|
|
|
|
}
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
get linkBtn() {
|
2020-12-24 01:58:27 +00:00
|
|
|
let cv = this.props.node.comment_view;
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
|
|
|
<Link
|
2020-09-09 00:48:17 +00:00
|
|
|
className="btn btn-link btn-animate text-muted"
|
2020-12-24 01:58:27 +00:00
|
|
|
to={`/post/${cv.post.id}/comment/${cv.comment.id}`}
|
2020-09-06 16:15:25 +00:00
|
|
|
title={this.props.showContext ? i18n.t('show_context') : i18n.t('link')}
|
|
|
|
>
|
|
|
|
<svg class="icon icon-inline">
|
|
|
|
<use xlinkHref="#icon-link"></use>
|
|
|
|
</svg>
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get loadingIcon() {
|
|
|
|
return (
|
|
|
|
<svg class="icon icon-spinner spin">
|
|
|
|
<use xlinkHref="#icon-spinner"></use>
|
|
|
|
</svg>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get myComment(): boolean {
|
|
|
|
return (
|
|
|
|
UserService.Instance.user &&
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.node.comment_view.creator.id == UserService.Instance.user.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
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.node.comment_view.creator.id
|
2020-09-06 16:15:25 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get isAdmin(): boolean {
|
|
|
|
return (
|
|
|
|
this.props.admins &&
|
|
|
|
isMod(
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.admins.map(a => a.user.id),
|
|
|
|
this.props.node.comment_view.creator.id
|
2020-09-06 16:15:25 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get isPostCreator(): boolean {
|
2020-12-24 01:58:27 +00:00
|
|
|
return this.props.node.comment_view.creator.id == this.props.postCreatorId;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get canMod(): boolean {
|
|
|
|
if (this.props.admins && this.props.moderators) {
|
|
|
|
let adminsThenMods = this.props.admins
|
2020-12-24 01:58:27 +00:00
|
|
|
.map(a => a.user.id)
|
|
|
|
.concat(this.props.moderators.map(m => m.moderator.id));
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
return canMod(
|
|
|
|
UserService.Instance.user,
|
|
|
|
adminsThenMods,
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.node.comment_view.creator.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get canAdmin(): boolean {
|
|
|
|
return (
|
|
|
|
this.props.admins &&
|
|
|
|
canMod(
|
|
|
|
UserService.Instance.user,
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.admins.map(a => a.user.id),
|
|
|
|
this.props.node.comment_view.creator.id
|
2020-09-06 16:15:25 +00:00
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get amCommunityCreator(): boolean {
|
|
|
|
return (
|
|
|
|
this.props.moderators &&
|
|
|
|
UserService.Instance.user &&
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.node.comment_view.creator.id != UserService.Instance.user.id &&
|
|
|
|
UserService.Instance.user.id == this.props.moderators[0].moderator.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get amSiteCreator(): boolean {
|
|
|
|
return (
|
|
|
|
this.props.admins &&
|
|
|
|
UserService.Instance.user &&
|
2020-12-24 01:58:27 +00:00
|
|
|
this.props.node.comment_view.creator.id != UserService.Instance.user.id &&
|
|
|
|
UserService.Instance.user.id == this.props.admins[0].user.id
|
2020-09-06 16:15:25 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
get commentUnlessRemoved(): string {
|
2020-12-24 01:58:27 +00:00
|
|
|
let comment = this.props.node.comment_view.comment;
|
|
|
|
return comment.removed
|
2020-09-06 16:15:25 +00:00
|
|
|
? `*${i18n.t('removed')}*`
|
2020-12-24 01:58:27 +00:00
|
|
|
: comment.deleted
|
2020-09-06 16:15:25 +00:00
|
|
|
? `*${i18n.t('deleted')}*`
|
2020-12-24 01:58:27 +00:00
|
|
|
: comment.content;
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleReplyClick(i: CommentNode) {
|
|
|
|
i.state.showReply = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleEditClick(i: CommentNode) {
|
|
|
|
i.state.showEdit = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleDeleteClick(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let comment = i.props.node.comment_view.comment;
|
|
|
|
let deleteForm: DeleteComment = {
|
2021-01-18 22:42:41 +00:00
|
|
|
comment_id: comment.id,
|
2020-12-24 01:58:27 +00:00
|
|
|
deleted: !comment.deleted,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.deleteComment(deleteForm));
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
handleSaveCommentClick(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let cv = i.props.node.comment_view;
|
|
|
|
let save = cv.saved == undefined ? true : !cv.saved;
|
|
|
|
let form: SaveComment = {
|
|
|
|
comment_id: cv.comment.id,
|
|
|
|
save,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
|
|
|
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.saveComment(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
i.state.saveLoading = true;
|
|
|
|
i.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleReplyCancel() {
|
|
|
|
this.state.showReply = false;
|
|
|
|
this.state.showEdit = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommentUpvote(i: CommentNodeI) {
|
|
|
|
let new_vote = this.state.my_vote == 1 ? 0 : 1;
|
|
|
|
|
|
|
|
if (this.state.my_vote == 1) {
|
|
|
|
this.state.score--;
|
|
|
|
this.state.upvotes--;
|
|
|
|
} else if (this.state.my_vote == -1) {
|
|
|
|
this.state.downvotes--;
|
|
|
|
this.state.upvotes++;
|
|
|
|
this.state.score += 2;
|
|
|
|
} else {
|
|
|
|
this.state.upvotes++;
|
|
|
|
this.state.score++;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state.my_vote = new_vote;
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
let form: CreateCommentLike = {
|
|
|
|
comment_id: i.comment_view.comment.id,
|
2020-09-06 16:15:25 +00:00
|
|
|
score: this.state.my_vote,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
|
|
|
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.likeComment(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommentDownvote(i: CommentNodeI) {
|
|
|
|
let new_vote = this.state.my_vote == -1 ? 0 : -1;
|
|
|
|
|
|
|
|
if (this.state.my_vote == 1) {
|
|
|
|
this.state.score -= 2;
|
|
|
|
this.state.upvotes--;
|
|
|
|
this.state.downvotes++;
|
|
|
|
} else if (this.state.my_vote == -1) {
|
|
|
|
this.state.downvotes--;
|
|
|
|
this.state.score++;
|
|
|
|
} else {
|
|
|
|
this.state.downvotes++;
|
|
|
|
this.state.score--;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state.my_vote = new_vote;
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
let form: CreateCommentLike = {
|
|
|
|
comment_id: i.comment_view.comment.id,
|
2020-09-06 16:15:25 +00:00
|
|
|
score: this.state.my_vote,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
|
|
|
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.likeComment(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
this.setState(this.state);
|
|
|
|
setupTippy();
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveShow(i: CommentNode) {
|
|
|
|
i.state.showRemoveDialog = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveReasonChange(i: CommentNode, event: any) {
|
|
|
|
i.state.removeReason = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveDataChange(i: CommentNode, event: any) {
|
|
|
|
i.state.removeData = event.target.checked;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveSubmit(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let comment = i.props.node.comment_view.comment;
|
|
|
|
let form: RemoveComment = {
|
2021-01-18 22:42:41 +00:00
|
|
|
comment_id: comment.id,
|
2020-12-24 01:58:27 +00:00
|
|
|
removed: !comment.removed,
|
2020-09-06 16:15:25 +00:00
|
|
|
reason: i.state.removeReason,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.removeComment(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
i.state.showRemoveDialog = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2020-12-24 01:58:27 +00:00
|
|
|
isUserMentionType(
|
|
|
|
item: CommentView | UserMentionView
|
|
|
|
): item is UserMentionView {
|
2021-01-06 21:05:42 +00:00
|
|
|
return (item as UserMentionView).user_mention?.id !== undefined;
|
2020-12-24 01:58:27 +00:00
|
|
|
}
|
|
|
|
|
2020-09-06 16:15:25 +00:00
|
|
|
handleMarkRead(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
if (i.isUserMentionType(i.props.node.comment_view)) {
|
|
|
|
let form: MarkUserMentionAsRead = {
|
|
|
|
user_mention_id: i.props.node.comment_view.user_mention.id,
|
|
|
|
read: !i.props.node.comment_view.user_mention.read,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.markUserMentionAsRead(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
} else {
|
2020-12-24 01:58:27 +00:00
|
|
|
let form: MarkCommentAsRead = {
|
|
|
|
comment_id: i.props.node.comment_view.comment.id,
|
|
|
|
read: !i.props.node.comment_view.comment.read,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.markCommentAsRead(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
i.state.readLoading = true;
|
|
|
|
i.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanFromCommunityShow(i: CommentNode) {
|
|
|
|
i.state.showBanDialog = !i.state.showBanDialog;
|
|
|
|
i.state.banType = BanType.Community;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanShow(i: CommentNode) {
|
|
|
|
i.state.showBanDialog = !i.state.showBanDialog;
|
|
|
|
i.state.banType = BanType.Site;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanReasonChange(i: CommentNode, event: any) {
|
|
|
|
i.state.banReason = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanExpiresChange(i: CommentNode, event: any) {
|
|
|
|
i.state.banExpires = event.target.value;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanFromCommunitySubmit(i: CommentNode) {
|
|
|
|
i.state.banType = BanType.Community;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.handleModBanBothSubmit(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanSubmit(i: CommentNode) {
|
|
|
|
i.state.banType = BanType.Site;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.handleModBanBothSubmit(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanBothSubmit(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let cv = i.props.node.comment_view;
|
2020-09-06 16:15:25 +00:00
|
|
|
|
|
|
|
if (i.state.banType == BanType.Community) {
|
|
|
|
// If its an unban, restore all their data
|
2020-12-24 01:58:27 +00:00
|
|
|
let ban = !cv.creator_banned_from_community;
|
2020-09-06 16:15:25 +00:00
|
|
|
if (ban == false) {
|
|
|
|
i.state.removeData = false;
|
|
|
|
}
|
2020-12-24 01:58:27 +00:00
|
|
|
let form: BanFromCommunity = {
|
|
|
|
user_id: cv.creator.id,
|
|
|
|
community_id: cv.community.id,
|
2020-09-06 16:15:25 +00:00
|
|
|
ban,
|
|
|
|
remove_data: i.state.removeData,
|
|
|
|
reason: i.state.banReason,
|
|
|
|
expires: getUnixTime(i.state.banExpires),
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.banFromCommunity(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
} else {
|
|
|
|
// If its an unban, restore all their data
|
2020-12-24 01:58:27 +00:00
|
|
|
let ban = !cv.creator.banned;
|
2020-09-06 16:15:25 +00:00
|
|
|
if (ban == false) {
|
|
|
|
i.state.removeData = false;
|
|
|
|
}
|
2020-12-24 01:58:27 +00:00
|
|
|
let form: BanUser = {
|
|
|
|
user_id: cv.creator.id,
|
2020-09-06 16:15:25 +00:00
|
|
|
ban,
|
|
|
|
remove_data: i.state.removeData,
|
|
|
|
reason: i.state.banReason,
|
|
|
|
expires: getUnixTime(i.state.banExpires),
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.banUser(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
i.state.showBanDialog = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleShowConfirmAppointAsMod(i: CommentNode) {
|
|
|
|
i.state.showConfirmAppointAsMod = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCancelConfirmAppointAsMod(i: CommentNode) {
|
|
|
|
i.state.showConfirmAppointAsMod = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleAddModToCommunity(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let cv = i.props.node.comment_view;
|
|
|
|
let form: AddModToCommunity = {
|
|
|
|
user_id: cv.creator.id,
|
|
|
|
community_id: cv.community.id,
|
2020-09-06 16:15:25 +00:00
|
|
|
added: !i.isMod,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.addModToCommunity(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
i.state.showConfirmAppointAsMod = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleShowConfirmAppointAsAdmin(i: CommentNode) {
|
|
|
|
i.state.showConfirmAppointAsAdmin = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCancelConfirmAppointAsAdmin(i: CommentNode) {
|
|
|
|
i.state.showConfirmAppointAsAdmin = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleAddAdmin(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let form: AddAdmin = {
|
|
|
|
user_id: i.props.node.comment_view.creator.id,
|
2020-09-06 16:15:25 +00:00
|
|
|
added: !i.isAdmin,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.addAdmin(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
i.state.showConfirmAppointAsAdmin = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleShowConfirmTransferCommunity(i: CommentNode) {
|
|
|
|
i.state.showConfirmTransferCommunity = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCancelShowConfirmTransferCommunity(i: CommentNode) {
|
|
|
|
i.state.showConfirmTransferCommunity = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleTransferCommunity(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let cv = i.props.node.comment_view;
|
|
|
|
let form: TransferCommunity = {
|
|
|
|
community_id: cv.community.id,
|
|
|
|
user_id: cv.creator.id,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.transferCommunity(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
i.state.showConfirmTransferCommunity = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleShowConfirmTransferSite(i: CommentNode) {
|
|
|
|
i.state.showConfirmTransferSite = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCancelShowConfirmTransferSite(i: CommentNode) {
|
|
|
|
i.state.showConfirmTransferSite = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleTransferSite(i: CommentNode) {
|
2020-12-24 01:58:27 +00:00
|
|
|
let form: TransferSite = {
|
|
|
|
user_id: i.props.node.comment_view.creator.id,
|
2020-12-24 22:05:57 +00:00
|
|
|
auth: authField(),
|
2020-09-06 16:15:25 +00:00
|
|
|
};
|
2020-12-24 22:05:57 +00:00
|
|
|
WebSocketService.Instance.send(wsClient.transferSite(form));
|
2020-09-06 16:15:25 +00:00
|
|
|
i.state.showConfirmTransferSite = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
get isCommentNew(): boolean {
|
|
|
|
let now = moment.utc().subtract(10, 'minutes');
|
2020-12-24 01:58:27 +00:00
|
|
|
let then = moment.utc(this.props.node.comment_view.comment.published);
|
2020-09-06 16:15:25 +00:00
|
|
|
return now.isBefore(then);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommentCollapse(i: CommentNode) {
|
|
|
|
i.state.collapsed = !i.state.collapsed;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleViewSource(i: CommentNode) {
|
|
|
|
i.state.viewSource = !i.state.viewSource;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleShowAdvanced(i: CommentNode) {
|
|
|
|
i.state.showAdvanced = !i.state.showAdvanced;
|
|
|
|
i.setState(i.state);
|
|
|
|
setupTippy();
|
|
|
|
}
|
|
|
|
|
|
|
|
get scoreColor() {
|
|
|
|
if (this.state.my_vote == 1) {
|
|
|
|
return 'text-info';
|
|
|
|
} else if (this.state.my_vote == -1) {
|
|
|
|
return 'text-danger';
|
|
|
|
} else {
|
|
|
|
return 'text-muted';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
get pointsTippy(): string {
|
|
|
|
let points = i18n.t('number_of_points', {
|
|
|
|
count: this.state.score,
|
|
|
|
});
|
|
|
|
|
|
|
|
let upvotes = i18n.t('number_of_upvotes', {
|
|
|
|
count: this.state.upvotes,
|
|
|
|
});
|
|
|
|
|
|
|
|
let downvotes = i18n.t('number_of_downvotes', {
|
|
|
|
count: this.state.downvotes,
|
|
|
|
});
|
|
|
|
|
|
|
|
return `${points} • ${upvotes} • ${downvotes}`;
|
|
|
|
}
|
|
|
|
}
|