Some checks failed
build-packages / resolve bundled mosh-client (push) Has been cancelled
build-packages / resolve bundled et-client (push) Has been cancelled
build-packages / build-macos (push) Has been cancelled
build-packages / build-windows (push) Has been cancelled
build-packages / build-linux-x64 (push) Has been cancelled
build-packages / build-linux-arm64 (push) Has been cancelled
build-packages / release (push) Has been cancelled
build-packages / update Nix release metadata (push) Has been cancelled
build-packages / bump homebrew tap (push) Has been cancelled
test / lint-and-test (push) Has been cancelled
AI automation / Route event (push) Has been cancelled
AI automation / Hand reopened issue to maintainers (push) Has been cancelled
AI automation / Clean source issue state (push) Has been cancelled
AI automation / Reconcile handoffs (push) Has been cancelled
AI automation / Classify issue (push) Has been cancelled
AI automation / Claude Code smoke (push) Has been cancelled
AI automation / Review issue follow-up (push) Has been cancelled
AI automation / Publish issue follow-up (push) Has been cancelled
AI automation / Implement with Claude Code (push) Has been cancelled
AI automation / Publish implement PR (push) Has been cancelled
AI automation / Continue queued issue comments (push) Has been cancelled
AI automation / Codex review loop (push) Has been cancelled
AI automation / Publish Codex fix (push) Has been cancelled
AI automation / Clear Codex dispatch marker (push) Has been cancelled
AI automation / Own PR re-request Codex (push) Has been cancelled
AI automation / External PR re-request Codex (push) Has been cancelled
AI automation / Poll Codex reaction / retry (push) Has been cancelled
build-et-binaries / build-linux-x64 (push) Has been cancelled
build-et-binaries / build-linux-arm64 (push) Has been cancelled
build-et-binaries / build-macos-universal (push) Has been cancelled
build-et-binaries / build-windows-x64 (push) Has been cancelled
build-et-binaries / release (push) Has been cancelled
63 lines
2.0 KiB
TypeScript
63 lines
2.0 KiB
TypeScript
export const WORKSPACE_SESSION_DRAG_TYPE = 'application/x-netcatty-workspace-session';
|
|
|
|
type DataTransferLike = {
|
|
types: DOMStringList | readonly string[];
|
|
getData: (format: string) => string;
|
|
};
|
|
|
|
export function dataTransferHasType(dataTransfer: Pick<DataTransferLike, 'types'>, type: string): boolean {
|
|
return Array.prototype.includes.call(dataTransfer.types, type);
|
|
}
|
|
|
|
export function hasWorkspaceSessionDrag(dataTransfer: Pick<DataTransferLike, 'types'>): boolean {
|
|
return dataTransferHasType(dataTransfer, WORKSPACE_SESSION_DRAG_TYPE);
|
|
}
|
|
|
|
export function getWorkspaceSessionDragId(dataTransfer: DataTransferLike): string {
|
|
return dataTransfer.getData(WORKSPACE_SESSION_DRAG_TYPE) || dataTransfer.getData('session-id');
|
|
}
|
|
|
|
export function isPointInsideRect(
|
|
point: { clientX: number; clientY: number },
|
|
rect: Pick<DOMRect, 'left' | 'right' | 'top' | 'bottom'>,
|
|
): boolean {
|
|
return point.clientX >= rect.left
|
|
&& point.clientX <= rect.right
|
|
&& point.clientY >= rect.top
|
|
&& point.clientY <= rect.bottom;
|
|
}
|
|
|
|
export type TopTabInsertionTarget = {
|
|
tabId: string;
|
|
position: 'before' | 'after';
|
|
};
|
|
|
|
export function getTopTabInsertionTarget(
|
|
point: { clientX: number; clientY: number },
|
|
topTabsRoot: HTMLElement | null,
|
|
): TopTabInsertionTarget | null {
|
|
if (!topTabsRoot || !isPointInsideRect(point, topTabsRoot.getBoundingClientRect())) return null;
|
|
|
|
const tabs = Array.from(topTabsRoot.querySelectorAll<HTMLElement>('[data-tab-id]'))
|
|
.filter((tab) => tab.dataset.tabType !== 'root');
|
|
|
|
if (tabs.length === 0) return null;
|
|
|
|
for (const tab of tabs) {
|
|
const rect = tab.getBoundingClientRect();
|
|
const midpoint = rect.left + rect.width / 2;
|
|
const tabId = tab.dataset.tabId;
|
|
if (!tabId) continue;
|
|
if (point.clientX <= midpoint) {
|
|
return { tabId, position: 'before' };
|
|
}
|
|
if (point.clientX <= rect.right) {
|
|
return { tabId, position: 'after' };
|
|
}
|
|
}
|
|
|
|
const lastTab = tabs[tabs.length - 1];
|
|
const lastTabId = lastTab?.dataset.tabId;
|
|
return lastTabId ? { tabId: lastTabId, position: 'after' } : null;
|
|
}
|