convert conversation icons to buttons (accessibility) (#192)
* update sidebar overflow * update all clickable icons to buttons * refactor buttons so they are not inside other buttons * format doc * update input background to transparent * adjust btns size to match #202 * update text size per #202
This commit is contained in:
parent
df7c363ccb
commit
c3f2dced56
|
@ -63,90 +63,98 @@ export const ConversationComponent: FC<Props> = ({
|
||||||
}, [isRenaming, isDeleting]);
|
}, [isRenaming, isDeleting]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<button
|
<div className="relative flex items-center">
|
||||||
className={`flex w-full cursor-pointer items-center gap-3 rounded-lg p-3 text-[12.5px] leading-3 transition-colors duration-200 hover:bg-[#343541]/90 ${
|
|
||||||
loading ? 'disabled:cursor-not-allowed' : ''
|
|
||||||
} ${
|
|
||||||
selectedConversation.id === conversation.id ? 'bg-[#343541]/90' : ''
|
|
||||||
}`}
|
|
||||||
onClick={() => onSelectConversation(conversation)}
|
|
||||||
disabled={loading}
|
|
||||||
draggable="true"
|
|
||||||
onDragStart={(e) => handleDragStart(e, conversation)}
|
|
||||||
>
|
|
||||||
<IconMessage size={18} />
|
|
||||||
|
|
||||||
{isRenaming && selectedConversation.id === conversation.id ? (
|
{isRenaming && selectedConversation.id === conversation.id ? (
|
||||||
<input
|
<div className="flex w-full items-center gap-3 bg-[#343541]/90 p-3">
|
||||||
className="flex-1 overflow-hidden overflow-ellipsis border-b border-neutral-400 bg-transparent pr-1 text-left text-white outline-none focus:border-neutral-100"
|
<IconMessage size={18} />
|
||||||
type="text"
|
<input
|
||||||
value={renameValue}
|
className="mr-12 flex-1 overflow-hidden text-[12.5px] leading-3 overflow-ellipsis border-neutral-400 bg-transparent text-left text-white outline-none focus:border-neutral-100"
|
||||||
onChange={(e) => setRenameValue(e.target.value)}
|
type="text"
|
||||||
onKeyDown={handleEnterDown}
|
value={renameValue}
|
||||||
autoFocus
|
onChange={(e) => setRenameValue(e.target.value)}
|
||||||
/>
|
onKeyDown={handleEnterDown}
|
||||||
) : (
|
autoFocus
|
||||||
<div className="flex-1 overflow-hidden overflow-ellipsis whitespace-nowrap pr-1 text-left">
|
/>
|
||||||
{conversation.name}
|
|
||||||
</div>
|
</div>
|
||||||
|
) : (
|
||||||
|
<button
|
||||||
|
className={`flex w-full cursor-pointer items-center gap-3 rounded-lg p-3 text-sm transition-colors duration-200 hover:bg-[#343541]/90 ${
|
||||||
|
loading ? 'disabled:cursor-not-allowed' : ''
|
||||||
|
} ${
|
||||||
|
selectedConversation.id === conversation.id ? 'bg-[#343541]/90' : ''
|
||||||
|
}`}
|
||||||
|
onClick={() => onSelectConversation(conversation)}
|
||||||
|
disabled={loading}
|
||||||
|
draggable="true"
|
||||||
|
onDragStart={(e) => handleDragStart(e, conversation)}
|
||||||
|
>
|
||||||
|
<IconMessage size={18} />
|
||||||
|
<div
|
||||||
|
className={`relative max-h-5 flex-1 text-[12.5px] leading-3 overflow-hidden text-ellipsis whitespace-nowrap break-all text-left ${
|
||||||
|
selectedConversation.id === conversation.id ? 'pr-12' : 'pr-1'
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
{conversation.name}
|
||||||
|
</div>
|
||||||
|
</button>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{(isDeleting || isRenaming) &&
|
{(isDeleting || isRenaming) &&
|
||||||
selectedConversation.id === conversation.id && (
|
selectedConversation.id === conversation.id && (
|
||||||
<div className="-ml-2 flex gap-1">
|
<div className="visible absolute right-1 z-10 flex text-gray-300">
|
||||||
<IconCheck
|
<button
|
||||||
className="min-w-[20px] text-neutral-400 hover:text-neutral-100"
|
className="min-w-[20px] p-1 text-neutral-400 hover:text-neutral-100"
|
||||||
size={16}
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
|
|
||||||
if (isDeleting) {
|
if (isDeleting) {
|
||||||
onDeleteConversation(conversation);
|
onDeleteConversation(conversation);
|
||||||
} else if (isRenaming) {
|
} else if (isRenaming) {
|
||||||
handleRename(conversation);
|
handleRename(conversation);
|
||||||
}
|
}
|
||||||
|
|
||||||
setIsDeleting(false);
|
setIsDeleting(false);
|
||||||
setIsRenaming(false);
|
setIsRenaming(false);
|
||||||
}}
|
}}
|
||||||
/>
|
>
|
||||||
|
<IconCheck size={18} />
|
||||||
<IconX
|
</button>
|
||||||
className="min-w-[20px] text-neutral-400 hover:text-neutral-100"
|
<button
|
||||||
size={16}
|
className="min-w-[20px] p-1 text-neutral-400 hover:text-neutral-100"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
setIsDeleting(false);
|
setIsDeleting(false);
|
||||||
setIsRenaming(false);
|
setIsRenaming(false);
|
||||||
}}
|
}}
|
||||||
/>
|
>
|
||||||
|
<IconX size={18} />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{selectedConversation.id === conversation.id &&
|
{selectedConversation.id === conversation.id &&
|
||||||
!isDeleting &&
|
!isDeleting &&
|
||||||
!isRenaming && (
|
!isRenaming && (
|
||||||
<div className="-ml-2 flex gap-1">
|
<div className="visible absolute right-1 z-10 flex text-gray-300">
|
||||||
<IconPencil
|
<button
|
||||||
className="min-w-[20px] text-neutral-400 hover:text-neutral-100"
|
className="min-w-[20px] p-1 text-neutral-400 hover:text-neutral-100"
|
||||||
size={18}
|
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
setIsRenaming(true);
|
setIsRenaming(true);
|
||||||
setRenameValue(selectedConversation.name);
|
setRenameValue(selectedConversation.name);
|
||||||
}}
|
}}
|
||||||
/>
|
>
|
||||||
|
<IconPencil size={18} />
|
||||||
<IconTrash
|
</button>
|
||||||
className=" min-w-[20px] text-neutral-400 hover:text-neutral-100"
|
<button
|
||||||
size={18}
|
className="min-w-[20px] p-1 text-neutral-400 hover:text-neutral-100"
|
||||||
onClick={(e) => {
|
onClick={(e) => {
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
setIsDeleting(true);
|
setIsDeleting(true);
|
||||||
}}
|
}}
|
||||||
/>
|
>
|
||||||
|
<IconTrash size={18} />
|
||||||
|
</button>
|
||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
</button>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
@ -150,7 +150,7 @@ export const Sidebar: FC<Props> = ({
|
||||||
<Search searchTerm={searchTerm} onSearch={setSearchTerm} />
|
<Search searchTerm={searchTerm} onSearch={setSearchTerm} />
|
||||||
)}
|
)}
|
||||||
|
|
||||||
<div className="flex-grow overflow-auto">
|
<div className="flex-grow overflow-y-auto overflow-x-clip">
|
||||||
{folders.length > 0 && (
|
{folders.length > 0 && (
|
||||||
<div className="flex border-b border-white/20 pb-2">
|
<div className="flex border-b border-white/20 pb-2">
|
||||||
<Folders
|
<Folders
|
||||||
|
|
Loading…
Reference in New Issue