mirror of
https://github.com/alkimake/paperclip.git
synced 2026-06-16 02:40:39 +09:00
feat(ui): reconcile backup UI changes with current routing and interaction features
This commit is contained in:
parent
83be94361c
commit
8ee063c4e5
69 changed files with 1591 additions and 666 deletions
|
|
@ -1,5 +1,6 @@
|
|||
import { type ClassValue, clsx } from "clsx";
|
||||
import { twMerge } from "tailwind-merge";
|
||||
import { deriveAgentUrlKey, deriveProjectUrlKey } from "@paperclip/shared";
|
||||
|
||||
export function cn(...inputs: ClassValue[]) {
|
||||
return twMerge(clsx(inputs));
|
||||
|
|
@ -51,3 +52,23 @@ export function formatTokens(n: number): string {
|
|||
export function issueUrl(issue: { id: string; identifier?: string | null }): string {
|
||||
return `/issues/${issue.identifier ?? issue.id}`;
|
||||
}
|
||||
|
||||
/** Build an agent route URL using the short URL key when available. */
|
||||
export function agentRouteRef(agent: { id: string; urlKey?: string | null; name?: string | null }): string {
|
||||
return agent.urlKey ?? deriveAgentUrlKey(agent.name, agent.id);
|
||||
}
|
||||
|
||||
/** Build an agent URL using the short URL key when available. */
|
||||
export function agentUrl(agent: { id: string; urlKey?: string | null; name?: string | null }): string {
|
||||
return `/agents/${agentRouteRef(agent)}`;
|
||||
}
|
||||
|
||||
/** Build a project route reference using the short URL key when available. */
|
||||
export function projectRouteRef(project: { id: string; urlKey?: string | null; name?: string | null }): string {
|
||||
return project.urlKey ?? deriveProjectUrlKey(project.name, project.id);
|
||||
}
|
||||
|
||||
/** Build a project URL using the short URL key when available. */
|
||||
export function projectUrl(project: { id: string; urlKey?: string | null; name?: string | null }): string {
|
||||
return `/projects/${projectRouteRef(project)}`;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue