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";
|
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
|
|
|
> {
|
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 (
|
|
|
|
<>
|
2022-06-21 21:42:29 +00:00
|
|
|
{!this.state.expanded &&
|
|
|
|
post.embed_title.match({
|
|
|
|
some: embedTitle =>
|
|
|
|
post.url.match({
|
|
|
|
some: url => (
|
2022-09-22 15:03:35 +00:00
|
|
|
<div className="card border-secondary mt-3 mb-2">
|
|
|
|
<div className="row">
|
|
|
|
<div className="col-12">
|
|
|
|
<div className="card-body">
|
|
|
|
{post.name !== embedTitle && (
|
|
|
|
<>
|
|
|
|
<h5 className="card-title d-inline">
|
|
|
|
<a
|
|
|
|
className="text-body"
|
|
|
|
href={url}
|
|
|
|
rel={relTags}
|
|
|
|
>
|
|
|
|
{embedTitle}
|
|
|
|
</a>
|
|
|
|
</h5>
|
|
|
|
<span className="d-inline-block ml-2 mb-2 small text-muted">
|
|
|
|
<a
|
|
|
|
className="text-muted font-italic"
|
|
|
|
href={url}
|
|
|
|
rel={relTags}
|
|
|
|
>
|
|
|
|
{new URL(url).hostname}
|
|
|
|
<Icon icon="external-link" classes="ml-1" />
|
|
|
|
</a>
|
|
|
|
</span>
|
|
|
|
</>
|
|
|
|
)}
|
2022-06-21 21:42:29 +00:00
|
|
|
{post.embed_description.match({
|
|
|
|
some: desc => (
|
|
|
|
<div
|
|
|
|
className="card-text small text-muted md-div"
|
|
|
|
dangerouslySetInnerHTML={{
|
|
|
|
__html: desc,
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
none: <></>,
|
|
|
|
})}
|
2022-09-22 15:14:58 +00:00
|
|
|
{post.embed_video_url.isSome() && (
|
2022-06-21 21:42:29 +00:00
|
|
|
<button
|
2022-09-22 15:03:35 +00:00
|
|
|
className="mt-2 btn btn-secondary text-monospace"
|
2022-06-21 21:42:29 +00:00
|
|
|
onClick={linkEvent(this, this.handleIframeExpand)}
|
|
|
|
data-tippy-content={i18n.t("expand_here")}
|
|
|
|
>
|
|
|
|
{this.state.expanded ? "-" : "+"}
|
|
|
|
</button>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
),
|
|
|
|
none: <></>,
|
|
|
|
}),
|
|
|
|
none: <></>,
|
|
|
|
})}
|
|
|
|
{this.state.expanded &&
|
2022-09-22 15:14:58 +00:00
|
|
|
post.embed_video_url.match({
|
2022-06-21 21:42:29 +00:00
|
|
|
some: html => (
|
|
|
|
<div
|
2022-09-22 15:03:35 +00:00
|
|
|
className="mt-3 mb-2"
|
2022-06-21 21:42:29 +00:00
|
|
|
dangerouslySetInnerHTML={{ __html: html }}
|
|
|
|
/>
|
|
|
|
),
|
|
|
|
none: <></>,
|
|
|
|
})}
|
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
|
|
|
}
|
|
|
|
}
|