2022-08-17 03:04:06 +02:00
|
|
|
import {
|
|
|
|
HeartFill,
|
|
|
|
HandThumbsUp,
|
|
|
|
HandThumbsDown,
|
|
|
|
People,
|
|
|
|
EmojiLaughing,
|
|
|
|
} from "react-bootstrap-icons";
|
|
|
|
import BlueLink from "./BlueLink";
|
|
|
|
|
|
|
|
import Card from "./Card";
|
|
|
|
import type { Field } from "../lib/types";
|
|
|
|
|
|
|
|
function linkPronoun(input: string) {
|
|
|
|
if (input.includes(" ") || input.split("/").length !== 5)
|
|
|
|
return <span>{input}</span>;
|
|
|
|
|
|
|
|
const [sub, obj, possDet, possPro, reflexive] = input.split("/");
|
|
|
|
|
|
|
|
return (
|
|
|
|
<BlueLink to={`/pronouns/${sub}/${obj}/${possDet}/${possPro}/${reflexive}`}>
|
|
|
|
<span>
|
|
|
|
{sub}/{obj}/{possDet}
|
|
|
|
</span>
|
|
|
|
</BlueLink>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export default function FieldCard({
|
|
|
|
field,
|
|
|
|
draggable,
|
|
|
|
}: {
|
|
|
|
field: Field;
|
|
|
|
draggable?: boolean;
|
|
|
|
}) {
|
|
|
|
return (
|
|
|
|
<Card title={field.name} draggable={draggable}>
|
|
|
|
{field.favourite?.map((entry) => (
|
|
|
|
<p className="text-lg font-bold" key={entry}>
|
|
|
|
<HeartFill className="inline" /> {linkPronoun(entry)}
|
|
|
|
</p>
|
|
|
|
))}
|
2022-09-20 14:12:46 +02:00
|
|
|
{field.okay && field.okay.length !== 0 && (
|
2022-08-17 03:04:06 +02:00
|
|
|
<p>
|
|
|
|
<HandThumbsUp className="inline" /> {field.okay!.join(", ")}
|
|
|
|
</p>
|
|
|
|
)}
|
2022-09-20 14:12:46 +02:00
|
|
|
{field.jokingly && field.jokingly.length !== 0 && (
|
2022-08-17 03:04:06 +02:00
|
|
|
<p>
|
|
|
|
<EmojiLaughing className="inline" /> {field.jokingly!.join(", ")}
|
|
|
|
</p>
|
|
|
|
)}
|
2022-09-20 14:12:46 +02:00
|
|
|
{field.friends_only && field.friends_only.length !== 0 && (
|
2022-08-17 03:04:06 +02:00
|
|
|
<p>
|
|
|
|
<People className="inline" /> {field.friends_only!.join(", ")}
|
|
|
|
</p>
|
|
|
|
)}
|
2022-09-20 14:12:46 +02:00
|
|
|
{field.avoid && field.avoid.length !== 0 && (
|
2022-08-17 03:04:06 +02:00
|
|
|
<p className="text-slate-600 dark:text-slate-400">
|
|
|
|
<HandThumbsDown className="inline" /> {field.avoid!.join(", ")}
|
|
|
|
</p>
|
|
|
|
)}
|
|
|
|
</Card>
|
|
|
|
);
|
|
|
|
}
|