lemmy-ui/src/shared/components/home/instances.tsx

89 lines
2.4 KiB
TypeScript
Raw Normal View History

import { None } from "@sniptt/monads";
2021-02-22 02:39:04 +00:00
import { Component } from "inferno";
import { GetSiteResponse } from "lemmy-js-client";
import { i18n } from "../../i18next";
import { relTags, setIsoData } from "../../utils";
import { HtmlTags } from "../common/html-tags";
interface InstancesState {
siteRes: GetSiteResponse;
}
export class Instances extends Component<any, InstancesState> {
private isoData = setIsoData(this.context);
private emptyState: InstancesState = {
2020-12-24 01:58:27 +00:00
siteRes: this.isoData.site_res,
};
constructor(props: any, context: any) {
super(props, context);
this.state = this.emptyState;
}
get documentTitle(): string {
return this.state.siteRes.site_view.match({
some: siteView => `${i18n.t("instances")} - ${siteView.site.name}`,
none: "",
});
}
render() {
return this.state.siteRes.federated_instances.match({
some: federated_instances => (
<div className="container-lg">
2021-02-01 18:08:45 +00:00
<HtmlTags
title={this.documentTitle}
path={this.context.router.route.match.url}
description={None}
image={None}
2021-02-01 18:08:45 +00:00
/>
<div className="row">
<div className="col-md-6">
2021-02-22 02:39:04 +00:00
<h5>{i18n.t("linked_instances")}</h5>
2021-02-01 18:08:45 +00:00
{this.itemList(federated_instances.linked)}
</div>
{federated_instances.allowed.match({
some: allowed =>
allowed.length > 0 && (
<div className="col-md-6">
<h5>{i18n.t("allowed_instances")}</h5>
{this.itemList(allowed)}
</div>
),
none: <></>,
})}
{federated_instances.blocked.match({
some: blocked =>
blocked.length > 0 && (
<div className="col-md-6">
<h5>{i18n.t("blocked_instances")}</h5>
{this.itemList(blocked)}
</div>
),
none: <></>,
})}
2021-02-01 18:08:45 +00:00
</div>
</div>
),
none: <></>,
});
2021-02-01 18:08:45 +00:00
}
itemList(items: string[]) {
let noneFound = <div>{i18n.t("none_found")}</div>;
2021-02-01 18:08:45 +00:00
return items.length > 0 ? (
<ul>
{items.map(i => (
<li key={i}>
<a href={`https://${i}`} rel={relTags}>
2021-02-01 18:08:45 +00:00
{i}
</a>
</li>
))}
</ul>
) : (
noneFound
);
}
}