import useLocalState from "@/state/state";
import type { Ship } from "@/types/urbit";
import Sigil from "./Sigil";
import ShipModal from "./modals/ShipModal";
import { isValidPatp } from "urbit-ob";
import type { UserProfile } from "@/types/nostrill";
import Icon from "@/components/Icon";
export default function ({
p,
size,
color,
noClickOnName,
profile,
picOnly = false,
}: {
p: Ship;
size: number;
color?: string;
noClickOnName?: boolean;
profile?: UserProfile;
picOnly?: boolean;
}) {
const { setModal } = useLocalState((s) => ({ setModal: s.setModal }));
// TODO revisit this when %whom updates
const avatarInner = profile ? (
) : isValidPatp(p) ? (
{profile.name}
) : ({p.length > 28 ? "Anon" : p}
)}