snort/src/element/Note.js

95 lines
2.9 KiB
JavaScript
Raw Normal View History

2022-12-18 14:51:47 +00:00
import "./Note.css";
2023-01-08 00:29:59 +00:00
import { useCallback } from "react";
2022-12-18 14:51:47 +00:00
import { useSelector } from "react-redux";
import moment from "moment";
2023-01-07 20:54:12 +00:00
import { useNavigate } from "react-router-dom";
2022-12-29 15:36:40 +00:00
2022-12-28 22:09:39 +00:00
import Event from "../nostr/Event";
2022-12-27 23:46:13 +00:00
import ProfileImage from "./ProfileImage";
2023-01-06 11:05:27 +00:00
import { extractLinks, extractMentions, extractInvoices } from "../Text";
2023-01-06 14:36:13 +00:00
import { eventLink } from "../Util";
2023-01-08 00:29:59 +00:00
import NoteFooter from "./NoteFooter";
2022-12-18 14:51:47 +00:00
export default function Note(props) {
const navigate = useNavigate();
const data = props.data;
2023-01-02 11:15:13 +00:00
const opt = props.options;
2022-12-28 22:09:39 +00:00
const dataEvent = props["data-ev"];
2022-12-20 23:14:13 +00:00
const reactions = props.reactions;
const deletion = props.deletion;
2023-01-08 15:00:28 +00:00
const hightlight = props.hightlight;
2023-01-08 00:29:59 +00:00
2022-12-20 12:08:41 +00:00
const users = useSelector(s => s.users?.users);
2022-12-28 22:09:39 +00:00
const ev = dataEvent ?? Event.FromObject(data);
2022-12-18 14:51:47 +00:00
2023-01-02 11:15:13 +00:00
const options = {
showHeader: true,
showTime: true,
showFooter: true,
...opt
};
2023-01-02 13:40:42 +00:00
const transformBody = useCallback(() => {
let body = ev?.Content ?? "";
let fragments = extractLinks([body]);
2023-01-06 11:05:27 +00:00
fragments = extractMentions(fragments, ev.Tags, users);
fragments = extractInvoices(fragments);
if (deletion?.length > 0) {
return (
<>
<b className="error">Deleted</b>
</>
);
}
return fragments;
}, [data, dataEvent, reactions, deletion]);
2023-01-02 13:40:42 +00:00
2022-12-18 14:51:47 +00:00
function goToEvent(e, id) {
2022-12-20 12:08:41 +00:00
if (!window.location.pathname.startsWith("/e/")) {
e.stopPropagation();
2023-01-06 14:36:13 +00:00
navigate(eventLink(id));
2022-12-20 12:08:41 +00:00
}
2022-12-18 14:51:47 +00:00
}
function replyTag() {
2023-01-06 19:29:12 +00:00
if (ev.Thread === null) {
2022-12-18 14:51:47 +00:00
return null;
}
2023-01-06 19:29:12 +00:00
let replyId = ev.Thread?.ReplyTo?.Event;
let mentions = ev.Thread?.PubKeys?.map(a => [a, users[a]])?.map(a => a[1]?.name ?? a[0].substring(0, 8));
2022-12-18 14:51:47 +00:00
return (
<div className="reply" onClick={(e) => goToEvent(e, replyId)}>
2022-12-20 12:08:41 +00:00
{mentions?.join(", ") ?? replyId?.substring(0, 8)}
2022-12-18 14:51:47 +00:00
</div>
)
}
2022-12-18 22:23:52 +00:00
if (!ev.IsContent()) {
return (
<>
<pre>{ev.Id}</pre>
<pre>Kind: {ev.Kind}</pre>
<pre>Content: {ev.Content}</pre>
</>
);
2022-12-18 14:51:47 +00:00
}
return (
2023-01-08 15:00:28 +00:00
<div className={`note ${hightlight ? "active" : ""}`}>
2023-01-02 11:15:13 +00:00
{options.showHeader ?
<div className="header flex">
2023-01-08 00:29:59 +00:00
<ProfileImage pubkey={ev.RootPubKey} subHeader={replyTag()} />
2023-01-02 11:15:13 +00:00
{options.showTime ?
<div className="info">
{moment(ev.CreatedAt * 1000).fromNow()}
</div> : null}
</div> : null}
2022-12-18 14:51:47 +00:00
<div className="body" onClick={(e) => goToEvent(e, ev.Id)}>
2022-12-20 12:08:41 +00:00
{transformBody()}
2022-12-18 14:51:47 +00:00
</div>
2023-01-08 00:29:59 +00:00
{options.showFooter ? <NoteFooter ev={ev} reactions={reactions} /> : null}
2022-12-18 14:51:47 +00:00
</div>
)
}