2021-02-22 02:39:04 +00:00
|
|
|
import { Component, linkEvent } from "inferno";
|
|
|
|
import { Post } from "lemmy-js-client";
|
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
|
|
|
> {
|
2021-08-19 15:24:13 +00:00
|
|
|
private emptyState: MetadataCardState = {
|
2020-09-06 16:15:25 +00:00
|
|
|
expanded: false,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props: any, context: any) {
|
|
|
|
super(props, context);
|
|
|
|
this.state = this.emptyState;
|
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
let post = this.props.post;
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{post.embed_title && !this.state.expanded && (
|
2022-01-12 14:42:14 +00:00
|
|
|
<div class="card border-secondary mt-3 mb-2">
|
2020-09-06 16:15:25 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
|
|
|
<div class="card-body">
|
2020-11-10 18:58:41 +00:00
|
|
|
{post.name !== post.embed_title && [
|
|
|
|
<h5 class="card-title d-inline">
|
2021-02-12 17:55:07 +00:00
|
|
|
<a class="text-body" href={post.url} rel="noopener">
|
2020-09-06 16:15:25 +00:00
|
|
|
{post.embed_title}
|
2020-11-10 18:58:41 +00:00
|
|
|
</a>
|
|
|
|
</h5>,
|
|
|
|
<span class="d-inline-block ml-2 mb-2 small text-muted">
|
|
|
|
<a
|
|
|
|
class="text-muted font-italic"
|
|
|
|
href={post.url}
|
|
|
|
rel="noopener"
|
2020-09-06 16:15:25 +00:00
|
|
|
>
|
2020-11-10 18:58:41 +00:00
|
|
|
{new URL(post.url).hostname}
|
2021-02-11 20:35:27 +00:00
|
|
|
<Icon icon="external-link" classes="ml-1" />
|
2020-11-10 18:58:41 +00:00
|
|
|
</a>
|
|
|
|
</span>,
|
|
|
|
]}
|
2020-09-06 16:15:25 +00:00
|
|
|
{post.embed_description && (
|
|
|
|
<div
|
|
|
|
className="card-text small text-muted md-div"
|
2021-07-17 03:41:00 +00:00
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: post.embed_description,
|
|
|
|
}}
|
2020-09-06 16:15:25 +00:00
|
|
|
/>
|
|
|
|
)}
|
2020-11-10 18:58:41 +00:00
|
|
|
{post.embed_html && (
|
|
|
|
<button
|
2020-11-10 21:56:05 +00:00
|
|
|
class="mt-2 btn btn-secondary text-monospace"
|
2020-11-10 18:58:41 +00:00
|
|
|
onClick={linkEvent(this, this.handleIframeExpand)}
|
2021-02-22 02:39:04 +00:00
|
|
|
data-tippy-content={i18n.t("expand_here")}
|
2020-11-10 18:58:41 +00:00
|
|
|
>
|
2021-02-22 02:39:04 +00:00
|
|
|
{this.state.expanded ? "-" : "+"}
|
2020-11-10 18:58:41 +00:00
|
|
|
</button>
|
|
|
|
)}
|
2020-09-06 16:15:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{this.state.expanded && (
|
|
|
|
<div
|
|
|
|
class="mt-3 mb-2"
|
|
|
|
dangerouslySetInnerHTML={{ __html: post.embed_html }}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-08-19 15:24:13 +00:00
|
|
|
handleIframeExpand(i: MetadataCard) {
|
2020-09-06 16:15:25 +00:00
|
|
|
i.state.expanded = !i.state.expanded;
|
|
|
|
i.setState(i.state);
|
|
|
|
}
|
|
|
|
}
|