Prompt Library (#1906)

This commit is contained in:
Rizel Scarlett
2025-03-31 07:29:37 -04:00
committed by GitHub
parent 326f087637
commit 54573e4a60
49 changed files with 2295 additions and 206 deletions
@@ -0,0 +1,34 @@
import { cn } from "@site/src/utils/cn";
export type PillFilterOption = {
label: string;
value: string;
};
interface PillFilterProps {
options: PillFilterOption[];
selectedValue: string;
onChange: (value: string) => void;
}
export function PillFilter({ options, selectedValue, onChange }: PillFilterProps) {
return (
<div className="flex flex-wrap gap-2">
{options.map((option) => (
<button
key={option.value}
onClick={() => onChange(option.value)}
className={cn(
"px-4 py-2 rounded-full text-sm font-medium transition-colors",
"border border-borderSubtle",
selectedValue === option.value
? "dark:bg-white dark:text-black bg-black text-white border-borderProminent"
: "bg-bgApp text-textStandard"
)}
>
{option.label}
</button>
))}
</div>
);
}
@@ -0,0 +1,65 @@
import { cn } from "@site/src/utils/cn";
export type SidebarFilterOption = {
label: string;
value: string;
count?: number;
};
export type SidebarFilterGroup = {
title: string;
options: SidebarFilterOption[];
};
interface SidebarFilterProps {
groups: SidebarFilterGroup[];
selectedValues: Record<string, string[]>;
onChange: (groupTitle: string, values: string[]) => void;
}
export function SidebarFilter({ groups, selectedValues, onChange }: SidebarFilterProps) {
const toggleValue = (groupTitle: string, value: string) => {
const currentValues = selectedValues[groupTitle] || [];
const newValues = currentValues.includes(value)
? currentValues.filter((v) => v !== value)
: [...currentValues, value];
onChange(groupTitle, newValues);
};
return (
<div className="w-64 pr-8">
{groups.map((group) => (
<div key={group.title} className="mb-8">
<h3 className="text-lg font-medium mb-4 text-textProminent">
{group.title}
</h3>
<div className="space-y-2">
{group.options.map((option) => (
<label
key={option.value}
className="flex items-center justify-between group cursor-pointer"
>
<div className="flex items-center">
<input
type="checkbox"
checked={(selectedValues[group.title] || []).includes(option.value)}
onChange={() => toggleValue(group.title, option.value)}
className="form-checkbox h-4 w-4 text-purple-600 transition duration-150 ease-in-out"
/>
<span className="ml-2 text-sm text-textStandard group-hover:text-textProminent">
{option.label}
</span>
</div>
{option.count !== undefined && (
<span className="text-sm text-textSubtle">
{option.count}
</span>
)}
</label>
))}
</div>
</div>
))}
</div>
);
}