Files
openchamber/packages/ui/src/lib/projectActions.ts
T
00821700de chore: remove dead code (59 unused files + ~125 unused exports) (#1835)
* chore: remove dead/unreferenced files across ui, vscode

Remove 59 unused source files (components, hooks, lib utils, stores,
barrels, and orphaned vscode github modules) that are not imported by
any entry-reachable code. Also drop a stale test mock for the removed
execCommands module.

Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com>

* refactor: remove unused exported symbols (types, functions, consts, hooks)

Remove exported symbols whose identifier is referenced nowhere in the
repository (verified via repo-wide search), across ui types/contracts,
lib utilities, sync layer, stores, and components. Also drop the few
imports/private helpers orphaned by these removals.

Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com>

* refactor: remove more unused exports (desktop, shortcuts, worktree, vscode)

Continue removing repo-wide unreferenced exported functions, consts and
types across lib/desktop, shortcuts, worktreeSessionCreator, sync, and
vscode gitService, with cascading orphaned helpers/imports cleaned up.

Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com>

* chore: add dead-code cleanup tooling

* refactor: checkpoint dead-code cleanup

* refactor: remove dead-code suppressions

---------

Co-authored-by: Serhii Dziupin <makeittech@users.noreply.github.com>
Co-authored-by: Bohdan Triapitsyn <artmore@protonmail.com>
2026-06-26 19:27:53 +03:00

152 lines
4.4 KiB
TypeScript

import type {
DesktopSshInstance,
DesktopSshPortForward,
} from '@/lib/desktopSsh';
import type { IconName } from "@/components/icon/icons";
export type ProjectActionIconKey =
| 'play'
| 'build'
| 'lint'
| 'terminal'
| 'tools'
| 'bug'
| 'flask'
| 'rocket'
| 'code'
| 'server'
| 'branch'
| 'search'
| 'settings'
| 'brain'
| 'stack'
| 'robot'
| 'command'
| 'file';
export const PROJECT_ACTION_ICONS: Array<{
key: ProjectActionIconKey;
label: string;
Icon: IconName;
}> = [
{ key: 'play', label: 'Play', Icon: 'play' },
{ key: 'build', label: 'Build', Icon: 'hammer' },
{ key: 'lint', label: 'Lint', Icon: 'checkbox-circle' },
{ key: 'terminal', label: 'Terminal', Icon: 'terminal-box' },
{ key: 'tools', label: 'Tools', Icon: 'tools' },
{ key: 'bug', label: 'Bug', Icon: 'bug' },
{ key: 'flask', label: 'Flask', Icon: 'flask' },
{ key: 'rocket', label: 'Rocket', Icon: 'rocket' },
{ key: 'code', label: 'Code', Icon: 'code' },
{ key: 'server', label: 'Server', Icon: 'server' },
{ key: 'branch', label: 'Branch', Icon: 'git-branch' },
{ key: 'search', label: 'Search', Icon: 'search' },
{ key: 'settings', label: 'Settings', Icon: 'settings-3' },
{ key: 'brain', label: 'Brain', Icon: 'brain-ai-3' },
{ key: 'stack', label: 'Stack', Icon: 'stack' },
{ key: 'robot', label: 'Robot', Icon: 'robot-2' },
{ key: 'command', label: 'Command', Icon: 'command' },
{ key: 'file', label: 'File', Icon: 'file-text' },
];
export const PROJECT_ACTION_ICON_MAP = Object.fromEntries(
PROJECT_ACTION_ICONS.map((entry) => [entry.key, entry.Icon])
) as Record<ProjectActionIconKey, IconName>;
export const PROJECT_ACTIONS_UPDATED_EVENT = 'openchamber:project-actions-updated';
export const normalizeProjectActionDirectory = (value: string): string => {
const trimmed = (value || '').trim().replace(/\\/g, '/');
if (!trimmed) {
return '';
}
if (trimmed === '/') {
return '/';
}
return trimmed.length > 1 ? trimmed.replace(/\/+$/, '') : trimmed;
};
export const toProjectActionRunKey = (directory: string, actionId: string): string => {
return `${normalizeProjectActionDirectory(directory)}::${actionId}`;
};
export type ProjectActionDesktopForwardOption = {
id: string;
label: string;
url: string;
};
const toBrowserHost = (host: string | undefined): string => {
const value = (host || '').trim();
if (!value || value === '0.0.0.0' || value === '::') {
return '127.0.0.1';
}
return value;
};
const normalizePort = (value: number | undefined): number | null => {
if (typeof value !== 'number' || !Number.isFinite(value)) {
return null;
}
const rounded = Math.round(value);
if (rounded < 1 || rounded > 65535) {
return null;
}
return rounded;
};
const buildForwardOption = (instance: DesktopSshInstance, forward: DesktopSshPortForward): ProjectActionDesktopForwardOption | null => {
if (!forward.enabled || forward.type !== 'local') {
return null;
}
const localPort = normalizePort(forward.localPort);
const remotePort = normalizePort(forward.remotePort);
if (!localPort || !remotePort) {
return null;
}
const localHost = toBrowserHost(forward.localHost || instance.localForward.bindHost || '127.0.0.1');
const remoteHost = (forward.remoteHost || '127.0.0.1').trim();
const instanceLabel = (instance.nickname || instance.id || 'instance').trim();
return {
id: `${instance.id}::${forward.id}`,
label: `${instanceLabel} - ${localHost}:${localPort} -> ${remoteHost}:${remotePort}`,
url: `http://${localHost}:${localPort}`,
};
};
export const buildProjectActionDesktopForwardOptions = (
instances: DesktopSshInstance[]
): ProjectActionDesktopForwardOption[] => {
const options: ProjectActionDesktopForwardOption[] = [];
for (const instance of instances) {
if (!instance?.id || !Array.isArray(instance.portForwards)) {
continue;
}
for (const forward of instance.portForwards) {
const option = buildForwardOption(instance, forward);
if (option) {
options.push(option);
}
}
}
return options;
};
export const resolveProjectActionDesktopForwardUrl = (
selectionId: string | undefined,
instances: DesktopSshInstance[]
): string | null => {
const key = (selectionId || '').trim();
if (!key) {
return null;
}
const options = buildProjectActionDesktopForwardOptions(instances);
const matched = options.find((entry) => entry.id === key);
return matched?.url || null;
};