{(this.canMod_ || this.canAdmin_) && (
<li>{this.modRemoveButton}</li>
)}
+
+ {this.canMod_ && (
+ <>
+ <li>
+ <hr className="dropdown-divider" />
+ </li>
+ {!this.creatorIsMod_ &&
+ (!post_view.creator_banned_from_community ? (
+ <li>{this.modBanFromCommunityButton}</li>
+ ) : (
+ <li>{this.modUnbanFromCommunityButton}</li>
+ ))}
+ {!post_view.creator_banned_from_community && (
+ <li>{this.addModToCommunityButton}</li>
+ )}
+ </>
+ )}
+
+ {(amCommunityCreator(post_view.creator.id, this.props.moderators) ||
+ this.canAdmin_) &&
+ this.creatorIsMod_ && <li>{this.transferCommunityButton}</li>}
+
+ {/* Admins can ban from all, and appoint other admins */}
+ {this.canAdmin_ && (
+ <>
+ <li>
+ <hr className="dropdown-divider" />
+ </li>
+ {!this.creatorIsAdmin_ && (
+ <>
+ {!isBanned(post_view.creator) ? (
+ <li>{this.modBanButton}</li>
+ ) : (
+ <li>{this.modUnbanButton}</li>
+ )}
+ <li>{this.purgePersonButton}</li>
+ <li>{this.purgePostButton}</li>
+ </>
+ )}
+ {!isBanned(post_view.creator) && post_view.creator.local && (
+ <li>{this.toggleAdminButton}</li>
+ )}
+ </>
+ )}
</ul>
</div>
</>
get modBanFromCommunityButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleModBanFromCommunityShow)}
- aria-label={I18NextService.i18n.t("ban_from_community")}
>
{I18NextService.i18n.t("ban_from_community")}
</button>
get modUnbanFromCommunityButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleModBanFromCommunitySubmit)}
- aria-label={I18NextService.i18n.t("unban")}
>
{this.state.banLoading ? <Spinner /> : I18NextService.i18n.t("unban")}
</button>
get addModToCommunityButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleAddModToCommunity)}
- aria-label={
- this.creatorIsMod_
- ? I18NextService.i18n.t("remove_as_mod")
- : I18NextService.i18n.t("appoint_as_mod")
- }
>
{this.state.addModLoading ? (
<Spinner />
) : this.creatorIsMod_ ? (
- I18NextService.i18n.t("remove_as_mod")
+ capitalizeFirstLetter(I18NextService.i18n.t("remove_as_mod"))
) : (
- I18NextService.i18n.t("appoint_as_mod")
+ capitalizeFirstLetter(I18NextService.i18n.t("appoint_as_mod"))
)}
</button>
);
get modBanButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleModBanShow)}
- aria-label={I18NextService.i18n.t("ban_from_site")}
>
- {I18NextService.i18n.t("ban_from_site")}
+ {capitalizeFirstLetter(I18NextService.i18n.t("ban_from_site"))}
</button>
);
}
get modUnbanButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleModBanSubmit)}
- aria-label={I18NextService.i18n.t("unban_from_site")}
>
{this.state.banLoading ? (
<Spinner />
) : (
- I18NextService.i18n.t("unban_from_site")
+ capitalizeFirstLetter(I18NextService.i18n.t("unban_from_site"))
)}
</button>
);
get purgePersonButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handlePurgePersonShow)}
- aria-label={I18NextService.i18n.t("purge_user")}
>
- {I18NextService.i18n.t("purge_user")}
+ {capitalizeFirstLetter(I18NextService.i18n.t("purge_user"))}
</button>
);
}
get purgePostButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handlePurgePostShow)}
- aria-label={I18NextService.i18n.t("purge_post")}
>
- {I18NextService.i18n.t("purge_post")}
+ {capitalizeFirstLetter(I18NextService.i18n.t("purge_post"))}
</button>
);
}
get toggleAdminButton() {
return (
<button
- className="btn btn-link btn-animate text-muted py-0"
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
onClick={linkEvent(this, this.handleAddAdmin)}
>
{this.state.addAdminLoading ? (
<Spinner />
) : this.creatorIsAdmin_ ? (
- I18NextService.i18n.t("remove_as_admin")
+ capitalizeFirstLetter(I18NextService.i18n.t("remove_as_admin"))
) : (
- I18NextService.i18n.t("appoint_as_admin")
+ capitalizeFirstLetter(I18NextService.i18n.t("appoint_as_admin"))
)}
</button>
);
}
+ get transferCommunityButton() {
+ return (
+ <button
+ className="btn btn-link btn-sm d-flex align-items-center rounded-0 dropdown-item"
+ onClick={linkEvent(this, this.handleShowConfirmTransferCommunity)}
+ >
+ {capitalizeFirstLetter(I18NextService.i18n.t("transfer_community"))}
+ </button>
+ );
+ }
+
get modRemoveButton() {
const removed = this.postView.post.removed;
return (
{this.state.removeLoading ? (
<Spinner />
) : !removed ? (
- I18NextService.i18n.t("remove")
+ capitalizeFirstLetter(I18NextService.i18n.t("remove_post"))
) : (
- I18NextService.i18n.t("restore")
+ <>
+ {capitalizeFirstLetter(I18NextService.i18n.t("restore"))}{" "}
+ {I18NextService.i18n.t("post")}
+ </>
)}
</button>
);
}
- /**
- * Mod/Admin actions to be taken against the author.
- */
- userActionsLine() {
- // TODO: make nicer
- const post_view = this.postView;
- return (
- this.state.showAdvanced && (
- <div className="mt-3">
- {this.canMod_ && (
- <>
- {!this.creatorIsMod_ &&
- (!post_view.creator_banned_from_community
- ? this.modBanFromCommunityButton
- : this.modUnbanFromCommunityButton)}
- {!post_view.creator_banned_from_community &&
- this.addModToCommunityButton}
- </>
- )}
-
- {/* Community creators and admins can transfer community to another mod */}
- {(amCommunityCreator(post_view.creator.id, this.props.moderators) ||
- this.canAdmin_) &&
- this.creatorIsMod_ &&
- (!this.state.showConfirmTransferCommunity ? (
- <button
- className="btn btn-link btn-animate text-muted py-0"
- onClick={linkEvent(
- this,
- this.handleShowConfirmTransferCommunity
- )}
- aria-label={I18NextService.i18n.t("transfer_community")}
- >
- {I18NextService.i18n.t("transfer_community")}
- </button>
- ) : (
- <>
- <button
- className="d-inline-block me-1 btn btn-link btn-animate text-muted py-0"
- aria-label={I18NextService.i18n.t("are_you_sure")}
- >
- {I18NextService.i18n.t("are_you_sure")}
- </button>
- <button
- className="btn btn-link btn-animate text-muted py-0 d-inline-block me-1"
- aria-label={I18NextService.i18n.t("yes")}
- onClick={linkEvent(this, this.handleTransferCommunity)}
- >
- {this.state.transferLoading ? (
- <Spinner />
- ) : (
- I18NextService.i18n.t("yes")
- )}
- </button>
- <button
- className="btn btn-link btn-animate text-muted py-0 d-inline-block"
- onClick={linkEvent(
- this,
- this.handleCancelShowConfirmTransferCommunity
- )}
- aria-label={I18NextService.i18n.t("no")}
- >
- {I18NextService.i18n.t("no")}
- </button>
- </>
- ))}
- {/* Admins can ban from all, and appoint other admins */}
- {this.canAdmin_ && (
- <>
- {!this.creatorIsAdmin_ && (
- <>
- {!isBanned(post_view.creator)
- ? this.modBanButton
- : this.modUnbanButton}
- {this.purgePersonButton}
- {this.purgePostButton}
- </>
- )}
- {!isBanned(post_view.creator) &&
- post_view.creator.local &&
- this.toggleAdminButton}
- </>
- )}
- </div>
- )
- );
- }
-
removeAndBanDialogs() {
const post = this.postView;
const purgeTypeText =
value={this.state.removeReason}
onInput={linkEvent(this, this.handleModRemoveReasonChange)}
/>
- <button
- type="submit"
- className="btn btn-secondary"
- aria-label={I18NextService.i18n.t("remove_post")}
- >
+ <button type="submit" className="btn btn-secondary">
{this.state.removeLoading ? (
<Spinner />
) : (
</button>
</form>
)}
+ {this.state.showConfirmTransferCommunity && (
+ <>
+ <button className="d-inline-block me-1 btn btn-link btn-animate text-muted py-0">
+ {I18NextService.i18n.t("are_you_sure")}
+ </button>
+ <button
+ className="btn btn-link btn-animate text-muted py-0 d-inline-block me-1"
+ onClick={linkEvent(this, this.handleTransferCommunity)}
+ >
+ {this.state.transferLoading ? (
+ <Spinner />
+ ) : (
+ I18NextService.i18n.t("yes")
+ )}
+ </button>
+ <button
+ className="btn btn-link btn-animate text-muted py-0 d-inline-block"
+ onClick={linkEvent(
+ this,
+ this.handleCancelShowConfirmTransferCommunity
+ )}
+ aria-label={I18NextService.i18n.t("no")}
+ >
+ {I18NextService.i18n.t("no")}
+ </button>
+ </>
+ )}
{this.state.showBanDialog && (
<form onSubmit={linkEvent(this, this.handleModBanBothSubmit)}>
<div className="mb-3 row col-12">
{/* <input type="date" class="form-control me-2" placeholder={I18NextService.i18n.t('expires')} value={this.state.banExpires} onInput={linkEvent(this, this.handleModBanExpiresChange)} /> */}
{/* </div> */}
<div className="mb-3 row">
- <button
- type="submit"
- className="btn btn-secondary"
- aria-label={I18NextService.i18n.t("ban")}
- >
+ <button type="submit" className="btn btn-secondary">
{this.state.banLoading ? (
<Spinner />
) : (
value={this.state.reportReason}
onInput={linkEvent(this, this.handleReportReasonChange)}
/>
- <button
- type="submit"
- className="btn btn-secondary"
- aria-label={I18NextService.i18n.t("create_report")}
- >
+ <button type="submit" className="btn btn-secondary">
{this.state.reportLoading ? (
<Spinner />
) : (
{this.state.purgeLoading ? (
<Spinner />
) : (
- <button
- type="submit"
- className="btn btn-secondary"
- aria-label={purgeTypeText}
- >
+ <button type="submit" className="btn btn-secondary">
{this.state.purgeLoading ? <Spinner /> : { purgeTypeText }}
</button>
)}
{this.mobileThumbnail()}
{this.commentsLine(true)}
- {this.userActionsLine()}
{this.duplicatesLine()}
{this.removeAndBanDialogs()}
</div>
{this.createdLine()}
{this.commentsLine()}
{this.duplicatesLine()}
- {this.userActionsLine()}
{this.removeAndBanDialogs()}
</div>
</div>