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";
|
2023-06-21 22:28:24 +00:00
|
|
|
import { relTags } from "../../config";
|
2021-07-17 20:42:55 +00:00
|
|
|
import { i18n } from "../../i18next";
|
|
|
|
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() {
|
2023-06-05 21:31:12 +00:00
|
|
|
const post = this.props.post;
|
2020-09-06 16:15:25 +00:00
|
|
|
return (
|
|
|
|
<>
|
2023-01-04 16:56:24 +00:00
|
|
|
{!this.state.expanded && post.embed_title && post.url && (
|
2023-06-20 18:46:16 +00:00
|
|
|
<div className="post-metadata-card card border-secondary mt-3 mb-2">
|
2023-01-04 16:56:24 +00:00
|
|
|
<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>
|
2023-06-20 12:01:29 +00:00
|
|
|
<span className="d-inline-block ms-2 mb-2 small text-muted">
|
2023-01-04 16:56:24 +00:00
|
|
|
<a
|
|
|
|
className="text-muted font-italic"
|
|
|
|
href={post.url}
|
|
|
|
rel={relTags}
|
|
|
|
>
|
|
|
|
{new URL(post.url).hostname}
|
2023-06-20 12:01:29 +00:00
|
|
|
<Icon icon="external-link" classes="ms-1" />
|
2023-01-04 16:56:24 +00:00
|
|
|
</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 && (
|
2023-06-21 04:15:02 +00:00
|
|
|
<div className="ratio ratio-16x9">
|
|
|
|
<iframe
|
|
|
|
allowFullScreen
|
|
|
|
className="post-metadata-iframe"
|
|
|
|
src={post.embed_video_url}
|
2023-06-21 04:28:27 +00:00
|
|
|
title={"Embedded Video: " + post.embed_title}
|
2023-06-21 04:15:02 +00:00
|
|
|
></iframe>
|
|
|
|
</div>
|
2023-01-04 16:56:24 +00:00
|
|
|
)}
|
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
|
|
|
}
|
|
|
|
}
|