## Added Features - Add VS Code save-as-image flow for assistant messages via webview bridge + native save dialog. - Add hourly desktop update checks after startup. - Add new tool output display mode: `Changes` (auto-expand edit/write/patch only; keep activity expanded; mode guidance text). - Add GitHub PR attachment flow in chat input with PR picker + attached PR chip/details. - Add mobile overlay presentation for GitHub Issue and PR pickers (shared with desktop picker content). ## Fixes - Save-gate project icon updates until explicit Save; allow icon removal with same save-gated behavior. - Restore clickable chat action buttons in sticky header mode (desktop + Firefox hit-target issue). - Clamp sticky user messages to bounded chat height and allow internal scrolling. - Prevent drawer context crash during iPad/tablet orientation switching. - Improve text-selection action menu placement on narrow screens. - Move assistant message time into clock tooltip; keep duration display clean. - Hide `Link GitHub Issue` row in VS Code chat input area (GitHub flow is not yet ready there). - Remove laggy close animation in text-selection popover; keep open motion/positioning behavior. - Fetch branches when picker opens and cache empty; show loading state instead of false “No branches found”. - Fix share-image export metadata rendering (theme background resolution, timestamp rendering, footer alignment). - Scope MCP services status/toggles to active directory to avoid cross-project leakage. - Improve long user-message clamp behavior (40% cap variant, hidden scrollbar, scroll shadows, expansion detection). - Fix desktop `Check for Updates` menu handler; prevent duplicate checks; show clear success/error toasts. - Stabilize long user-message scrolling behavior (follow-up hardening). - Avoid premature web update failure on slower servers. - Restore user message image previews + fullscreen gallery navigation payload. - Repair desktop chat drag-and-drop image attachments when native drop coords are missing. - Move GitHub issue linking entry into Add attachment menu. - Align header context usage percentage visuals with context panel. - Align `@` file search with active project in all runtimes. - Route `@` file discovery through OpenCode SDK `find.files`; remove legacy `/api/fs/search` reliance. - Make chat `@` mention behavior consistent with files-style behavior. - Keep status-row todos in stable order after status changes; add compact status icons; replace noisy priority labels. ## Refactors / UX Consistency - Simplify chat attachment model and remove project file picker path. - Keep composer focused on `@` mention file flow. - Use direct `Attach files` action in VS Code instead of attachment dropdown path. - Unify issue/PR picker behavior between desktop and mobile overlays.
195 lines
6.5 KiB
TypeScript
195 lines
6.5 KiB
TypeScript
import React from 'react';
|
|
import { animate } from 'motion/react';
|
|
import { useOptionalDrawer } from '@/contexts/DrawerContext';
|
|
|
|
type DrawerSwipeOptions = {
|
|
edgeSide?: 'left' | 'right';
|
|
strictHorizontalIntent?: boolean;
|
|
horizontalIntentRatio?: number;
|
|
activationDistance?: number;
|
|
onlyWhenClosed?: boolean;
|
|
};
|
|
|
|
export function useDrawerSwipe(options: DrawerSwipeOptions = {}) {
|
|
const drawer = useOptionalDrawer();
|
|
const {
|
|
edgeSide,
|
|
strictHorizontalIntent = false,
|
|
horizontalIntentRatio = 1.35,
|
|
activationDistance = 30,
|
|
onlyWhenClosed = false,
|
|
} = options;
|
|
const touchStartXRef = React.useRef(0);
|
|
const touchStartYRef = React.useRef(0);
|
|
const isHorizontalSwipeRef = React.useRef<boolean | null>(null);
|
|
const isDraggingDrawerRef = React.useRef<'left' | 'right' | null>(null);
|
|
|
|
const handleTouchStart = React.useCallback((e: React.TouchEvent) => {
|
|
if (!drawer) return;
|
|
touchStartXRef.current = e.touches[0].clientX;
|
|
touchStartYRef.current = e.touches[0].clientY;
|
|
isHorizontalSwipeRef.current = null;
|
|
isDraggingDrawerRef.current = null;
|
|
}, [drawer]);
|
|
|
|
const handleTouchMove = React.useCallback((e: React.TouchEvent) => {
|
|
if (!drawer) return;
|
|
const currentX = e.touches[0].clientX;
|
|
const currentY = e.touches[0].clientY;
|
|
const deltaX = currentX - touchStartXRef.current;
|
|
const deltaY = currentY - touchStartYRef.current;
|
|
|
|
if (isHorizontalSwipeRef.current === null) {
|
|
if (Math.abs(deltaX) > 5 || Math.abs(deltaY) > 5) {
|
|
if (strictHorizontalIntent) {
|
|
isHorizontalSwipeRef.current = Math.abs(deltaX) > Math.abs(deltaY) * horizontalIntentRatio;
|
|
} else {
|
|
isHorizontalSwipeRef.current = Math.abs(deltaX) > Math.abs(deltaY);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (isHorizontalSwipeRef.current === true) {
|
|
if (onlyWhenClosed && (drawer.leftDrawerOpen || drawer.rightDrawerOpen)) {
|
|
return;
|
|
}
|
|
|
|
const leftDrawerWidthPx = drawer.leftDrawerWidth.current || window.innerWidth * 0.85;
|
|
const rightDrawerWidthPx = drawer.rightDrawerWidth.current || window.innerWidth * 0.85;
|
|
|
|
if (isDraggingDrawerRef.current === null) {
|
|
if (!edgeSide && drawer.leftDrawerOpen && deltaX > 10) {
|
|
isDraggingDrawerRef.current = 'left';
|
|
} else if (!edgeSide && drawer.rightDrawerOpen && deltaX < -10) {
|
|
isDraggingDrawerRef.current = 'right';
|
|
} else if (!drawer.leftDrawerOpen && !drawer.rightDrawerOpen) {
|
|
if (edgeSide === 'left') {
|
|
if (deltaX > activationDistance) {
|
|
isDraggingDrawerRef.current = 'left';
|
|
}
|
|
} else if (edgeSide === 'right') {
|
|
if (deltaX < -activationDistance) {
|
|
isDraggingDrawerRef.current = 'right';
|
|
}
|
|
} else if (deltaX > activationDistance) {
|
|
isDraggingDrawerRef.current = 'left';
|
|
} else if (deltaX < -activationDistance) {
|
|
isDraggingDrawerRef.current = 'right';
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!isDraggingDrawerRef.current) {
|
|
return;
|
|
}
|
|
|
|
e.preventDefault();
|
|
|
|
if (isDraggingDrawerRef.current === 'left') {
|
|
if (drawer.leftDrawerOpen) {
|
|
const progress = Math.max(0, Math.min(1, deltaX / leftDrawerWidthPx));
|
|
drawer.leftDrawerX.set(-leftDrawerWidthPx * (1 - progress));
|
|
} else {
|
|
const progress = Math.max(0, Math.min(1, deltaX / leftDrawerWidthPx));
|
|
drawer.leftDrawerX.set(-leftDrawerWidthPx + (leftDrawerWidthPx * progress));
|
|
}
|
|
}
|
|
|
|
if (isDraggingDrawerRef.current === 'right') {
|
|
if (drawer.rightDrawerOpen) {
|
|
const progress = Math.max(0, Math.min(1, -deltaX / rightDrawerWidthPx));
|
|
drawer.rightDrawerX.set(rightDrawerWidthPx * (1 - progress));
|
|
} else {
|
|
const progress = Math.max(0, Math.min(1, -deltaX / rightDrawerWidthPx));
|
|
drawer.rightDrawerX.set(rightDrawerWidthPx - (rightDrawerWidthPx * progress));
|
|
}
|
|
}
|
|
}
|
|
}, [activationDistance, drawer, edgeSide, horizontalIntentRatio, onlyWhenClosed, strictHorizontalIntent]);
|
|
|
|
const handleTouchEnd = React.useCallback((e: React.TouchEvent) => {
|
|
if (!drawer) return;
|
|
if (isHorizontalSwipeRef.current !== true) return;
|
|
|
|
const endX = e.changedTouches[0].clientX;
|
|
const deltaX = endX - touchStartXRef.current;
|
|
const velocityThreshold = 500;
|
|
const progressThreshold = 0.3;
|
|
|
|
const leftDrawerWidthPx = drawer.leftDrawerWidth.current || window.innerWidth * 0.85;
|
|
const rightDrawerWidthPx = drawer.rightDrawerWidth.current || window.innerWidth * 0.85;
|
|
|
|
if (isDraggingDrawerRef.current === 'left') {
|
|
const isOpen = drawer.leftDrawerOpen;
|
|
const currentX = drawer.leftDrawerX.get();
|
|
const progress = isOpen
|
|
? 1 - Math.abs(currentX) / leftDrawerWidthPx
|
|
: 1 + currentX / leftDrawerWidthPx;
|
|
|
|
const shouldComplete = progress > progressThreshold || Math.abs(deltaX * 10) > velocityThreshold;
|
|
|
|
if (shouldComplete) {
|
|
const targetX = isOpen ? -leftDrawerWidthPx : 0;
|
|
animate(drawer.leftDrawerX, targetX, {
|
|
type: 'spring',
|
|
stiffness: 400,
|
|
damping: 35,
|
|
mass: 0.8,
|
|
});
|
|
drawer.setMobileLeftDrawerOpen(!isOpen);
|
|
} else {
|
|
const targetX = isOpen ? 0 : -leftDrawerWidthPx;
|
|
animate(drawer.leftDrawerX, targetX, {
|
|
type: 'spring',
|
|
stiffness: 400,
|
|
damping: 35,
|
|
mass: 0.8,
|
|
});
|
|
}
|
|
|
|
isDraggingDrawerRef.current = null;
|
|
return;
|
|
}
|
|
|
|
if (isDraggingDrawerRef.current === 'right') {
|
|
const isOpen = drawer.rightDrawerOpen;
|
|
const currentX = drawer.rightDrawerX.get();
|
|
const progress = isOpen
|
|
? 1 - Math.abs(currentX) / rightDrawerWidthPx
|
|
: 1 - currentX / rightDrawerWidthPx;
|
|
|
|
const shouldComplete = progress > progressThreshold || Math.abs(deltaX * 10) > velocityThreshold;
|
|
|
|
if (shouldComplete) {
|
|
const targetX = isOpen ? rightDrawerWidthPx : 0;
|
|
animate(drawer.rightDrawerX, targetX, {
|
|
type: 'spring',
|
|
stiffness: 400,
|
|
damping: 35,
|
|
mass: 0.8,
|
|
});
|
|
drawer.setRightSidebarOpen(!isOpen);
|
|
} else {
|
|
const targetX = isOpen ? 0 : rightDrawerWidthPx;
|
|
animate(drawer.rightDrawerX, targetX, {
|
|
type: 'spring',
|
|
stiffness: 400,
|
|
damping: 35,
|
|
mass: 0.8,
|
|
});
|
|
}
|
|
|
|
isDraggingDrawerRef.current = null;
|
|
return;
|
|
}
|
|
|
|
isHorizontalSwipeRef.current = null;
|
|
}, [drawer]);
|
|
|
|
return {
|
|
handleTouchStart,
|
|
handleTouchMove,
|
|
handleTouchEnd,
|
|
};
|
|
}
|