mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-22 14:45:20 +00:00
Merge branch 'main' into fix/h1-page-titles
This commit is contained in:
commit
7b34022e0d
|
@ -254,10 +254,6 @@ hr {
|
||||||
-ms-filter: blur(10px);
|
-ms-filter: blur(10px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.img-cover {
|
|
||||||
object-fit: cover;
|
|
||||||
}
|
|
||||||
|
|
||||||
.img-expanded {
|
.img-expanded {
|
||||||
max-height: 90vh;
|
max-height: 90vh;
|
||||||
}
|
}
|
||||||
|
@ -350,10 +346,12 @@ br.big {
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar-overlay {
|
.avatar-overlay {
|
||||||
width: 20%;
|
width: 20vw;
|
||||||
height: 20%;
|
height: 20vw;
|
||||||
max-width: 120px;
|
max-width: 120px;
|
||||||
max-height: 120px;
|
max-height: 120px;
|
||||||
|
min-width: 80px;
|
||||||
|
min-height: 80px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.avatar-pushup {
|
.avatar-pushup {
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import { setIsoData } from "@utils/app";
|
import { setIsoData } from "@utils/app";
|
||||||
|
import { removeAuthParam } from "@utils/helpers";
|
||||||
import { Component } from "inferno";
|
import { Component } from "inferno";
|
||||||
import { T } from "inferno-i18next-dess";
|
import { T } from "inferno-i18next-dess";
|
||||||
import { Link } from "inferno-router";
|
import { Link } from "inferno-router";
|
||||||
|
@ -58,7 +59,7 @@ export class ErrorPage extends Component<any, any> {
|
||||||
<T
|
<T
|
||||||
i18nKey="error_code_message"
|
i18nKey="error_code_message"
|
||||||
parent="p"
|
parent="p"
|
||||||
interpolation={{ error: errorPageData.error }}
|
interpolation={{ error: removeAuthParam(errorPageData.error) }}
|
||||||
>
|
>
|
||||||
#<strong className="text-danger">#</strong>#
|
#<strong className="text-danger">#</strong>#
|
||||||
</T>
|
</T>
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
import { randomStr } from "@utils/helpers";
|
import { randomStr } from "@utils/helpers";
|
||||||
|
import classNames from "classnames";
|
||||||
import { Component, linkEvent } from "inferno";
|
import { Component, linkEvent } from "inferno";
|
||||||
import { HttpService, I18NextService, UserService } from "../../services";
|
import { HttpService, I18NextService, UserService } from "../../services";
|
||||||
import { toast } from "../../toast";
|
import { toast } from "../../toast";
|
||||||
|
@ -33,38 +34,35 @@ export class ImageUploadForm extends Component<
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<form className="image-upload-form d-inline">
|
<form className="image-upload-form d-inline">
|
||||||
<label htmlFor={this.id} className="pointer text-muted small fw-bold">
|
{this.props.imageSrc && (
|
||||||
{this.props.imageSrc ? (
|
<span className="d-inline-block position-relative mb-2">
|
||||||
<span className="d-inline-block position-relative">
|
{/* TODO: Create "Current Iamge" translation for alt text */}
|
||||||
{/* TODO: Create "Current Iamge" translation for alt text */}
|
<img
|
||||||
<img
|
alt=""
|
||||||
alt=""
|
src={this.props.imageSrc}
|
||||||
src={this.props.imageSrc}
|
height={this.props.rounded ? 60 : ""}
|
||||||
height={this.props.rounded ? 60 : ""}
|
width={this.props.rounded ? 60 : ""}
|
||||||
width={this.props.rounded ? 60 : ""}
|
className={classNames({
|
||||||
className={`img-fluid ${
|
"rounded-circle object-fit-cover": this.props.rounded,
|
||||||
this.props.rounded ? "rounded-circle" : ""
|
"img-fluid": !this.props.rounded,
|
||||||
}`}
|
})}
|
||||||
/>
|
/>
|
||||||
<button
|
<button
|
||||||
className="position-absolute d-block p-0 end-0 border-0 top-0 bg-transparent text-white"
|
className="position-absolute d-block p-0 end-0 border-0 top-0 bg-transparent text-white"
|
||||||
type="button"
|
type="button"
|
||||||
onClick={linkEvent(this, this.handleRemoveImage)}
|
onClick={linkEvent(this, this.handleRemoveImage)}
|
||||||
aria-label={I18NextService.i18n.t("remove")}
|
aria-label={I18NextService.i18n.t("remove")}
|
||||||
>
|
>
|
||||||
<Icon icon="x" classes="mini-overlay" />
|
<Icon icon="x" classes="mini-overlay" />
|
||||||
</button>
|
</button>
|
||||||
</span>
|
</span>
|
||||||
) : (
|
)}
|
||||||
<span className="btn btn-secondary">{this.props.uploadTitle}</span>
|
|
||||||
)}
|
|
||||||
</label>
|
|
||||||
<input
|
<input
|
||||||
id={this.id}
|
id={this.id}
|
||||||
type="file"
|
type="file"
|
||||||
accept="image/*,video/*"
|
accept="image/*,video/*"
|
||||||
|
className="small form-control"
|
||||||
name={this.id}
|
name={this.id}
|
||||||
className="d-none"
|
|
||||||
disabled={!UserService.Instance.myUserInfo}
|
disabled={!UserService.Instance.myUserInfo}
|
||||||
onChange={linkEvent(this, this.handleImageUpload)}
|
onChange={linkEvent(this, this.handleImageUpload)}
|
||||||
/>
|
/>
|
||||||
|
|
|
@ -173,6 +173,9 @@ export class MarkdownTextArea extends Component<
|
||||||
<form className="btn btn-sm text-muted fw-bold">
|
<form className="btn btn-sm text-muted fw-bold">
|
||||||
<label
|
<label
|
||||||
htmlFor={`file-upload-${this.id}`}
|
htmlFor={`file-upload-${this.id}`}
|
||||||
|
// TODO: Fix this linting violation
|
||||||
|
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
||||||
|
tabIndex={0}
|
||||||
className={`mb-0 ${
|
className={`mb-0 ${
|
||||||
UserService.Instance.myUserInfo && "pointer"
|
UserService.Instance.myUserInfo && "pointer"
|
||||||
}`}
|
}`}
|
||||||
|
@ -702,18 +705,20 @@ export class MarkdownTextArea extends Component<
|
||||||
quoteInsert() {
|
quoteInsert() {
|
||||||
const textarea: any = document.getElementById(this.id);
|
const textarea: any = document.getElementById(this.id);
|
||||||
const selectedText = window.getSelection()?.toString();
|
const selectedText = window.getSelection()?.toString();
|
||||||
const { content } = this.state;
|
let { content } = this.state;
|
||||||
if (selectedText) {
|
if (selectedText) {
|
||||||
const quotedText =
|
const quotedText =
|
||||||
selectedText
|
selectedText
|
||||||
.split("\n")
|
.split("\n")
|
||||||
.map(t => `> ${t}`)
|
.map(t => `> ${t}`)
|
||||||
.join("\n") + "\n\n";
|
.join("\n") + "\n\n";
|
||||||
|
|
||||||
if (!content) {
|
if (!content) {
|
||||||
this.setState({ content: "" });
|
content = "";
|
||||||
} else {
|
} else {
|
||||||
this.setState({ content: `${content}\n` });
|
content = `${content}\n\n`;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setState({
|
this.setState({
|
||||||
content: `${content}${quotedText}`,
|
content: `${content}${quotedText}`,
|
||||||
});
|
});
|
||||||
|
|
|
@ -34,13 +34,13 @@ export class PictrsImage extends Component<PictrsImageProps, any> {
|
||||||
className={classNames("overflow-hidden pictrs-image", {
|
className={classNames("overflow-hidden pictrs-image", {
|
||||||
"img-fluid": !this.props.icon && !this.props.iconOverlay,
|
"img-fluid": !this.props.icon && !this.props.iconOverlay,
|
||||||
banner: this.props.banner,
|
banner: this.props.banner,
|
||||||
"thumbnail rounded":
|
"thumbnail rounded object-fit-cover":
|
||||||
this.props.thumbnail && !this.props.icon && !this.props.banner,
|
this.props.thumbnail && !this.props.icon && !this.props.banner,
|
||||||
"img-expanded slight-radius":
|
"img-expanded slight-radius":
|
||||||
!this.props.thumbnail && !this.props.icon,
|
!this.props.thumbnail && !this.props.icon,
|
||||||
"img-blur": this.props.thumbnail && this.props.nsfw,
|
"img-blur": this.props.thumbnail && this.props.nsfw,
|
||||||
"img-cover img-icon me-1": this.props.icon,
|
"object-fit-cover img-icon me-1": this.props.icon,
|
||||||
"ms-2 mb-0 rounded-circle img-cover avatar-overlay":
|
"ms-2 mb-0 rounded-circle object-fit-cover avatar-overlay":
|
||||||
this.props.iconOverlay,
|
this.props.iconOverlay,
|
||||||
"avatar-pushup": this.props.pushup,
|
"avatar-pushup": this.props.pushup,
|
||||||
})}
|
})}
|
||||||
|
|
|
@ -64,8 +64,6 @@ const handleUpvote = (i: VoteButtons) => {
|
||||||
auth: myAuthRequired(),
|
auth: myAuthRequired(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
i.setState({ upvoteLoading: false });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleDownvote = (i: VoteButtons) => {
|
const handleDownvote = (i: VoteButtons) => {
|
||||||
|
@ -86,7 +84,6 @@ const handleDownvote = (i: VoteButtons) => {
|
||||||
auth: myAuthRequired(),
|
auth: myAuthRequired(),
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
i.setState({ downvoteLoading: false });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
export class VoteButtonsCompact extends Component<
|
export class VoteButtonsCompact extends Component<
|
||||||
|
@ -102,6 +99,15 @@ export class VoteButtonsCompact extends Component<
|
||||||
super(props, context);
|
super(props, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentWillReceiveProps(nextProps: VoteButtonsProps) {
|
||||||
|
if (this.props !== nextProps) {
|
||||||
|
this.setState({
|
||||||
|
upvoteLoading: false,
|
||||||
|
downvoteLoading: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
|
@ -172,6 +178,15 @@ export class VoteButtons extends Component<VoteButtonsProps, VoteButtonsState> {
|
||||||
super(props, context);
|
super(props, context);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
componentWillReceiveProps(nextProps: VoteButtonsProps) {
|
||||||
|
if (this.props !== nextProps) {
|
||||||
|
this.setState({
|
||||||
|
upvoteLoading: false,
|
||||||
|
downvoteLoading: false,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<div className="vote-bar small text-center">
|
<div className="vote-bar small text-center">
|
||||||
|
|
|
@ -258,7 +258,7 @@ export class Sidebar extends Component<SidebarProps, SidebarState> {
|
||||||
<Spinner />
|
<Spinner />
|
||||||
) : (
|
) : (
|
||||||
<>
|
<>
|
||||||
<Icon icon="check" classes="icon-inline text-success me-1" />
|
<Icon icon="check" classes="icon-inline me-1" />
|
||||||
{I18NextService.i18n.t("joined")}
|
{I18NextService.i18n.t("joined")}
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
|
|
@ -87,7 +87,10 @@ export class EmojiForm extends Component<EmojiFormProps, EmojiFormState> {
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
<div className="table-responsive">
|
<div className="table-responsive">
|
||||||
<table id="emojis_table" className="table table-sm table-hover">
|
<table
|
||||||
|
id="emojis_table"
|
||||||
|
className="table table-sm table-hover align-middle"
|
||||||
|
>
|
||||||
<thead className="pointer">
|
<thead className="pointer">
|
||||||
<tr>
|
<tr>
|
||||||
<th>{I18NextService.i18n.t("column_emoji")}</th>
|
<th>{I18NextService.i18n.t("column_emoji")}</th>
|
||||||
|
@ -129,30 +132,31 @@ export class EmojiForm extends Component<EmojiFormProps, EmojiFormState> {
|
||||||
/>
|
/>
|
||||||
)}
|
)}
|
||||||
{cv.image_url.length === 0 && (
|
{cv.image_url.length === 0 && (
|
||||||
<form>
|
<label
|
||||||
<label
|
// TODO: Fix this linting violation
|
||||||
className="btn btn-sm btn-secondary pointer"
|
// eslint-disable-next-line jsx-a11y/no-noninteractive-tabindex
|
||||||
htmlFor={`file-uploader-${index}`}
|
tabIndex={0}
|
||||||
data-tippy-content={I18NextService.i18n.t(
|
className="btn btn-sm btn-secondary pointer"
|
||||||
"upload_image"
|
htmlFor={`file-uploader-${index}`}
|
||||||
|
data-tippy-content={I18NextService.i18n.t(
|
||||||
|
"upload_image"
|
||||||
|
)}
|
||||||
|
>
|
||||||
|
{capitalizeFirstLetter(
|
||||||
|
I18NextService.i18n.t("upload")
|
||||||
|
)}
|
||||||
|
<input
|
||||||
|
name={`file-uploader-${index}`}
|
||||||
|
id={`file-uploader-${index}`}
|
||||||
|
type="file"
|
||||||
|
accept="image/*"
|
||||||
|
className="d-none"
|
||||||
|
onChange={linkEvent(
|
||||||
|
{ form: this, index: index },
|
||||||
|
this.handleImageUpload
|
||||||
)}
|
)}
|
||||||
>
|
/>
|
||||||
{capitalizeFirstLetter(
|
</label>
|
||||||
I18NextService.i18n.t("upload")
|
|
||||||
)}
|
|
||||||
<input
|
|
||||||
name={`file-uploader-${index}`}
|
|
||||||
id={`file-uploader-${index}`}
|
|
||||||
type="file"
|
|
||||||
accept="image/*"
|
|
||||||
className="d-none"
|
|
||||||
onChange={linkEvent(
|
|
||||||
{ form: this, index: index },
|
|
||||||
this.handleImageUpload
|
|
||||||
)}
|
|
||||||
/>
|
|
||||||
</label>
|
|
||||||
</form>
|
|
||||||
)}
|
)}
|
||||||
</td>
|
</td>
|
||||||
<td className="text-right">
|
<td className="text-right">
|
||||||
|
|
|
@ -158,28 +158,32 @@ export class SiteForm extends Component<SiteFormProps, SiteFormState> {
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="input-group mb-3">
|
<div className="row mb-3">
|
||||||
<label className="me-2 col-form-label">
|
<label className="col-sm-2 col-form-label">
|
||||||
{I18NextService.i18n.t("icon")}
|
{I18NextService.i18n.t("icon")}
|
||||||
</label>
|
</label>
|
||||||
<ImageUploadForm
|
<div className="col-sm-10">
|
||||||
uploadTitle={I18NextService.i18n.t("upload_icon")}
|
<ImageUploadForm
|
||||||
imageSrc={this.state.siteForm.icon}
|
uploadTitle={I18NextService.i18n.t("upload_icon")}
|
||||||
onUpload={this.handleIconUpload}
|
imageSrc={this.state.siteForm.icon}
|
||||||
onRemove={this.handleIconRemove}
|
onUpload={this.handleIconUpload}
|
||||||
rounded
|
onRemove={this.handleIconRemove}
|
||||||
/>
|
rounded
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="input-group mb-3">
|
<div className="row mb-3">
|
||||||
<label className="me-2 col-form-label">
|
<label className="col-sm-2 col-form-label">
|
||||||
{I18NextService.i18n.t("banner")}
|
{I18NextService.i18n.t("banner")}
|
||||||
</label>
|
</label>
|
||||||
<ImageUploadForm
|
<div className="col-sm-10">
|
||||||
uploadTitle={I18NextService.i18n.t("upload_banner")}
|
<ImageUploadForm
|
||||||
imageSrc={this.state.siteForm.banner}
|
uploadTitle={I18NextService.i18n.t("upload_banner")}
|
||||||
onUpload={this.handleBannerUpload}
|
imageSrc={this.state.siteForm.banner}
|
||||||
onRemove={this.handleBannerRemove}
|
onUpload={this.handleBannerUpload}
|
||||||
/>
|
onRemove={this.handleBannerRemove}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div className="mb-3 row">
|
<div className="mb-3 row">
|
||||||
<label className="col-12 col-form-label" htmlFor="site-desc">
|
<label className="col-12 col-form-label" htmlFor="site-desc">
|
||||||
|
|
|
@ -349,32 +349,12 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
||||||
<input
|
<input
|
||||||
type="url"
|
type="url"
|
||||||
id="post-url"
|
id="post-url"
|
||||||
className="form-control"
|
className="form-control mb-3"
|
||||||
value={url}
|
value={url}
|
||||||
onInput={linkEvent(this, handlePostUrlChange)}
|
onInput={linkEvent(this, handlePostUrlChange)}
|
||||||
onPaste={linkEvent(this, handleImageUploadPaste)}
|
onPaste={linkEvent(this, handleImageUploadPaste)}
|
||||||
/>
|
/>
|
||||||
{this.renderSuggestedTitleCopy()}
|
{this.renderSuggestedTitleCopy()}
|
||||||
<form>
|
|
||||||
<label
|
|
||||||
htmlFor="file-upload"
|
|
||||||
className={`${
|
|
||||||
UserService.Instance.myUserInfo && "pointer"
|
|
||||||
} d-inline-block float-right text-muted fw-bold`}
|
|
||||||
data-tippy-content={I18NextService.i18n.t("upload_image")}
|
|
||||||
>
|
|
||||||
<Icon icon="image" classes="icon-inline" />
|
|
||||||
</label>
|
|
||||||
<input
|
|
||||||
id="file-upload"
|
|
||||||
type="file"
|
|
||||||
accept="image/*,video/*"
|
|
||||||
name="file"
|
|
||||||
className="d-none"
|
|
||||||
disabled={!UserService.Instance.myUserInfo}
|
|
||||||
onChange={linkEvent(this, handleImageUpload)}
|
|
||||||
/>
|
|
||||||
</form>
|
|
||||||
{url && validURL(url) && (
|
{url && validURL(url) && (
|
||||||
<div>
|
<div>
|
||||||
<a
|
<a
|
||||||
|
@ -404,56 +384,73 @@ export class PostForm extends Component<PostFormProps, PostFormState> {
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="mb-3 row">
|
||||||
|
<label htmlFor="file-upload" className={"col-sm-2 col-form-label"}>
|
||||||
|
{capitalizeFirstLetter(I18NextService.i18n.t("image"))}
|
||||||
|
<Icon icon="image" classes="icon-inline ms-1" />
|
||||||
|
</label>
|
||||||
|
<div className="col-sm-10">
|
||||||
|
<input
|
||||||
|
id="file-upload"
|
||||||
|
type="file"
|
||||||
|
accept="image/*,video/*"
|
||||||
|
name="file"
|
||||||
|
className="small col-sm-10 form-control"
|
||||||
|
disabled={!UserService.Instance.myUserInfo}
|
||||||
|
onChange={linkEvent(this, handleImageUpload)}
|
||||||
|
/>
|
||||||
{this.state.imageLoading && <Spinner />}
|
{this.state.imageLoading && <Spinner />}
|
||||||
{url && isImage(url) && (
|
{url && isImage(url) && (
|
||||||
<img src={url} className="img-fluid" alt="" />
|
<img src={url} className="img-fluid mt-2" alt="" />
|
||||||
)}
|
)}
|
||||||
{this.state.imageDeleteUrl && (
|
{this.state.imageDeleteUrl && (
|
||||||
<button
|
<button
|
||||||
className="btn btn-danger btn-sm mt-2"
|
className="btn btn-danger btn-sm mt-2"
|
||||||
onClick={linkEvent(this, handleImageDelete)}
|
onClick={linkEvent(this, handleImageDelete)}
|
||||||
aria-label={I18NextService.i18n.t("delete")}
|
|
||||||
data-tippy-content={I18NextService.i18n.t("delete")}
|
|
||||||
>
|
>
|
||||||
<Icon icon="x" classes="icon-inline me-1" />
|
<Icon icon="x" classes="icon-inline me-1" />
|
||||||
{capitalizeFirstLetter(I18NextService.i18n.t("delete"))}
|
{capitalizeFirstLetter(I18NextService.i18n.t("delete"))}
|
||||||
</button>
|
</button>
|
||||||
)}
|
)}
|
||||||
{this.props.crossPosts && this.props.crossPosts.length > 0 && (
|
|
||||||
<>
|
|
||||||
<div className="my-1 text-muted small fw-bold">
|
|
||||||
{I18NextService.i18n.t("cross_posts")}
|
|
||||||
</div>
|
|
||||||
<PostListings
|
|
||||||
showCommunity
|
|
||||||
posts={this.props.crossPosts}
|
|
||||||
enableDownvotes={this.props.enableDownvotes}
|
|
||||||
enableNsfw={this.props.enableNsfw}
|
|
||||||
allLanguages={this.props.allLanguages}
|
|
||||||
siteLanguages={this.props.siteLanguages}
|
|
||||||
viewOnly
|
|
||||||
// All of these are unused, since its view only
|
|
||||||
onPostEdit={() => {}}
|
|
||||||
onPostVote={() => {}}
|
|
||||||
onPostReport={() => {}}
|
|
||||||
onBlockPerson={() => {}}
|
|
||||||
onLockPost={() => {}}
|
|
||||||
onDeletePost={() => {}}
|
|
||||||
onRemovePost={() => {}}
|
|
||||||
onSavePost={() => {}}
|
|
||||||
onFeaturePost={() => {}}
|
|
||||||
onPurgePerson={() => {}}
|
|
||||||
onPurgePost={() => {}}
|
|
||||||
onBanPersonFromCommunity={() => {}}
|
|
||||||
onBanPerson={() => {}}
|
|
||||||
onAddModToCommunity={() => {}}
|
|
||||||
onAddAdmin={() => {}}
|
|
||||||
onTransferCommunity={() => {}}
|
|
||||||
/>
|
|
||||||
</>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
|
{this.props.crossPosts && this.props.crossPosts.length > 0 && (
|
||||||
|
<>
|
||||||
|
<div className="my-1 text-muted small fw-bold">
|
||||||
|
{I18NextService.i18n.t("cross_posts")}
|
||||||
|
</div>
|
||||||
|
<PostListings
|
||||||
|
showCommunity
|
||||||
|
posts={this.props.crossPosts}
|
||||||
|
enableDownvotes={this.props.enableDownvotes}
|
||||||
|
enableNsfw={this.props.enableNsfw}
|
||||||
|
allLanguages={this.props.allLanguages}
|
||||||
|
siteLanguages={this.props.siteLanguages}
|
||||||
|
viewOnly
|
||||||
|
// All of these are unused, since its view only
|
||||||
|
onPostEdit={() => {}}
|
||||||
|
onPostVote={() => {}}
|
||||||
|
onPostReport={() => {}}
|
||||||
|
onBlockPerson={() => {}}
|
||||||
|
onLockPost={() => {}}
|
||||||
|
onDeletePost={() => {}}
|
||||||
|
onRemovePost={() => {}}
|
||||||
|
onSavePost={() => {}}
|
||||||
|
onFeaturePost={() => {}}
|
||||||
|
onPurgePerson={() => {}}
|
||||||
|
onPurgePost={() => {}}
|
||||||
|
onBanPersonFromCommunity={() => {}}
|
||||||
|
onBanPerson={() => {}}
|
||||||
|
onAddModToCommunity={() => {}}
|
||||||
|
onAddAdmin={() => {}}
|
||||||
|
onTransferCommunity={() => {}}
|
||||||
|
/>
|
||||||
|
</>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="mb-3 row">
|
<div className="mb-3 row">
|
||||||
<label className="col-sm-2 col-form-label" htmlFor="post-title">
|
<label className="col-sm-2 col-form-label" htmlFor="post-title">
|
||||||
{I18NextService.i18n.t("title")}
|
{I18NextService.i18n.t("title")}
|
||||||
|
|
|
@ -497,12 +497,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
{/**
|
{/**
|
||||||
* If there is a URL, an embed title, and we were not told to show the
|
* If there is (a) a URL and an embed title, or (b) a post body, and
|
||||||
* body by the parent component, show the MetadataCard/body toggle.
|
* we were not told to show the body by the parent component, show the
|
||||||
|
* MetadataCard/body toggle.
|
||||||
*/}
|
*/}
|
||||||
{!this.props.showBody &&
|
{!this.props.showBody &&
|
||||||
post.url &&
|
((post.url && post.embed_title) || post.body) &&
|
||||||
post.embed_title &&
|
|
||||||
this.showPreviewButton()}
|
this.showPreviewButton()}
|
||||||
|
|
||||||
{post.removed && (
|
{post.removed && (
|
||||||
|
|
|
@ -17,6 +17,7 @@ import isCakeDay from "./is-cake-day";
|
||||||
import numToSI from "./num-to-si";
|
import numToSI from "./num-to-si";
|
||||||
import poll from "./poll";
|
import poll from "./poll";
|
||||||
import randomStr from "./random-str";
|
import randomStr from "./random-str";
|
||||||
|
import removeAuthParam from "./remove-auth-param";
|
||||||
import sleep from "./sleep";
|
import sleep from "./sleep";
|
||||||
import validEmail from "./valid-email";
|
import validEmail from "./valid-email";
|
||||||
import validInstanceTLD from "./valid-instance-tld";
|
import validInstanceTLD from "./valid-instance-tld";
|
||||||
|
@ -43,6 +44,7 @@ export {
|
||||||
numToSI,
|
numToSI,
|
||||||
poll,
|
poll,
|
||||||
randomStr,
|
randomStr,
|
||||||
|
removeAuthParam,
|
||||||
sleep,
|
sleep,
|
||||||
validEmail,
|
validEmail,
|
||||||
validInstanceTLD,
|
validInstanceTLD,
|
||||||
|
|
6
src/shared/utils/helpers/remove-auth-param.ts
Normal file
6
src/shared/utils/helpers/remove-auth-param.ts
Normal file
|
@ -0,0 +1,6 @@
|
||||||
|
export default function (err: any) {
|
||||||
|
return err
|
||||||
|
.toString()
|
||||||
|
.replace(new RegExp("[?&]auth=[^&#]*(#.*)?$"), "$1")
|
||||||
|
.replace(new RegExp("([?&])auth=[^&]*&"), "$1");
|
||||||
|
}
|
Loading…
Reference in a new issue