mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-02 02:29:59 +00:00
40 lines
1 KiB
TypeScript
40 lines
1 KiB
TypeScript
import { setIsoData } from "@utils/app";
|
|
import { Component } from "inferno";
|
|
import { GetSiteResponse } from "lemmy-js-client";
|
|
import { mdToHtml } from "../../markdown";
|
|
import { I18NextService } from "../../services";
|
|
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 I18NextService.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>
|
|
);
|
|
}
|
|
}
|