snort/src/Pages/settings/RelayInfo.tsx

116 lines
3.4 KiB
TypeScript
Raw Normal View History

2023-02-08 21:10:26 +00:00
import { FormattedMessage } from "react-intl";
2023-01-25 13:10:31 +00:00
import ProfilePreview from "Element/ProfilePreview";
import useRelayState from "Feed/RelayState";
import { System } from "Nostr/System";
import { useDispatch } from "react-redux";
import { useNavigate, useParams } from "react-router-dom";
import { removeRelay } from "State/Login";
import { parseId } from "Util";
2023-02-08 21:10:26 +00:00
import messages from "./messages";
2023-01-25 13:10:31 +00:00
const RelayInfo = () => {
const params = useParams();
const navigate = useNavigate();
const dispatch = useDispatch();
2023-01-25 13:10:31 +00:00
const conn = Array.from(System.Sockets.values()).find(
(a) => a.Id === params.id
);
console.debug(conn);
const stats = useRelayState(conn?.Address ?? "");
2023-01-25 13:10:31 +00:00
return (
<>
<h3 className="pointer" onClick={() => navigate("/settings/relays")}>
2023-02-08 21:10:26 +00:00
<FormattedMessage {...messages.Relays} />
</h3>
<div className="card">
<h3>{stats?.info?.name}</h3>
<p>{stats?.info?.description}</p>
2023-01-25 13:10:31 +00:00
{stats?.info?.pubkey && (
<>
2023-02-08 21:10:26 +00:00
<h4>
<FormattedMessage {...messages.Owner} />
</h4>
<ProfilePreview pubkey={parseId(stats.info.pubkey)} />
</>
)}
{stats?.info?.software && (
<div className="flex">
2023-02-08 21:10:26 +00:00
<h4 className="f-grow">
<FormattedMessage {...messages.Software} />
</h4>
<div className="flex f-col">
{stats.info.software.startsWith("http") ? (
<a href={stats.info.software} target="_blank" rel="noreferrer">
{stats.info.software}
</a>
) : (
<>{stats.info.software}</>
)}
<small>
{!stats.info.version?.startsWith("v") && "v"}
{stats.info.version}
</small>
2023-01-25 13:10:31 +00:00
</div>
</div>
)}
{stats?.info?.contact && (
<div className="flex">
2023-02-08 21:10:26 +00:00
<h4 className="f-grow">
<FormattedMessage {...messages.Contact} />
</h4>
<a
href={`${
stats.info.contact.startsWith("mailto:") ? "" : "mailto:"
}${stats.info.contact}`}
target="_blank"
rel="noreferrer"
>
{stats.info.contact}
</a>
</div>
)}
{stats?.info?.supported_nips && (
<>
2023-02-08 21:10:26 +00:00
<h4>
<FormattedMessage {...messages.Supports} />
</h4>
<div className="f-grow">
{stats.info.supported_nips.map((a) => (
<span
className="pill"
onClick={() =>
navigate(
`https://github.com/nostr-protocol/nips/blob/master/${a
.toString()
.padStart(2, "0")}.md`
)
}
>
NIP-{a.toString().padStart(2, "0")}
</span>
))}
</div>
</>
)}
<div className="flex mt10 f-end">
<div
className="btn error"
onClick={() => {
dispatch(removeRelay(conn!.Address));
navigate("/settings/relays");
}}
>
2023-02-08 21:10:26 +00:00
<FormattedMessage {...messages.Remove} />
</div>
</div>
</div>
</>
);
};
2023-01-25 13:10:31 +00:00
export default RelayInfo;