Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: quick "go to settings" for workspace selector #213

Merged
merged 4 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 12 additions & 4 deletions src/features/workspace/components/workspace-name.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import {
} from "@stacklok/ui-kit";
import { twMerge } from "tailwind-merge";
import { useMutationCreateWorkspace } from "../hooks/use-mutation-create-workspace";
import { FormEvent, useState } from "react";
import { FormEvent, useEffect, useState } from "react";
import { useNavigate } from "react-router-dom";

export function WorkspaceName({
Expand All @@ -23,10 +23,17 @@ export function WorkspaceName({
isArchived: boolean | undefined;
}) {
const navigate = useNavigate();
const [name, setName] = useState(workspaceName);
const { mutateAsync, isPending, error } = useMutationCreateWorkspace();
const { mutateAsync, isPending, error, reset } = useMutationCreateWorkspace();
const errorMsg = error?.detail ? `${error?.detail}` : "";

const [name, setName] = useState(() => workspaceName);
// NOTE: When navigating from one settings page to another, this value is not
// updated, hence the synchronization effect
useEffect(() => {
setName(workspaceName);
reset();
}, [reset, workspaceName]);

const handleSubmit = (e: FormEvent<HTMLFormElement>) => {
e.preventDefault();
mutateAsync(
Expand All @@ -38,13 +45,14 @@ export function WorkspaceName({
};

return (
<Form onSubmit={handleSubmit} validationBehavior="aria">
<Form onSubmit={handleSubmit} validationBehavior="aria" key={workspaceName}>
<Card
className={twMerge(className, "shrink-0")}
data-testid="workspace-name"
>
<CardBody>
<TextField
key={workspaceName}
aria-label="Workspace name"
value={name}
name="Workspace name"
Expand Down
32 changes: 27 additions & 5 deletions src/features/workspace/components/workspaces-selection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ import { useState } from "react";
import { useMutationActivateWorkspace } from "../hooks/use-mutation-activate-workspace";
import clsx from "clsx";
import { useActiveWorkspaceName } from "../hooks/use-active-workspace-name";
import { hrefs } from "@/lib/hrefs";
import { twMerge } from "tailwind-merge";

export function WorkspacesSelection() {
const queryClient = useQueryClient();
Expand Down Expand Up @@ -46,7 +48,7 @@ export function WorkspacesSelection() {
<ChevronDown />
</Button>

<Popover className="w-1/4 p-4" placement="bottom left">
<Popover className="w-[32rem] p-3" placement="bottom left">
<div>
<div>
<SearchField
Expand All @@ -65,7 +67,7 @@ export function WorkspacesSelection() {
onAction={(v) => {
handleWorkspaceClick(v?.toString());
}}
className="py-2 pt-3 max-h-80 overflow-auto"
className="-mx-1 my-2 max-h-80 overflow-auto"
renderEmptyState={() => (
<p className="text-center">No workspaces found</p>
)}
Expand All @@ -74,16 +76,36 @@ export function WorkspacesSelection() {
<ListBoxItem
id={item.name}
key={item.name}
textValue={item.name}
data-is-selected={item.name === activeWorkspaceName}
className={clsx(
"cursor-pointer py-2 m-1 text-base hover:bg-gray-300",
"grid grid-cols-[auto_1.5rem] group/selector cursor-pointer py-2 m-1 text-base hover:bg-gray-200 rounded-sm",
{
"!bg-gray-900 hover:bg-gray-900 !text-gray-25 hover:!text-gray-25":
item.is_active,
},
)}
>
{item.name}
<span className="block truncate">{item.name}</span>

<LinkButton
href={hrefs.workspaces.edit(item.name)}
onPress={() => setIsOpen(false)}
isIcon
variant="tertiary"
className={twMerge(
"ml-auto size-6 group-hover/selector:opacity-100 opacity-0 transition-opacity",
item.is_active
? "hover:bg-gray-800 pressed:bg-gray-700"
: "hover:bg-gray-50 hover:text-primary",
)}
>
<Settings
className={twMerge(
item.is_active ? "text-gray-25" : "text-secondary",
)}
/>
</LinkButton>
</ListBoxItem>
)}
</ListBox>
Expand All @@ -92,7 +114,7 @@ export function WorkspacesSelection() {
href="/workspaces"
onPress={() => setIsOpen(false)}
variant="tertiary"
className="text-secondary h-8 pl-2 gap-2 flex mt-2 justify-start"
className="text-secondary h-10 pl-2 gap-2 flex mt-2 justify-start"
>
<Settings />
Manage Workspaces
Expand Down
Loading