1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
import {
Select,
SelectContent,
SelectGroup,
SelectItem,
SelectTrigger,
SelectValue,
} from "@/components/ui/select";
import LoadingSpinner from "@/components/ui/spinner";
import { cn } from "@/lib/utils";
import { useQuery } from "@tanstack/react-query";
import { useTRPC } from "@karakeep/shared-react/trpc";
export function FeedSelector({
value,
onChange,
placeholder = "Select a feed",
className,
}: {
className?: string;
value?: string | null;
onChange: (value: string) => void;
placeholder?: string;
}) {
const api = useTRPC();
const { data, isPending } = useQuery(
api.feeds.list.queryOptions(undefined, {
select: (data) => data.feeds,
}),
);
if (isPending) {
return <LoadingSpinner />;
}
return (
<Select onValueChange={onChange} value={value ?? ""}>
<SelectTrigger className={cn("w-full", className)}>
<SelectValue placeholder={placeholder} />
</SelectTrigger>
<SelectContent>
<SelectGroup>
{data?.map((f) => (
<SelectItem key={f.id} value={f.id}>
{f.name}
</SelectItem>
))}
{(data ?? []).length == 0 && (
<SelectItem value="nofeed" disabled>
You don't currently have any feeds.
</SelectItem>
)}
</SelectGroup>
</SelectContent>
</Select>
);
}
|