-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from thaian1234/ft/category
Ft/category
- Loading branch information
Showing
31 changed files
with
477 additions
and
470 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -29,6 +29,7 @@ yarn-error.log* | |
# local env files | ||
.env*.local | ||
.env | ||
.env.production | ||
|
||
# vercel | ||
.vercel | ||
|
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,90 @@ | ||
"use client"; | ||
|
||
import * as React from "react"; | ||
|
||
import { categoryApi } from "@/lib/features/category/apis"; | ||
import { useCategoryTree } from "@/lib/features/category/hooks/use-category-tree"; | ||
|
||
import { | ||
Accordion, | ||
AccordionContent, | ||
AccordionItem, | ||
AccordionTrigger, | ||
} from "@/components/ui/accordion"; | ||
import { Checkbox } from "@/components/ui/checkbox"; | ||
import { Label } from "@/components/ui/label"; | ||
|
||
import { Spinner } from "./ui/spinner"; | ||
|
||
export function CategoryFilter() { | ||
const { data: categories, isPending } = categoryApi.query.useGetDetail({ | ||
page: "1", | ||
}); | ||
const { expandedIds, selectedIds, handleSelect, handleExpand } = | ||
useCategoryTree(); | ||
|
||
if (isPending) return <Spinner />; | ||
if (!categories) return <div>No categories found</div>; | ||
|
||
return ( | ||
<Accordion type="single" className="w-full max-w-sm"> | ||
<AccordionItem value="categories"> | ||
<AccordionTrigger className="text-lg font-semibold"> | ||
Categories | ||
</AccordionTrigger> | ||
<AccordionContent> | ||
<div className="space-y-4"> | ||
{categories.data.categories.map((category) => ( | ||
<div key={category.id} className="space-y-2"> | ||
<div className="flex items-center space-x-2"> | ||
<Checkbox | ||
id={category.id} | ||
checked={selectedIds.includes( | ||
category.id, | ||
)} | ||
onCheckedChange={() => | ||
handleSelect(category.id) | ||
} | ||
/> | ||
<Label | ||
htmlFor={category.id} | ||
className="text-sm font-medium" | ||
> | ||
{category.name} | ||
</Label> | ||
</div> | ||
<div className="ml-6 space-y-2"> | ||
{category.children && | ||
category.children.map((subcategory) => ( | ||
<div | ||
key={subcategory.id} | ||
className="flex items-center space-x-2" | ||
> | ||
<Checkbox | ||
id={subcategory.id} | ||
checked={selectedIds.includes( | ||
subcategory.id, | ||
)} | ||
onCheckedChange={() => | ||
handleSelect( | ||
subcategory.id, | ||
) | ||
} | ||
/> | ||
<Label | ||
htmlFor={subcategory.id} | ||
className="text-sm font-normal leading-none peer-disabled:cursor-not-allowed peer-disabled:opacity-70" | ||
> | ||
{subcategory.name} | ||
</Label> | ||
</div> | ||
))} | ||
</div> | ||
</div> | ||
))} | ||
</div> | ||
</AccordionContent> | ||
</AccordionItem> | ||
</Accordion> | ||
); | ||
} |
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,58 @@ | ||
"use client" | ||
|
||
import * as React from "react" | ||
import * as AccordionPrimitive from "@radix-ui/react-accordion" | ||
import { ChevronDown } from "lucide-react" | ||
|
||
import { cn } from "@/lib/utils" | ||
|
||
const Accordion = AccordionPrimitive.Root | ||
|
||
const AccordionItem = React.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" | ||
|
||
const AccordionTrigger = React.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 font-medium transition-all hover:underline [&[data-state=open]>svg]:rotate-180", | ||
className | ||
)} | ||
{...props} | ||
> | ||
{children} | ||
<ChevronDown className="h-4 w-4 shrink-0 transition-transform duration-200" /> | ||
</AccordionPrimitive.Trigger> | ||
</AccordionPrimitive.Header> | ||
)) | ||
AccordionTrigger.displayName = AccordionPrimitive.Trigger.displayName | ||
|
||
const AccordionContent = React.forwardRef< | ||
React.ElementRef<typeof AccordionPrimitive.Content>, | ||
React.ComponentPropsWithoutRef<typeof AccordionPrimitive.Content> | ||
>(({ className, children, ...props }, ref) => ( | ||
<AccordionPrimitive.Content | ||
ref={ref} | ||
className="overflow-hidden text-sm transition-all 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 | ||
|
||
export { Accordion, AccordionItem, AccordionTrigger, AccordionContent } |
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
Oops, something went wrong.