mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-01 18:19:55 +00:00
39 lines
1,001 B
TypeScript
39 lines
1,001 B
TypeScript
import { Component } from "inferno";
|
|
import { GetSiteResponse } from "lemmy-js-client";
|
|
import { i18n } from "../../i18next";
|
|
import { mdToHtml, setIsoData } from "../../utils";
|
|
import { HtmlTags } from "../common/html-tags";
|
|
|
|
interface LegalState {
|
|
siteRes: GetSiteResponse;
|
|
}
|
|
|
|
export class Legal extends Component<any, LegalState> {
|
|
private isoData = setIsoData(this.context);
|
|
state: LegalState = {
|
|
siteRes: this.isoData.site_res,
|
|
};
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
}
|
|
|
|
get documentTitle(): string {
|
|
return i18n.t("legal_information");
|
|
}
|
|
|
|
render() {
|
|
const legal = this.state.siteRes.site_view.local_site.legal_information;
|
|
return (
|
|
<div className="legal container-lg">
|
|
<HtmlTags
|
|
title={this.documentTitle}
|
|
path={this.context.router.route.match.url}
|
|
/>
|
|
{legal && (
|
|
<div className="md-div" dangerouslySetInnerHTML={mdToHtml(legal)} />
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|