mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-19 20:10:39 +09:00
Polish operator sidebar and issue property controls (#5355)
## Thinking Path > - Paperclip orchestrates AI agents for zero-human companies > - Operators use the board sidebar and issue properties panel to move between companies and understand task metadata > - Small UI regressions in these controls make repeated board operation slower and less predictable > - The local branch already contained targeted fixes for company ordering, issue date display, and sidebar rail sizing > - This pull request isolates those operator UI quality-of-life fixes into a standalone branch against `origin/master` > - The benefit is a focused, reviewable PR that can merge independently of the issue-thread activity work ## What Changed - Shows issue property timestamps with time, not just dates. - Adds edit-mode support for ordering companies in the sidebar company menu. - Fixes a workspace switcher rail regression and keeps the account menu aligned with the rail width. - Includes focused component coverage for the touched controls. ## Verification - `pnpm install --frozen-lockfile` - `pnpm exec vitest run ui/src/components/IssueProperties.test.tsx ui/src/components/SidebarCompanyMenu.test.tsx ui/src/components/Layout.test.tsx ui/src/components/SidebarAccountMenu.test.tsx` — 4 files passed, 29 tests passed. - `pnpm --filter /ui typecheck` - PR checks on `a4030f7a` are green: policy, verify, serialized server suites 1/4-4/4, e2e, Canary Dry Run, Greptile Review, and Snyk. - Captured a local Storybook screenshot of `Product/Navigation & Layout` after the sidebar polish: `/tmp/pap-3659-screenshots/navigation-layout-after.png`. - Confirmed the PR changes 8 files and does not include `pnpm-lock.yaml` or `.github/workflows/*`. ## Risks - Low to moderate UI risk: this touches shared sidebar components and issue metadata rendering. - The company ordering behavior depends on existing query/cache behavior, so stale cache bugs would show up as ordering inconsistencies. - No database, API, workflow, or lockfile changes are included. > For core feature work, check [`ROADMAP.md`](ROADMAP.md) first and discuss it in `#dev` before opening the PR. Feature PRs that overlap with planned core work may need to be redirected — check the roadmap first. See `CONTRIBUTING.md`. ## Model Used - OpenAI Codex, GPT-5 coding agent, shell/tool-use enabled, used to split the existing branch, verify the isolated PR branch, and create this PR. ## Checklist - [x] I have included a thinking path that traces from project context to this change - [x] I have specified the model used (with version and capability details) - [x] I have checked ROADMAP.md and confirmed this PR does not duplicate planned core work - [x] I have run tests locally and they pass - [x] I have added or updated tests where applicable - [x] If this change affects the UI, I have included before/after screenshots - [x] I have updated relevant documentation to reflect my changes - [x] I have considered and documented any risks above - [x] I will address all Greptile and reviewer comments before requesting merge --------- Co-authored-by: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
68f69975a4
commit
4103978578
10 changed files with 297 additions and 313 deletions
|
|
@ -11,7 +11,6 @@ import {
|
|||
} from "lucide-react";
|
||||
import { BreadcrumbBar } from "@/components/BreadcrumbBar";
|
||||
import { CommandPalette } from "@/components/CommandPalette";
|
||||
import { CompanyRail } from "@/components/CompanyRail";
|
||||
import { CompanySwitcher } from "@/components/CompanySwitcher";
|
||||
import { KeyboardShortcutsCheatsheetContent } from "@/components/KeyboardShortcutsCheatsheet";
|
||||
import { MobileBottomNav } from "@/components/MobileBottomNav";
|
||||
|
|
@ -75,7 +74,6 @@ function SidebarShell({ collapsed = false }: { collapsed?: boolean }) {
|
|||
return (
|
||||
<div className="h-[520px] overflow-hidden border border-border bg-background">
|
||||
<div className="flex h-full min-h-0">
|
||||
<CompanyRail />
|
||||
<div className={cn("overflow-hidden transition-[width]", collapsed ? "w-0" : "w-60")}>
|
||||
<Sidebar />
|
||||
</div>
|
||||
|
|
@ -249,12 +247,6 @@ function NavigationLayoutStories() {
|
|||
</div>
|
||||
</Section>
|
||||
|
||||
<Section eyebrow="Company rail" title="Multi-company rail with selected, inactive, live, and unread indicators">
|
||||
<div className="h-[420px] w-[72px] overflow-hidden border border-border bg-background">
|
||||
<CompanyRail />
|
||||
</div>
|
||||
</Section>
|
||||
|
||||
<Section eyebrow="Menus" title="Account, company, and switcher menus in open state">
|
||||
<div className="grid gap-5 xl:grid-cols-3">
|
||||
<div className="relative h-[440px] overflow-hidden border border-border bg-background">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue