-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
230 additions
and
8 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import * as AccordionPrimitive from '@radix-ui/react-accordion'; | ||
import { ChevronDown } from 'lucide-react'; | ||
import { cn } from '@/lib/utils'; | ||
import { forwardRef } from 'react'; | ||
|
||
export const Accordion = AccordionPrimitive.Root; | ||
|
||
export const AccordionItem = forwardRef< | ||
React.ElementRef<typeof AccordionPrimitive.Item>, | ||
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Item> | ||
>(({ className, ...props }, ref) => <AccordionPrimitive.Item ref={ref} className={cn('border-b', className)} {...props} />); | ||
AccordionItem.displayName = 'AccordionItem'; | ||
|
||
export const AccordionTrigger = forwardRef< | ||
React.ElementRef<typeof AccordionPrimitive.Trigger>, | ||
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Trigger> | ||
>(({ className, children, ...props }, ref) => ( | ||
<AccordionPrimitive.Header className="flex"> | ||
<AccordionPrimitive.Trigger | ||
ref={ref} | ||
className={cn( | ||
'flex flex-1 items-center justify-between py-4 text-sm font-medium transition-all hover:underline text-left [&[data-state=open]>svg]:rotate-180', | ||
className, | ||
)} | ||
{...props} | ||
> | ||
{children} | ||
<ChevronDown className="h-4 w-4 shrink-0 text-muted-foreground transition-transform duration-200" /> | ||
</AccordionPrimitive.Trigger> | ||
</AccordionPrimitive.Header> | ||
)); | ||
AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName; | ||
|
||
export const AccordionContent = forwardRef< | ||
React.ElementRef<typeof AccordionPrimitive.Content>, | ||
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content> | ||
>(({ className, children, ...props }, ref) => ( | ||
<AccordionPrimitive.Content | ||
ref={ref} | ||
className="overflow-hidden text-sm data-[state=closed]:animate-accordion-up data-[state=open]:animate-accordion-down" | ||
{...props} | ||
> | ||
<div className={cn('pb-4 pt-0', className)}>{children}</div> | ||
</AccordionPrimitive.Content> | ||
)); | ||
AccordionContent.displayName = AccordionPrimitive.Content.displayName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
import { BskyAgent, moderatePost, ModerationOpts } from '@atproto/api'; | ||
import { useQuery } from '@tanstack/react-query'; | ||
import { useMemo } from 'react'; | ||
import { BSkyPost } from '../types/bsky-post'; | ||
|
||
interface PostLabelsConfig { | ||
agent: BskyAgent; | ||
post: BSkyPost | null | undefined; | ||
} | ||
|
||
export const usePostLabels = ({ agent, post }: PostLabelsConfig) => { | ||
// Fetch user preferences including moderation settings | ||
const { data: preferences, isLoading: prefsLoading } = useQuery({ | ||
queryKey: ['preferences', agent.session?.did], | ||
queryFn: async () => agent.getPreferences(), | ||
enabled: !!agent.session?.did, | ||
}); | ||
|
||
// Fetch label definitions | ||
const { data: labelDefs, isLoading: defsLoading } = useQuery({ | ||
queryKey: ['labelDefinitions', preferences?.moderationPrefs], | ||
queryFn: async () => agent.getLabelDefinitions(preferences!), | ||
enabled: !!preferences, | ||
}); | ||
|
||
// Create moderation options | ||
const moderationOpts: ModerationOpts | undefined = useMemo(() => { | ||
if (!preferences || !labelDefs) return undefined; | ||
|
||
return { | ||
userDid: agent.session?.did, | ||
prefs: preferences.moderationPrefs, | ||
labelDefs, | ||
}; | ||
}, [agent.session?.did, preferences, labelDefs]); | ||
|
||
// Get moderation UI state | ||
const moderation = useMemo(() => { | ||
if (!moderationOpts || !post) return null; | ||
|
||
return moderatePost(post, moderationOpts); | ||
}, [moderationOpts, post]); | ||
|
||
return { | ||
moderation, | ||
isLoading: prefsLoading || defsLoading, | ||
error: null, | ||
// Raw data for custom handling | ||
preferences, | ||
labelDefs, | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters