app-ui / forms / textareas
With Avatar And Actions
02-with-avatar-and-actions.jsx
'use client'
import { useState } from 'react'
import {
FaceFrownIcon,
FaceSmileIcon,
FireIcon,
HandThumbUpIcon,
HeartIcon,
PaperClipIcon,
XMarkIcon,
} from '@heroicons/react/20/solid'
import { Label, Listbox, ListboxButton, ListboxOption, ListboxOptions } from '@headlessui/react'
const moods = [
{ name: 'Excited', value: 'excited', icon: FireIcon, iconColor: 'text-white', bgColor: 'bg-red-500' },
{ name: 'Loved', value: 'loved', icon: HeartIcon, iconColor: 'text-white', bgColor: 'bg-pink-400' },
{ name: 'Happy', value: 'happy', icon: FaceSmileIcon, iconColor: 'text-white', bgColor: 'bg-green-400' },
{ name: 'Sad', value: 'sad', icon: FaceFrownIcon, iconColor: 'text-white', bgColor: 'bg-yellow-400' },
{ name: 'Thumbsy', value: 'thumbsy', icon: HandThumbUpIcon, iconColor: 'text-white', bgColor: 'bg-blue-500' },
{
name: 'I feel nothing',
value: null,
icon: XMarkIcon,
iconColor: 'text-gray-400 dark:text-gray-500',
bgColor: 'bg-transparent',
},
]
function classNames(...classes) {
return classes.filter(Boolean).join(' ')
}
export default function Example() {
const [selected, setSelected] = useState(moods[5])
return (
<div className="flex items-start space-x-4">
<div className="shrink-0">
<img
alt=""
src="https://images.unsplash.com/photo-1550525811-e5869dd03032?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=facearea&facepad=2&w=256&h=256&q=80"
className="inline-block size-10 rounded-full bg-gray-100 outline -outline-offset-1 outline-black/5 dark:bg-gray-800 dark:outline-white/10"
/>
</div>
<div className="min-w-0 flex-1">
<form action="#" className="relative">
<div className="rounded-lg bg-white outline-1 -outline-offset-1 outline-gray-300 focus-within:outline-2 focus-within:-outline-offset-2 focus-within:outline-indigo-600 dark:bg-white/5 dark:outline-white/10 dark:focus-within:outline-indigo-500">
<label htmlFor="comment" className="sr-only">
Add your comment
</label>
<textarea
id="comment"
name="comment"
rows={3}
placeholder="Add your comment..."
className="block w-full resize-none bg-transparent px-3 py-1.5 text-base text-gray-900 placeholder:text-gray-400 focus:outline-none sm:text-sm/6 dark:text-white dark:placeholder:text-gray-500"
defaultValue={''}
/>
{/* Spacer element to match the height of the toolbar */}
<div aria-hidden="true" className="py-2">
{/* Matches height of button in toolbar (1px border + 36px content height) */}
<div className="py-px">
<div className="h-9" />
</div>
</div>
</div>
<div className="absolute inset-x-0 bottom-0 flex justify-between py-2 pr-2 pl-3">
<div className="flex items-center space-x-5">
<div className="flex items-center">
<button
type="button"
className="-m-2.5 flex size-10 items-center justify-center rounded-full text-gray-400 hover:text-gray-500 dark:text-gray-500 dark:hover:text-white"
>
<PaperClipIcon aria-hidden="true" className="size-5" />
<span className="sr-only">Attach a file</span>
</button>
</div>
<div className="flex items-center">
<Listbox value={selected} onChange={setSelected}>
<Label className="sr-only">Your mood</Label>
<div className="relative">
<ListboxButton className="relative -m-2.5 flex size-10 items-center justify-center rounded-full text-gray-400 hover:text-gray-500 dark:text-gray-500 dark:hover:text-white">
<span className="flex items-center justify-center">
{selected.value === null ? (
<span>
<FaceSmileIcon aria-hidden="true" className="size-5 shrink-0" />
<span className="sr-only">Add your mood</span>
</span>
) : (
<span>
<span
className={classNames(
selected.bgColor,
'flex size-8 items-center justify-center rounded-full',
)}
>
<selected.icon aria-hidden="true" className="size-5 shrink-0 text-white" />
</span>
<span className="sr-only">{selected.name}</span>
</span>
)}
</span>
</ListboxButton>
<ListboxOptions
transition
className="absolute z-10 mt-1 -ml-6 w-60 rounded-lg bg-white py-3 text-base shadow-sm outline-1 outline-black/5 data-leave:transition data-leave:duration-100 data-leave:ease-in data-closed:data-leave:opacity-0 sm:ml-auto sm:w-64 sm:text-sm dark:bg-gray-800 dark:shadow-none dark:-outline-offset-1 dark:outline-white/10"
>
{moods.map((mood) => (
<ListboxOption
key={mood.value}
value={mood}
className="relative cursor-default bg-white px-3 py-2 text-gray-900 select-none data-focus:bg-gray-100 dark:bg-transparent dark:text-white dark:data-focus:bg-white/5"
>
<div className="flex items-center">
<div
className={classNames(
mood.bgColor,
'flex size-8 items-center justify-center rounded-full',
)}
>
<mood.icon aria-hidden="true" className={classNames(mood.iconColor, 'size-5 shrink-0')} />
</div>
<span className="ml-3 block truncate font-medium">{mood.name}</span>
</div>
</ListboxOption>
))}
</ListboxOptions>
</div>
</Listbox>
</div>
</div>
<div className="shrink-0">
<button
type="submit"
className="inline-flex items-center rounded-md bg-indigo-600 px-3 py-2 text-sm font-semibold text-white shadow-xs hover:bg-indigo-500 focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-indigo-600 dark:bg-indigo-500 dark:shadow-none dark:hover:bg-indigo-400 dark:focus-visible:outline-indigo-500"
>
Post
</button>
</div>
</div>
</form>
</div>
</div>
)
}