fix(chat): reduce user message padding and hide top scroll shadow on mobile (#496)

* fix(chat): reduce user message padding on mobile

* fix(mobile): limit drawer swipe gesture to status bar only

* fix(chat): hide top scroll shadow on mobile

* fix: add mobile edge-swipe drawer fallback and normalize comments

- Adds narrow left/right mobile edge swipe zones for drawer gestures
- Keeps drawer swipe access even when the mobile status bar is hidden
- Replaces remaining non-English comments in touched chat/layout files

* fix: remove edge swipe settings and tighten mobile chat spacing

---------

Co-authored-by: Jovines <jovines@qq.com>
Co-authored-by: Bohdan Triapitsyn <artmore@protonmail.com>
This commit is contained in:
Jovines
2026-02-24 17:38:12 +02:00
committed by GitHub
co-authored by Jovines Bohdan Triapitsyn
parent c4f6697ee1
commit fc06a9c499
8 changed files with 73 additions and 53 deletions
+43 -8
View File
@@ -2,8 +2,23 @@ import React from 'react';
import { animate } from 'motion/react';
import { useDrawer } from '@/contexts/DrawerContext';
export function useDrawerSwipe() {
type DrawerSwipeOptions = {
edgeSide?: 'left' | 'right';
strictHorizontalIntent?: boolean;
horizontalIntentRatio?: number;
activationDistance?: number;
onlyWhenClosed?: boolean;
};
export function useDrawerSwipe(options: DrawerSwipeOptions = {}) {
const drawer = useDrawer();
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);
@@ -24,30 +39,50 @@ export function useDrawerSwipe() {
if (isHorizontalSwipeRef.current === null) {
if (Math.abs(deltaX) > 5 || Math.abs(deltaY) > 5) {
isHorizontalSwipeRef.current = Math.abs(deltaX) > Math.abs(deltaY);
if (strictHorizontalIntent) {
isHorizontalSwipeRef.current = Math.abs(deltaX) > Math.abs(deltaY) * horizontalIntentRatio;
} else {
isHorizontalSwipeRef.current = Math.abs(deltaX) > Math.abs(deltaY);
}
}
}
if (isHorizontalSwipeRef.current === true) {
e.preventDefault();
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 (drawer.leftDrawerOpen && deltaX > 10) {
if (!edgeSide && drawer.leftDrawerOpen && deltaX > 10) {
isDraggingDrawerRef.current = 'left';
} else if (drawer.rightDrawerOpen && deltaX < -10) {
} else if (!edgeSide && drawer.rightDrawerOpen && deltaX < -10) {
isDraggingDrawerRef.current = 'right';
} else if (!drawer.leftDrawerOpen && !drawer.rightDrawerOpen) {
if (deltaX > 30) {
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 < -30) {
} 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));
@@ -68,7 +103,7 @@ export function useDrawerSwipe() {
}
}
}
}, [drawer]);
}, [activationDistance, drawer, edgeSide, horizontalIntentRatio, onlyWhenClosed, strictHorizontalIntent]);
const handleTouchEnd = React.useCallback((e: React.TouchEvent) => {
if (isHorizontalSwipeRef.current !== true) return;