2019-04-08 05:19:02 +00:00
|
|
|
import { Component, linkEvent } from 'inferno';
|
|
|
|
import { Link } from 'inferno-router';
|
2019-10-19 00:20:27 +00:00
|
|
|
import {
|
|
|
|
CommentNode as CommentNodeI,
|
|
|
|
CommentLikeForm,
|
|
|
|
CommentForm as CommentFormI,
|
2019-10-20 00:46:29 +00:00
|
|
|
EditUserMentionForm,
|
2019-10-19 00:20:27 +00:00
|
|
|
SaveCommentForm,
|
|
|
|
BanFromCommunityForm,
|
|
|
|
BanUserForm,
|
|
|
|
CommunityUser,
|
|
|
|
UserView,
|
|
|
|
AddModToCommunityForm,
|
|
|
|
AddAdminForm,
|
|
|
|
TransferCommunityForm,
|
|
|
|
TransferSiteForm,
|
|
|
|
BanType,
|
|
|
|
} from '../interfaces';
|
2019-04-08 05:19:02 +00:00
|
|
|
import { WebSocketService, UserService } from '../services';
|
2019-12-29 20:39:48 +00:00
|
|
|
import {
|
|
|
|
mdToHtml,
|
|
|
|
getUnixTime,
|
|
|
|
canMod,
|
|
|
|
isMod,
|
|
|
|
pictshareAvatarThumbnail,
|
2020-01-02 21:55:54 +00:00
|
|
|
showAvatars,
|
2019-12-29 20:39:48 +00:00
|
|
|
} from '../utils';
|
2020-01-06 16:22:51 +00:00
|
|
|
import moment from 'moment';
|
2019-04-08 05:19:02 +00:00
|
|
|
import { MomentTime } from './moment-time';
|
|
|
|
import { CommentForm } from './comment-form';
|
|
|
|
import { CommentNodes } from './comment-nodes';
|
2019-08-10 00:14:43 +00:00
|
|
|
import { i18n } from '../i18next';
|
|
|
|
import { T } from 'inferno-i18next';
|
2019-04-08 05:19:02 +00:00
|
|
|
|
|
|
|
interface CommentNodeState {
|
|
|
|
showReply: boolean;
|
|
|
|
showEdit: boolean;
|
2019-04-15 23:12:06 +00:00
|
|
|
showRemoveDialog: boolean;
|
|
|
|
removeReason: string;
|
|
|
|
showBanDialog: boolean;
|
|
|
|
banReason: string;
|
|
|
|
banExpires: string;
|
2019-04-20 04:06:25 +00:00
|
|
|
banType: BanType;
|
2019-08-29 02:22:50 +00:00
|
|
|
showConfirmTransferSite: boolean;
|
|
|
|
showConfirmTransferCommunity: boolean;
|
2020-01-02 03:09:07 +00:00
|
|
|
showConfirmAppointAsMod: boolean;
|
|
|
|
showConfirmAppointAsAdmin: boolean;
|
2019-09-06 00:18:48 +00:00
|
|
|
collapsed: boolean;
|
2019-09-08 18:00:08 +00:00
|
|
|
viewSource: boolean;
|
2020-01-14 03:57:32 +00:00
|
|
|
my_vote: number;
|
|
|
|
score: number;
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
interface CommentNodeProps {
|
|
|
|
node: CommentNodeI;
|
|
|
|
noIndent?: boolean;
|
|
|
|
viewOnly?: boolean;
|
2019-04-15 23:12:06 +00:00
|
|
|
locked?: boolean;
|
2019-04-20 18:17:00 +00:00
|
|
|
markable?: boolean;
|
2019-04-15 23:12:06 +00:00
|
|
|
moderators: Array<CommunityUser>;
|
2019-04-20 04:06:25 +00:00
|
|
|
admins: Array<UserView>;
|
2019-09-13 15:37:12 +00:00
|
|
|
postCreatorId?: number;
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export class CommentNode extends Component<CommentNodeProps, CommentNodeState> {
|
|
|
|
private emptyState: CommentNodeState = {
|
|
|
|
showReply: false,
|
2019-04-15 23:12:06 +00:00
|
|
|
showEdit: false,
|
|
|
|
showRemoveDialog: false,
|
|
|
|
removeReason: null,
|
|
|
|
showBanDialog: false,
|
|
|
|
banReason: null,
|
|
|
|
banExpires: null,
|
2019-07-16 05:56:46 +00:00
|
|
|
banType: BanType.Community,
|
|
|
|
collapsed: false,
|
2019-09-08 18:00:08 +00:00
|
|
|
viewSource: false,
|
2019-08-29 02:22:50 +00:00
|
|
|
showConfirmTransferSite: false,
|
|
|
|
showConfirmTransferCommunity: false,
|
2020-01-02 03:09:07 +00:00
|
|
|
showConfirmAppointAsMod: false,
|
|
|
|
showConfirmAppointAsAdmin: false,
|
2020-01-14 03:57:32 +00:00
|
|
|
my_vote: this.props.node.comment.my_vote,
|
|
|
|
score: this.props.node.comment.score,
|
2019-10-19 00:20:27 +00:00
|
|
|
};
|
2019-04-08 05:19:02 +00:00
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
|
|
|
|
this.state = this.emptyState;
|
|
|
|
this.handleReplyCancel = this.handleReplyCancel.bind(this);
|
|
|
|
this.handleCommentLike = this.handleCommentLike.bind(this);
|
|
|
|
this.handleCommentDisLike = this.handleCommentDisLike.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let node = this.props.node;
|
|
|
|
return (
|
2019-10-19 00:20:27 +00:00
|
|
|
<div
|
|
|
|
className={`comment ${
|
|
|
|
node.comment.parent_id && !this.props.noIndent ? 'ml-4' : ''
|
|
|
|
}`}
|
|
|
|
>
|
|
|
|
{!this.state.collapsed && (
|
|
|
|
<div
|
|
|
|
className={`vote-bar mr-2 float-left small text-center ${this.props
|
|
|
|
.viewOnly && 'no-click'}`}
|
|
|
|
>
|
|
|
|
<button
|
2020-01-14 15:38:45 +00:00
|
|
|
disabled={!UserService.Instance.user}
|
2019-10-19 00:20:27 +00:00
|
|
|
className={`btn p-0 ${
|
2020-01-14 03:57:32 +00:00
|
|
|
this.state.my_vote == 1 ? 'text-info' : 'text-muted'
|
2019-10-19 00:20:27 +00:00
|
|
|
}`}
|
|
|
|
onClick={linkEvent(node, this.handleCommentLike)}
|
|
|
|
>
|
|
|
|
<svg class="icon upvote">
|
|
|
|
<use xlinkHref="#icon-arrow-up"></use>
|
|
|
|
</svg>
|
2019-09-02 22:00:49 +00:00
|
|
|
</button>
|
2020-01-14 03:57:32 +00:00
|
|
|
<div class={`font-weight-bold text-muted`}>{this.state.score}</div>
|
2019-12-11 20:21:47 +00:00
|
|
|
{WebSocketService.Instance.site.enable_downvotes && (
|
|
|
|
<button
|
2020-01-14 15:38:45 +00:00
|
|
|
disabled={!UserService.Instance.user}
|
2019-12-11 20:21:47 +00:00
|
|
|
className={`btn p-0 ${
|
2020-01-14 03:57:32 +00:00
|
|
|
this.state.my_vote == -1 ? 'text-danger' : 'text-muted'
|
2019-12-11 20:21:47 +00:00
|
|
|
}`}
|
|
|
|
onClick={linkEvent(node, this.handleCommentDisLike)}
|
|
|
|
>
|
|
|
|
<svg class="icon downvote">
|
|
|
|
<use xlinkHref="#icon-arrow-down"></use>
|
|
|
|
</svg>
|
|
|
|
</button>
|
|
|
|
)}
|
2019-09-02 22:00:49 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
|
|
|
<div
|
|
|
|
id={`comment-${node.comment.id}`}
|
|
|
|
className={`details comment-node ml-4 ${
|
|
|
|
this.isCommentNew ? 'mark' : ''
|
|
|
|
}`}
|
|
|
|
>
|
2019-04-08 05:19:02 +00:00
|
|
|
<ul class="list-inline mb-0 text-muted small">
|
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<Link
|
|
|
|
className="text-info"
|
|
|
|
to={`/u/${node.comment.creator_name}`}
|
|
|
|
>
|
2020-01-02 21:55:54 +00:00
|
|
|
{node.comment.creator_avatar && showAvatars() && (
|
2019-12-29 20:39:48 +00:00
|
|
|
<img
|
|
|
|
height="32"
|
|
|
|
width="32"
|
|
|
|
src={pictshareAvatarThumbnail(node.comment.creator_avatar)}
|
|
|
|
class="rounded-circle mr-1"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
<span>{node.comment.creator_name}</span>
|
2019-10-19 00:20:27 +00:00
|
|
|
</Link>
|
2019-04-08 05:19:02 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.isMod && (
|
|
|
|
<li className="list-inline-item badge badge-light">
|
|
|
|
<T i18nKey="mod">#</T>
|
|
|
|
</li>
|
|
|
|
)}
|
|
|
|
{this.isAdmin && (
|
|
|
|
<li className="list-inline-item badge badge-light">
|
|
|
|
<T i18nKey="admin">#</T>
|
|
|
|
</li>
|
|
|
|
)}
|
|
|
|
{this.isPostCreator && (
|
|
|
|
<li className="list-inline-item badge badge-light">
|
|
|
|
<T i18nKey="creator">#</T>
|
|
|
|
</li>
|
|
|
|
)}
|
|
|
|
{(node.comment.banned_from_community || node.comment.banned) && (
|
|
|
|
<li className="list-inline-item badge badge-danger">
|
|
|
|
<T i18nKey="banned">#</T>
|
|
|
|
</li>
|
|
|
|
)}
|
2019-04-08 05:19:02 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<span>
|
|
|
|
(<span className="text-info">+{node.comment.upvotes}</span>
|
2019-04-08 05:19:02 +00:00
|
|
|
<span> | </span>
|
|
|
|
<span className="text-danger">-{node.comment.downvotes}</span>
|
|
|
|
<span>) </span>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<span>
|
|
|
|
<MomentTime data={node.comment} />
|
|
|
|
</span>
|
2019-04-08 05:19:02 +00:00
|
|
|
</li>
|
2019-07-16 05:56:46 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<div
|
|
|
|
className="pointer text-monospace"
|
|
|
|
onClick={linkEvent(this, this.handleCommentCollapse)}
|
|
|
|
>
|
|
|
|
{this.state.collapsed ? '[+]' : '[-]'}
|
|
|
|
</div>
|
2019-07-16 05:56:46 +00:00
|
|
|
</li>
|
2019-04-08 05:19:02 +00:00
|
|
|
</ul>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.showEdit && (
|
|
|
|
<CommentForm
|
|
|
|
node={node}
|
|
|
|
edit
|
|
|
|
onReplyCancel={this.handleReplyCancel}
|
|
|
|
disabled={this.props.locked}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{!this.state.showEdit && !this.state.collapsed && (
|
2019-04-08 05:19:02 +00:00
|
|
|
<div>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.state.viewSource ? (
|
|
|
|
<pre>{this.commentUnlessRemoved}</pre>
|
|
|
|
) : (
|
|
|
|
<div
|
|
|
|
className="md-div"
|
|
|
|
dangerouslySetInnerHTML={mdToHtml(this.commentUnlessRemoved)}
|
|
|
|
/>
|
|
|
|
)}
|
2019-04-08 05:19:02 +00:00
|
|
|
<ul class="list-inline mb-1 text-muted small font-weight-bold">
|
2020-01-02 03:09:07 +00:00
|
|
|
{this.props.markable && (
|
|
|
|
<li className="list-inline-item">
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleMarkRead)}
|
|
|
|
>
|
|
|
|
{node.comment.read
|
|
|
|
? i18n.t('mark_as_unread')
|
|
|
|
: i18n.t('mark_as_read')}
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
)}
|
2019-10-19 00:20:27 +00:00
|
|
|
{UserService.Instance.user && !this.props.viewOnly && (
|
2019-04-20 04:06:25 +00:00
|
|
|
<>
|
2019-04-08 05:19:02 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleReplyClick)}
|
|
|
|
>
|
|
|
|
<T i18nKey="reply">#</T>
|
|
|
|
</span>
|
2019-04-08 05:19:02 +00:00
|
|
|
</li>
|
2019-04-20 04:06:25 +00:00
|
|
|
<li className="list-inline-item mr-2">
|
2019-10-19 00:20:27 +00:00
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleSaveCommentClick)}
|
|
|
|
>
|
|
|
|
{node.comment.saved ? i18n.t('unsave') : i18n.t('save')}
|
|
|
|
</span>
|
2019-04-20 04:06:25 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.myComment && (
|
2019-04-15 23:12:06 +00:00
|
|
|
<>
|
2019-04-20 04:06:25 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleEditClick)}
|
|
|
|
>
|
|
|
|
<T i18nKey="edit">#</T>
|
|
|
|
</span>
|
2019-04-20 04:06:25 +00:00
|
|
|
</li>
|
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleDeleteClick)}
|
|
|
|
>
|
|
|
|
{!node.comment.deleted
|
|
|
|
? i18n.t('delete')
|
|
|
|
: i18n.t('restore')}
|
2019-04-29 19:14:54 +00:00
|
|
|
</span>
|
2019-04-20 04:06:25 +00:00
|
|
|
</li>
|
|
|
|
</>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2020-01-02 03:09:07 +00:00
|
|
|
<li className="list-inline-item">•</li>
|
|
|
|
<li className="list-inline-item">
|
|
|
|
<span
|
|
|
|
className="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleViewSource)}
|
|
|
|
>
|
|
|
|
<T i18nKey="view_source">#</T>
|
|
|
|
</span>
|
|
|
|
</li>
|
|
|
|
<li className="list-inline-item">
|
|
|
|
<Link
|
|
|
|
className="text-muted"
|
|
|
|
to={`/post/${node.comment.post_id}/comment/${node.comment.id}`}
|
|
|
|
>
|
|
|
|
<T i18nKey="link">#</T>
|
|
|
|
</Link>
|
|
|
|
</li>
|
2019-04-20 04:06:25 +00:00
|
|
|
{/* Admins and mods can remove comments */}
|
2019-10-19 00:20:27 +00:00
|
|
|
{(this.canMod || this.canAdmin) && (
|
2020-01-02 03:09:07 +00:00
|
|
|
<>
|
|
|
|
<li className="list-inline-item">•</li>
|
|
|
|
<li className="list-inline-item">
|
|
|
|
{!node.comment.removed ? (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModRemoveShow
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="remove">#</T>
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModRemoveSubmit
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="restore">#</T>
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
</li>
|
|
|
|
</>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
{/* Mods can ban from community, and appoint as mods to community */}
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.canMod && (
|
2019-04-20 04:06:25 +00:00
|
|
|
<>
|
2019-10-19 00:20:27 +00:00
|
|
|
{!this.isMod && (
|
2019-04-20 04:06:25 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
{!node.comment.banned_from_community ? (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModBanFromCommunityShow
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="ban">#</T>
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModBanFromCommunitySubmit
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="unban">#</T>
|
|
|
|
</span>
|
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
|
|
|
{!node.comment.banned_from_community && (
|
2019-04-20 04:06:25 +00:00
|
|
|
<li className="list-inline-item">
|
2020-01-02 03:09:07 +00:00
|
|
|
{!this.state.showConfirmAppointAsMod ? (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmAppointAsMod
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{this.isMod
|
|
|
|
? i18n.t('remove_as_mod')
|
|
|
|
: i18n.t('appoint_as_mod')}
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<span class="d-inline-block mr-1">
|
|
|
|
<T i18nKey="are_you_sure">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block mr-1"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleAddModToCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="yes">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCancelConfirmAppointAsMod
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="no">#</T>
|
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
</>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-08-29 22:18:50 +00:00
|
|
|
{/* Community creators and admins can transfer community to another mod */}
|
2019-10-19 00:20:27 +00:00
|
|
|
{(this.amCommunityCreator || this.canAdmin) && this.isMod && (
|
2019-08-24 02:40:41 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
{!this.state.showConfirmTransferCommunity ? (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmTransferCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="transfer_community">#</T>
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<span class="d-inline-block mr-1">
|
|
|
|
<T i18nKey="are_you_sure">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block mr-1"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleTransferCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="yes">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCancelShowConfirmTransferCommunity
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="no">#</T>
|
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
)}
|
2019-08-24 02:40:41 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
{/* Admins can ban from all, and appoint other admins */}
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.canAdmin && (
|
2019-04-20 04:06:25 +00:00
|
|
|
<>
|
2019-10-19 00:20:27 +00:00
|
|
|
{!this.isAdmin && (
|
2019-04-15 23:12:06 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
{!node.comment.banned ? (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(this, this.handleModBanShow)}
|
|
|
|
>
|
|
|
|
<T i18nKey="ban_from_site">#</T>
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleModBanSubmit
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="unban_from_site">#</T>
|
|
|
|
</span>
|
|
|
|
)}
|
2019-04-15 23:12:06 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
|
|
|
{!node.comment.banned && (
|
2019-04-20 04:06:25 +00:00
|
|
|
<li className="list-inline-item">
|
2020-01-02 03:09:07 +00:00
|
|
|
{!this.state.showConfirmAppointAsAdmin ? (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmAppointAsAdmin
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
{this.isAdmin
|
|
|
|
? i18n.t('remove_as_admin')
|
|
|
|
: i18n.t('appoint_as_admin')}
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<span class="d-inline-block mr-1">
|
|
|
|
<T i18nKey="are_you_sure">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block mr-1"
|
|
|
|
onClick={linkEvent(this, this.handleAddAdmin)}
|
|
|
|
>
|
|
|
|
<T i18nKey="yes">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCancelConfirmAppointAsAdmin
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="no">#</T>
|
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
</>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-08-24 02:40:41 +00:00
|
|
|
{/* Site Creator can transfer to another admin */}
|
2019-10-19 00:20:27 +00:00
|
|
|
{this.amSiteCreator && this.isAdmin && (
|
2019-08-24 02:40:41 +00:00
|
|
|
<li className="list-inline-item">
|
2019-10-19 00:20:27 +00:00
|
|
|
{!this.state.showConfirmTransferSite ? (
|
|
|
|
<span
|
|
|
|
class="pointer"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleShowConfirmTransferSite
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="transfer_site">#</T>
|
|
|
|
</span>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
<span class="d-inline-block mr-1">
|
|
|
|
<T i18nKey="are_you_sure">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block mr-1"
|
|
|
|
onClick={linkEvent(this, this.handleTransferSite)}
|
|
|
|
>
|
|
|
|
<T i18nKey="yes">#</T>
|
|
|
|
</span>
|
|
|
|
<span
|
|
|
|
class="pointer d-inline-block"
|
|
|
|
onClick={linkEvent(
|
|
|
|
this,
|
|
|
|
this.handleCancelShowConfirmTransferSite
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<T i18nKey="no">#</T>
|
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
)}
|
2019-08-24 02:40:41 +00:00
|
|
|
</li>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-20 04:06:25 +00:00
|
|
|
</>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-08 05:19:02 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-04-08 05:19:02 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
{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">
|
|
|
|
<T i18nKey="remove_comment">#</T>
|
|
|
|
</button>
|
2019-04-15 23:12:06 +00:00
|
|
|
</form>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
|
|
|
{this.state.showBanDialog && (
|
2019-04-20 04:06:25 +00:00
|
|
|
<form onSubmit={linkEvent(this, this.handleModBanBothSubmit)}>
|
|
|
|
<div class="form-group row">
|
2019-10-19 00:20:27 +00:00
|
|
|
<label class="col-form-label">
|
|
|
|
<T i18nKey="reason">#</T>
|
|
|
|
</label>
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
class="form-control mr-2"
|
|
|
|
placeholder={i18n.t('reason')}
|
|
|
|
value={this.state.banReason}
|
|
|
|
onInput={linkEvent(this, this.handleModBanReasonChange)}
|
|
|
|
/>
|
2019-04-20 04:06:25 +00:00
|
|
|
</div>
|
2019-04-22 17:45:50 +00:00
|
|
|
{/* TODO hold off on expires until later */}
|
|
|
|
{/* <div class="form-group row"> */}
|
|
|
|
{/* <label class="col-form-label">Expires</label> */}
|
2019-08-10 00:14:43 +00:00
|
|
|
{/* <input type="date" class="form-control mr-2" placeholder={i18n.t('expires')} value={this.state.banExpires} onInput={linkEvent(this, this.handleModBanExpiresChange)} /> */}
|
2019-04-22 17:45:50 +00:00
|
|
|
{/* </div> */}
|
2019-04-20 04:06:25 +00:00
|
|
|
<div class="form-group row">
|
2019-10-19 00:20:27 +00:00
|
|
|
<button type="submit" class="btn btn-secondary">
|
|
|
|
{i18n.t('ban')} {node.comment.creator_name}
|
|
|
|
</button>
|
2019-04-20 04:06:25 +00:00
|
|
|
</div>
|
|
|
|
</form>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
|
|
|
{this.state.showReply && (
|
|
|
|
<CommentForm
|
|
|
|
node={node}
|
|
|
|
onReplyCancel={this.handleReplyCancel}
|
|
|
|
disabled={this.props.locked}
|
2019-04-20 04:06:25 +00:00
|
|
|
/>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
|
|
|
{node.children && !this.state.collapsed && (
|
|
|
|
<CommentNodes
|
|
|
|
nodes={node.children}
|
|
|
|
locked={this.props.locked}
|
2019-04-20 04:06:25 +00:00
|
|
|
moderators={this.props.moderators}
|
|
|
|
admins={this.props.admins}
|
2019-09-13 15:37:12 +00:00
|
|
|
postCreatorId={this.props.postCreatorId}
|
2019-04-20 04:06:25 +00:00
|
|
|
/>
|
2019-10-19 00:20:27 +00:00
|
|
|
)}
|
2019-07-16 05:56:46 +00:00
|
|
|
{/* A collapsed clearfix */}
|
|
|
|
{this.state.collapsed && <div class="row col-12"></div>}
|
2019-04-08 05:19:02 +00:00
|
|
|
</div>
|
2019-10-19 00:20:27 +00:00
|
|
|
);
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
get myComment(): boolean {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
|
|
|
UserService.Instance.user &&
|
|
|
|
this.props.node.comment.creator_id == UserService.Instance.user.id
|
|
|
|
);
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
get isMod(): boolean {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
|
|
|
this.props.moderators &&
|
|
|
|
isMod(
|
|
|
|
this.props.moderators.map(m => m.user_id),
|
|
|
|
this.props.node.comment.creator_id
|
|
|
|
)
|
|
|
|
);
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get isAdmin(): boolean {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
|
|
|
this.props.admins &&
|
|
|
|
isMod(
|
|
|
|
this.props.admins.map(a => a.id),
|
|
|
|
this.props.node.comment.creator_id
|
|
|
|
)
|
|
|
|
);
|
2019-04-20 04:06:25 +00:00
|
|
|
}
|
|
|
|
|
2019-09-13 15:37:12 +00:00
|
|
|
get isPostCreator(): boolean {
|
|
|
|
return this.props.node.comment.creator_id == this.props.postCreatorId;
|
|
|
|
}
|
|
|
|
|
2019-04-21 20:52:55 +00:00
|
|
|
get canMod(): boolean {
|
2019-04-22 18:32:50 +00:00
|
|
|
if (this.props.admins && this.props.moderators) {
|
2019-10-19 00:20:27 +00:00
|
|
|
let adminsThenMods = this.props.admins
|
|
|
|
.map(a => a.id)
|
|
|
|
.concat(this.props.moderators.map(m => m.user_id));
|
|
|
|
|
|
|
|
return canMod(
|
|
|
|
UserService.Instance.user,
|
|
|
|
adminsThenMods,
|
|
|
|
this.props.node.comment.creator_id
|
|
|
|
);
|
|
|
|
} else {
|
2019-04-22 18:32:50 +00:00
|
|
|
return false;
|
|
|
|
}
|
2019-04-21 20:52:55 +00:00
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
get canAdmin(): boolean {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
|
|
|
this.props.admins &&
|
|
|
|
canMod(
|
|
|
|
UserService.Instance.user,
|
|
|
|
this.props.admins.map(a => a.id),
|
|
|
|
this.props.node.comment.creator_id
|
|
|
|
)
|
|
|
|
);
|
2019-04-15 23:12:06 +00:00
|
|
|
}
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
get amCommunityCreator(): boolean {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
|
|
|
this.props.moderators &&
|
|
|
|
UserService.Instance.user &&
|
|
|
|
this.props.node.comment.creator_id != UserService.Instance.user.id &&
|
|
|
|
UserService.Instance.user.id == this.props.moderators[0].user_id
|
|
|
|
);
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
get amSiteCreator(): boolean {
|
2019-10-19 00:20:27 +00:00
|
|
|
return (
|
|
|
|
this.props.admins &&
|
|
|
|
UserService.Instance.user &&
|
|
|
|
this.props.node.comment.creator_id != UserService.Instance.user.id &&
|
|
|
|
UserService.Instance.user.id == this.props.admins[0].id
|
|
|
|
);
|
2019-08-24 02:40:41 +00:00
|
|
|
}
|
2019-10-19 00:20:27 +00:00
|
|
|
|
|
|
|
get commentUnlessRemoved(): string {
|
2019-09-08 18:00:08 +00:00
|
|
|
let node = this.props.node;
|
2019-10-19 00:20:27 +00:00
|
|
|
return node.comment.removed
|
|
|
|
? `*${i18n.t('removed')}*`
|
|
|
|
: node.comment.deleted
|
|
|
|
? `*${i18n.t('deleted')}*`
|
|
|
|
: node.comment.content;
|
2019-09-08 18:00:08 +00:00
|
|
|
}
|
2019-08-24 02:40:41 +00:00
|
|
|
|
2019-04-08 05:19:02 +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) {
|
|
|
|
let deleteForm: CommentFormI = {
|
2019-04-29 19:14:54 +00:00
|
|
|
content: i.props.node.comment.content,
|
2019-04-08 05:19:02 +00:00
|
|
|
edit_id: i.props.node.comment.id,
|
2019-04-15 23:12:06 +00:00
|
|
|
creator_id: i.props.node.comment.creator_id,
|
2019-04-08 05:19:02 +00:00
|
|
|
post_id: i.props.node.comment.post_id,
|
|
|
|
parent_id: i.props.node.comment.parent_id,
|
2019-04-29 19:14:54 +00:00
|
|
|
deleted: !i.props.node.comment.deleted,
|
2019-10-19 00:20:27 +00:00
|
|
|
auth: null,
|
2019-04-08 05:19:02 +00:00
|
|
|
};
|
|
|
|
WebSocketService.Instance.editComment(deleteForm);
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
handleSaveCommentClick(i: CommentNode) {
|
2019-10-19 00:20:27 +00:00
|
|
|
let saved =
|
|
|
|
i.props.node.comment.saved == undefined
|
|
|
|
? true
|
|
|
|
: !i.props.node.comment.saved;
|
2019-04-20 04:06:25 +00:00
|
|
|
let form: SaveCommentForm = {
|
|
|
|
comment_id: i.props.node.comment.id,
|
2019-10-19 00:20:27 +00:00
|
|
|
save: saved,
|
2019-04-20 04:06:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
WebSocketService.Instance.saveComment(form);
|
|
|
|
}
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
handleReplyCancel() {
|
|
|
|
this.state.showReply = false;
|
|
|
|
this.state.showEdit = false;
|
|
|
|
this.setState(this.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommentLike(i: CommentNodeI) {
|
2020-01-14 03:57:32 +00:00
|
|
|
this.state.my_vote = i.comment.my_vote == 1 ? 0 : 1;
|
|
|
|
let add = 1;
|
|
|
|
if (i.comment.my_vote == 1) {
|
|
|
|
add = -1;
|
|
|
|
} else if (i.comment.my_vote == -1) {
|
|
|
|
add = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.state.score = i.comment.score + add;
|
|
|
|
this.setState(this.state);
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
let form: CommentLikeForm = {
|
|
|
|
comment_id: i.comment.id,
|
|
|
|
post_id: i.comment.post_id,
|
2020-01-14 03:57:32 +00:00
|
|
|
score: this.state.my_vote,
|
2019-04-08 05:19:02 +00:00
|
|
|
};
|
|
|
|
WebSocketService.Instance.likeComment(form);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCommentDisLike(i: CommentNodeI) {
|
2020-01-14 03:57:32 +00:00
|
|
|
this.state.my_vote = i.comment.my_vote == -1 ? 0 : -1;
|
|
|
|
let add = -1;
|
|
|
|
if (i.comment.my_vote == 1) {
|
|
|
|
add = -2;
|
|
|
|
} else if (i.comment.my_vote == -1) {
|
|
|
|
add = 1;
|
|
|
|
}
|
|
|
|
this.state.score = i.comment.score + add;
|
|
|
|
this.setState(this.state);
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
let form: CommentLikeForm = {
|
|
|
|
comment_id: i.comment.id,
|
|
|
|
post_id: i.comment.post_id,
|
2020-01-14 03:57:32 +00:00
|
|
|
score: this.state.my_vote,
|
2019-04-08 05:19:02 +00:00
|
|
|
};
|
|
|
|
WebSocketService.Instance.likeComment(form);
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModRemoveSubmit(i: CommentNode) {
|
2019-04-16 23:04:23 +00:00
|
|
|
event.preventDefault();
|
2019-04-15 23:12:06 +00:00
|
|
|
let form: CommentFormI = {
|
|
|
|
content: i.props.node.comment.content,
|
|
|
|
edit_id: i.props.node.comment.id,
|
|
|
|
creator_id: i.props.node.comment.creator_id,
|
|
|
|
post_id: i.props.node.comment.post_id,
|
|
|
|
parent_id: i.props.node.comment.parent_id,
|
|
|
|
removed: !i.props.node.comment.removed,
|
|
|
|
reason: i.state.removeReason,
|
2019-10-19 00:20:27 +00:00
|
|
|
auth: null,
|
2019-04-15 23:12:06 +00:00
|
|
|
};
|
|
|
|
WebSocketService.Instance.editComment(form);
|
|
|
|
|
|
|
|
i.state.showRemoveDialog = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
handleMarkRead(i: CommentNode) {
|
2019-10-20 00:46:29 +00:00
|
|
|
// if it has a user_mention_id field, then its a mention
|
|
|
|
if (i.props.node.comment.user_mention_id) {
|
|
|
|
let form: EditUserMentionForm = {
|
|
|
|
user_mention_id: i.props.node.comment.user_mention_id,
|
|
|
|
read: !i.props.node.comment.read,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.editUserMention(form);
|
|
|
|
} else {
|
|
|
|
let form: CommentFormI = {
|
|
|
|
content: i.props.node.comment.content,
|
|
|
|
edit_id: i.props.node.comment.id,
|
|
|
|
creator_id: i.props.node.comment.creator_id,
|
|
|
|
post_id: i.props.node.comment.post_id,
|
|
|
|
parent_id: i.props.node.comment.parent_id,
|
|
|
|
read: !i.props.node.comment.read,
|
|
|
|
auth: null,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.editComment(form);
|
|
|
|
}
|
2019-04-20 18:17:00 +00:00
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
handleModBanFromCommunityShow(i: CommentNode) {
|
2020-01-02 03:09:07 +00:00
|
|
|
i.state.showBanDialog = !i.state.showBanDialog;
|
2019-04-20 04:06:25 +00:00
|
|
|
i.state.banType = BanType.Community;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
handleModBanShow(i: CommentNode) {
|
2020-01-02 03:09:07 +00:00
|
|
|
i.state.showBanDialog = !i.state.showBanDialog;
|
2019-04-20 04:06:25 +00:00
|
|
|
i.state.banType = BanType.Site;
|
2019-04-15 23:12:06 +00:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2019-04-20 04:06:25 +00:00
|
|
|
handleModBanFromCommunitySubmit(i: CommentNode) {
|
|
|
|
i.state.banType = BanType.Community;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.handleModBanBothSubmit(i);
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
handleModBanSubmit(i: CommentNode) {
|
2019-04-20 04:06:25 +00:00
|
|
|
i.state.banType = BanType.Site;
|
|
|
|
i.setState(i.state);
|
|
|
|
i.handleModBanBothSubmit(i);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleModBanBothSubmit(i: CommentNode) {
|
2019-04-16 23:04:23 +00:00
|
|
|
event.preventDefault();
|
2019-04-20 04:06:25 +00:00
|
|
|
|
|
|
|
if (i.state.banType == BanType.Community) {
|
|
|
|
let form: BanFromCommunityForm = {
|
|
|
|
user_id: i.props.node.comment.creator_id,
|
|
|
|
community_id: i.props.node.comment.community_id,
|
|
|
|
ban: !i.props.node.comment.banned_from_community,
|
|
|
|
reason: i.state.banReason,
|
|
|
|
expires: getUnixTime(i.state.banExpires),
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.banFromCommunity(form);
|
|
|
|
} else {
|
|
|
|
let form: BanUserForm = {
|
|
|
|
user_id: i.props.node.comment.creator_id,
|
|
|
|
ban: !i.props.node.comment.banned,
|
|
|
|
reason: i.state.banReason,
|
|
|
|
expires: getUnixTime(i.state.banExpires),
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.banUser(form);
|
|
|
|
}
|
2019-04-15 23:12:06 +00:00
|
|
|
|
|
|
|
i.state.showBanDialog = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2020-01-02 03:09:07 +00:00
|
|
|
handleShowConfirmAppointAsMod(i: CommentNode) {
|
|
|
|
i.state.showConfirmAppointAsMod = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
|
|
|
handleCancelConfirmAppointAsMod(i: CommentNode) {
|
|
|
|
i.state.showConfirmAppointAsMod = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-04-15 23:12:06 +00:00
|
|
|
handleAddModToCommunity(i: CommentNode) {
|
|
|
|
let form: AddModToCommunityForm = {
|
|
|
|
user_id: i.props.node.comment.creator_id,
|
|
|
|
community_id: i.props.node.comment.community_id,
|
|
|
|
added: !i.isMod,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.addModToCommunity(form);
|
2020-01-02 03:09:07 +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;
|
2019-04-15 23:12:06 +00:00
|
|
|
i.setState(i.state);
|
|
|
|
}
|
2019-04-20 04:06:25 +00:00
|
|
|
|
2019-04-20 18:17:00 +00:00
|
|
|
handleAddAdmin(i: CommentNode) {
|
2019-04-20 04:06:25 +00:00
|
|
|
let form: AddAdminForm = {
|
|
|
|
user_id: i.props.node.comment.creator_id,
|
|
|
|
added: !i.isAdmin,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.addAdmin(form);
|
2020-01-02 03:09:07 +00:00
|
|
|
i.state.showConfirmAppointAsAdmin = false;
|
2019-04-20 04:06:25 +00:00
|
|
|
i.setState(i.state);
|
|
|
|
}
|
2019-04-24 16:58:45 +00:00
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
handleShowConfirmTransferCommunity(i: CommentNode) {
|
2019-08-29 02:22:50 +00:00
|
|
|
i.state.showConfirmTransferCommunity = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
handleCancelShowConfirmTransferCommunity(i: CommentNode) {
|
2019-08-29 02:22:50 +00:00
|
|
|
i.state.showConfirmTransferCommunity = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
handleTransferCommunity(i: CommentNode) {
|
|
|
|
let form: TransferCommunityForm = {
|
|
|
|
community_id: i.props.node.comment.community_id,
|
|
|
|
user_id: i.props.node.comment.creator_id,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.transferCommunity(form);
|
2019-08-29 22:18:50 +00:00
|
|
|
i.state.showConfirmTransferCommunity = false;
|
2019-08-24 02:40:41 +00:00
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
handleShowConfirmTransferSite(i: CommentNode) {
|
2019-08-29 02:22:50 +00:00
|
|
|
i.state.showConfirmTransferSite = true;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-10-19 00:20:27 +00:00
|
|
|
handleCancelShowConfirmTransferSite(i: CommentNode) {
|
2019-08-29 02:22:50 +00:00
|
|
|
i.state.showConfirmTransferSite = false;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-08-24 02:40:41 +00:00
|
|
|
handleTransferSite(i: CommentNode) {
|
|
|
|
let form: TransferSiteForm = {
|
|
|
|
user_id: i.props.node.comment.creator_id,
|
|
|
|
};
|
|
|
|
WebSocketService.Instance.transferSite(form);
|
2019-08-29 22:18:50 +00:00
|
|
|
i.state.showConfirmTransferSite = false;
|
2019-08-24 02:40:41 +00:00
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
|
2019-04-24 16:58:45 +00:00
|
|
|
get isCommentNew(): boolean {
|
|
|
|
let now = moment.utc().subtract(10, 'minutes');
|
|
|
|
let then = moment.utc(this.props.node.comment.published);
|
|
|
|
return now.isBefore(then);
|
|
|
|
}
|
2019-07-16 05:56:46 +00:00
|
|
|
|
|
|
|
handleCommentCollapse(i: CommentNode) {
|
|
|
|
i.state.collapsed = !i.state.collapsed;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
2019-09-08 18:00:08 +00:00
|
|
|
|
|
|
|
handleViewSource(i: CommentNode) {
|
|
|
|
i.state.viewSource = !i.state.viewSource;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
2019-04-08 05:19:02 +00:00
|
|
|
}
|