2023-06-25 15:01:40 +00:00
|
|
|
import { Component } from "inferno";
|
2021-02-22 02:39:04 +00:00
|
|
|
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 { 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
|
|
|
> {
|
|
|
|
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-06-25 15:01:40 +00:00
|
|
|
{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
|
2023-06-24 22:41:29 +00:00
|
|
|
className="text-muted fst-italic"
|
2023-01-04 16:56:24 +00:00
|
|
|
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),
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|