-
Notifications
You must be signed in to change notification settings - Fork 38
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
8 changed files
with
861 additions
and
5 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
File renamed without changes.
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,65 @@ | ||
--- | ||
file: auto-complete.tsx | ||
order: 2 | ||
--- | ||
|
||
```tsx | ||
import React from "react"; | ||
import { | ||
Command, | ||
CommandList, | ||
CommandItem, | ||
CommandGroup, | ||
CommandEmpty, | ||
} from "@/components/ui/command"; | ||
import { type Tag as TagType } from "./tag-input"; | ||
|
||
type AutocompleteProps = { | ||
tags: TagType[]; | ||
setTags: React.Dispatch<React.SetStateAction<TagType[]>>; | ||
autocompleteOptions: TagType[]; | ||
maxTags?: number; | ||
onTagAdd?: (tag: string) => void; | ||
allowDuplicates: boolean; | ||
children: React.ReactNode; | ||
}; | ||
|
||
export const Autocomplete: React.FC<AutocompleteProps> = ({ | ||
tags, | ||
setTags, | ||
autocompleteOptions, | ||
maxTags, | ||
onTagAdd, | ||
allowDuplicates, | ||
children, | ||
}) => { | ||
return ( | ||
<Command className="border"> | ||
{children} | ||
<CommandList> | ||
<CommandEmpty>No results found.</CommandEmpty> | ||
<CommandGroup heading="Suggestions"> | ||
{autocompleteOptions.map((option) => ( | ||
<CommandItem key={option.id}> | ||
<div | ||
onClick={() => { | ||
if (maxTags && tags.length >= maxTags) return; | ||
if ( | ||
!allowDuplicates && | ||
tags.some((tag) => tag.text === option.text) | ||
) | ||
return; | ||
setTags([...tags, option]); | ||
onTagAdd?.(option.text); | ||
}} | ||
> | ||
{option.text} | ||
</div> | ||
</CommandItem> | ||
))} | ||
</CommandGroup> | ||
</CommandList> | ||
</Command> | ||
); | ||
}; | ||
``` |
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,128 @@ | ||
--- | ||
file: tag-input-demo.tsx | ||
order: 5 | ||
--- | ||
|
||
```tsx | ||
import { | ||
Form, | ||
FormControl, | ||
FormDescription, | ||
FormField, | ||
FormItem, | ||
FormLabel, | ||
FormMessage, | ||
} from "@/components/ui/form"; | ||
import { Tag, TagInput } from "@/components/tag-input"; | ||
import Link from "next/link"; | ||
import { Button, buttonVariants } from "@/components/ui/button"; | ||
import { z } from "zod"; | ||
import { useForm } from "react-hook-form"; | ||
import { zodResolver } from "@hookform/resolvers/zod"; | ||
import React from "react"; | ||
import { toast } from "@/components/ui/use-toast"; | ||
|
||
const FormSchema = z.object({ | ||
topics: z.array( | ||
z.object({ | ||
id: z.string(), | ||
text: z.string(), | ||
}) | ||
), | ||
}); | ||
|
||
export default function Hero() { | ||
const form = useForm<z.infer<typeof FormSchema>>({ | ||
resolver: zodResolver(FormSchema), | ||
}); | ||
|
||
const [tags, setTags] = React.useState<Tag[]>([]); | ||
|
||
const { setValue } = form; | ||
|
||
function onSubmit(data: z.infer<typeof FormSchema>) { | ||
toast({ | ||
title: "You submitted the following values:", | ||
description: ( | ||
<pre className="mt-2 w-[340px] rounded-md bg-slate-950 p-4"> | ||
<code className="text-white">{JSON.stringify(data, null, 2)}</code> | ||
</pre> | ||
), | ||
}); | ||
} | ||
|
||
return ( | ||
<section className="z-10 max-w-5xl w-full flex flex-col items-center text-center gap-5"> | ||
<div className="z-10 w-full flex flex-col items-center text-center gap-5"> | ||
<h1 className="scroll-m-20 text-4xl font-bold tracking-tight"> | ||
Shadcn Tag Input | ||
</h1> | ||
<p className="text-muted-foreground max-w-[450px]"> | ||
An implementation of a Tag Input component built on top of Shadcn | ||
UI's input component. | ||
</p> | ||
<div className="flex gap-2 mt-1"> | ||
<Link | ||
href="#try" | ||
className={`${buttonVariants({ | ||
variant: "default", | ||
size: "lg", | ||
})} min-w-[150px] shadow-sm`} | ||
> | ||
Try it out | ||
</Link> | ||
<Link | ||
href="https://github.com/JaleelB/shadcn-tag-input" | ||
className={`${buttonVariants({ | ||
variant: "secondary", | ||
size: "lg", | ||
})} shadow-sm`} | ||
> | ||
Github | ||
</Link> | ||
</div> | ||
</div> | ||
|
||
<div id="try" className="w-full py-8"> | ||
<div className="w-full relative my-4 flex flex-col space-y-2"> | ||
<div className="preview flex min-h-[350px] w-full justify-center p-10 items-center mt-2 ring-offset-background focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 relative rounded-md border"> | ||
<Form {...form}> | ||
<form | ||
onSubmit={form.handleSubmit(onSubmit)} | ||
className="space-y-8 flex flex-col items-start" | ||
> | ||
<FormField | ||
control={form.control} | ||
name="topics" | ||
render={({ field }) => ( | ||
<FormItem className="flex flex-col items-start"> | ||
<FormLabel className="text-left">Topics</FormLabel> | ||
<FormControl> | ||
<TagInput | ||
{...field} | ||
placeholder="Enter a topic" | ||
tags={tags} | ||
className="sm:min-w-[450px]" | ||
setTags={(newTags) => { | ||
setTags(newTags); | ||
setValue("topics", newTags as [Tag, ...Tag[]]); | ||
}} | ||
/> | ||
</FormControl> | ||
<FormDescription> | ||
These are the topics that you're interested in. | ||
</FormDescription> | ||
<FormMessage /> | ||
</FormItem> | ||
)} | ||
/> | ||
<Button type="submit">Submit</Button> | ||
</form> | ||
</Form> | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
); | ||
} | ||
``` |
Oops, something went wrong.