mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-02 02:29:59 +00:00
94 lines
2.9 KiB
TypeScript
94 lines
2.9 KiB
TypeScript
import { Component, linkEvent } from "inferno";
|
|
import { Post } from "lemmy-js-client";
|
|
import * as sanitizeHtml from "sanitize-html";
|
|
import { relTags } from "../../config";
|
|
import { I18NextService } from "../../services";
|
|
import { Icon } from "../common/icon";
|
|
|
|
interface MetadataCardProps {
|
|
post: Post;
|
|
}
|
|
|
|
interface MetadataCardState {
|
|
expanded: boolean;
|
|
}
|
|
|
|
export class MetadataCard extends Component<
|
|
MetadataCardProps,
|
|
MetadataCardState
|
|
> {
|
|
state: MetadataCardState = {
|
|
expanded: false,
|
|
};
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
}
|
|
|
|
render() {
|
|
const post = this.props.post;
|
|
return (
|
|
<>
|
|
{!this.state.expanded && post.embed_title && post.url && (
|
|
<div className="post-metadata-card 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 ms-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="ms-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)}
|
|
>
|
|
{I18NextService.i18n.t("expand_here")}
|
|
</button>
|
|
)}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)}
|
|
{this.state.expanded && post.embed_video_url && (
|
|
<div className="ratio ratio-16x9">
|
|
<iframe
|
|
allowFullScreen
|
|
className="post-metadata-iframe"
|
|
src={post.embed_video_url}
|
|
title={post.embed_title}
|
|
></iframe>
|
|
</div>
|
|
)}
|
|
</>
|
|
);
|
|
}
|
|
|
|
handleIframeExpand(i: MetadataCard) {
|
|
i.setState({ expanded: !i.state.expanded });
|
|
}
|
|
}
|