2021-02-22 02:39:04 +00:00
|
|
|
import { Component, linkEvent } from "inferno";
|
|
|
|
import { Post } from "lemmy-js-client";
|
2022-12-29 17:35:43 +00:00
|
|
|
import * as sanitizeHtml from "sanitize-html";
|
2021-07-17 20:42:55 +00:00
|
|
|
import { i18n } from "../../i18next";
|
2022-02-24 15:31:44 +00:00
|
|
|
import { relTags } from "../../utils";
|
2021-07-17 20:42:55 +00:00
|
|
|
import { Icon } from "../common/icon";
|
2020-09-06 16:15:25 +00:00
|
|
|
|
2021-08-19 15:24:13 +00:00
|
|
|
interface MetadataCardProps {
|
2020-09-06 16:15:25 +00:00
|
|
|
post: Post;
|
|
|
|
}
|
|
|
|
|
2021-08-19 15:24:13 +00:00
|
|
|
interface MetadataCardState {
|
2020-09-06 16:15:25 +00:00
|
|
|
expanded: boolean;
|
|
|
|
}
|
|
|
|
|
2021-08-19 15:24:13 +00:00
|
|
|
export class MetadataCard extends Component<
|
|
|
|
MetadataCardProps,
|
|
|
|
MetadataCardState
|
2020-09-06 16:15:25 +00:00
|
|
|
> {
|
2023-01-04 16:56:24 +00:00
|
|
|
state: MetadataCardState = {
|
2020-09-06 16:15:25 +00:00
|
|
|
expanded: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let post = this.props.post;
|
|
|
|
return (
|
|
|
|
<>
|
2023-01-04 16:56:24 +00:00
|
|
|
{!this.state.expanded && post.embed_title && post.url && (
|
|
|
|
<div className="card border-secondary mt-3 mb-2">
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-12">
|
|
|
|
<div className="card-body">
|
|
|
|
{post.name !== post.embed_title && (
|
|
|
|
<>
|
|
|
|
<h5 className="card-title d-inline">
|
|
|
|
<a className="text-body" href={post.url} rel={relTags}>
|
|
|
|
{post.embed_title}
|
|
|
|
</a>
|
|
|
|
</h5>
|
|
|
|
<span className="d-inline-block ml-2 mb-2 small text-muted">
|
|
|
|
<a
|
|
|
|
className="text-muted font-italic"
|
|
|
|
href={post.url}
|
|
|
|
rel={relTags}
|
|
|
|
>
|
|
|
|
{new URL(post.url).hostname}
|
|
|
|
<Icon icon="external-link" classes="ml-1" />
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{post.embed_description && (
|
|
|
|
<div
|
|
|
|
className="card-text small text-muted md-div"
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: sanitizeHtml(post.embed_description),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
{post.embed_video_url && (
|
|
|
|
<button
|
|
|
|
className="mt-2 btn btn-secondary text-monospace"
|
|
|
|
onClick={linkEvent(this, this.handleIframeExpand)}
|
|
|
|
>
|
|
|
|
{i18n.t("expand_here")}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{this.state.expanded && post.embed_video_url && (
|
|
|
|
<iframe src={post.embed_video_url}></iframe>
|
|
|
|
)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-19 15:24:13 +00:00
|
|
|
handleIframeExpand(i: MetadataCard) {
|
2022-09-22 15:03:35 +00:00
|
|
|
i.setState({ expanded: !i.state.expanded });
|
2020-09-06 16:15:25 +00:00
|
|
|
}
|
|
|
|
}
|