mirror of
https://github.com/hzrd149/nostrudel.git
synced 2025-04-03 09:28:23 +02:00
fix content-warning tag
This commit is contained in:
parent
c54e52bc89
commit
1b8a1d299c
@ -9,11 +9,11 @@ export default function NoteContentWithWarning({ event }: { event: NostrEvent })
|
||||
const expand = useExpand();
|
||||
const settings = useAppSettings();
|
||||
|
||||
const contentWarning = event.tags.find((t) => t[0] === "content-warning")?.[1];
|
||||
const showContentWarning = settings.showContentWarning && contentWarning && !expand?.expanded;
|
||||
const contentWarningTag = event.tags.find((t) => t[0] === "content-warning");
|
||||
const showContentWarning = settings.showContentWarning && contentWarningTag && !expand?.expanded;
|
||||
|
||||
return showContentWarning ? (
|
||||
<SensitiveContentWarning description={contentWarning} />
|
||||
<SensitiveContentWarning description={contentWarningTag?.[1]} />
|
||||
) : (
|
||||
<NoteContents px="2" event={event} />
|
||||
);
|
||||
|
@ -260,7 +260,9 @@ export default function PostModal({
|
||||
</FormControl>
|
||||
<Flex gap="2" direction="column">
|
||||
<Switch {...register("nsfw")}>NSFW</Switch>
|
||||
{getValues().nsfw && <Input {...register("nsfwReason")} placeholder="Reason" />}
|
||||
{getValues().nsfw && (
|
||||
<Input {...register("nsfwReason", { required: true })} placeholder="Reason" isRequired />
|
||||
)}
|
||||
</Flex>
|
||||
</Flex>
|
||||
<Flex direction="column" gap="2" flex={1}>
|
||||
|
@ -1,9 +1,9 @@
|
||||
import { Alert, AlertDescription, AlertIcon, AlertProps, AlertTitle, Button, Spacer, useModal } from "@chakra-ui/react";
|
||||
import { Alert, AlertDescription, AlertIcon, AlertProps, AlertTitle, Button, Spacer } from "@chakra-ui/react";
|
||||
|
||||
import { useExpand } from "../providers/expanded";
|
||||
import { useBreakpointValue } from "../providers/breakpoint-provider";
|
||||
|
||||
export default function SensitiveContentWarning({ description }: { description: string } & AlertProps) {
|
||||
export default function SensitiveContentWarning({ description }: { description?: string } & AlertProps) {
|
||||
const expand = useExpand();
|
||||
const smallScreen = useBreakpointValue({ base: true, md: false });
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user