|
| 1 | +# useDoubleClick Hook |
| 2 | + |
| 3 | +A custom React hook for handling double-click and double-tap events reliably across all platforms, with special optimizations for iOS devices. |
| 4 | + |
| 5 | +## Problem Statement |
| 6 | + |
| 7 | +iOS devices have historically had issues with double-click detection due to: |
| 8 | +- The 300ms click delay on older iOS versions |
| 9 | +- Conflicts between touch and mouse events |
| 10 | +- Unreliable native double-click detection |
| 11 | +- Ghost clicks (duplicate events after touch events) |
| 12 | + |
| 13 | +## Solution |
| 14 | + |
| 15 | +The `useDoubleClick` hook provides a robust solution that: |
| 16 | +- Uses native touch events for better iOS responsiveness |
| 17 | +- Prevents ghost clicks through intelligent timing detection |
| 18 | +- Handles both single and double-click scenarios |
| 19 | +- Works consistently across iOS, Android, and Desktop platforms |
| 20 | + |
| 21 | +## Installation |
| 22 | + |
| 23 | +The hook is located at `src/hooks/use-double-click.ts` and can be imported directly: |
| 24 | + |
| 25 | +```typescript |
| 26 | +import { useDoubleClick } from '@/hooks/use-double-click'; |
| 27 | +``` |
| 28 | + |
| 29 | +## API Reference |
| 30 | + |
| 31 | +### Options |
| 32 | + |
| 33 | +```typescript |
| 34 | +interface UseDoubleClickOptions { |
| 35 | + onSingleClick?: (event: MouseEvent | TouchEvent) => void; |
| 36 | + onDoubleClick: (event: MouseEvent | TouchEvent) => void; |
| 37 | + delay?: number; // Default: 300ms |
| 38 | + doubleClickOnly?: boolean; // Default: false |
| 39 | +} |
| 40 | +``` |
| 41 | + |
| 42 | +### Return Value |
| 43 | + |
| 44 | +```typescript |
| 45 | +interface UseDoubleClickReturn { |
| 46 | + onClick: (event: MouseEvent) => void; |
| 47 | + onTouchEnd: (event: TouchEvent) => void; |
| 48 | +} |
| 49 | +``` |
| 50 | + |
| 51 | +## Usage Examples |
| 52 | + |
| 53 | +### Example 1: Standard Behavior (Single + Double Click) |
| 54 | + |
| 55 | +```tsx |
| 56 | +import { useDoubleClick } from '@/hooks/use-double-click'; |
| 57 | + |
| 58 | +function MyComponent() { |
| 59 | + const handlers = useDoubleClick({ |
| 60 | + onSingleClick: () => { |
| 61 | + console.log('Single click detected'); |
| 62 | + }, |
| 63 | + onDoubleClick: () => { |
| 64 | + console.log('Double click detected'); |
| 65 | + }, |
| 66 | + }); |
| 67 | + |
| 68 | + return ( |
| 69 | + <div {...handlers}> |
| 70 | + Click me once or twice! |
| 71 | + </div> |
| 72 | + ); |
| 73 | +} |
| 74 | +``` |
| 75 | + |
| 76 | +### Example 2: Double-Click Only |
| 77 | + |
| 78 | +```tsx |
| 79 | +import { useDoubleClick } from '@/hooks/use-double-click'; |
| 80 | + |
| 81 | +function MyComponent() { |
| 82 | + const handlers = useDoubleClick({ |
| 83 | + onDoubleClick: () => { |
| 84 | + console.log('Double click detected'); |
| 85 | + }, |
| 86 | + doubleClickOnly: true, // Ignore single clicks |
| 87 | + }); |
| 88 | + |
| 89 | + return ( |
| 90 | + <div {...handlers}> |
| 91 | + Double-click me! |
| 92 | + </div> |
| 93 | + ); |
| 94 | +} |
| 95 | +``` |
| 96 | + |
| 97 | +### Example 3: Custom Delay |
| 98 | + |
| 99 | +```tsx |
| 100 | +import { useDoubleClick } from '@/hooks/use-double-click'; |
| 101 | + |
| 102 | +function MyComponent() { |
| 103 | + const handlers = useDoubleClick({ |
| 104 | + onSingleClick: () => { |
| 105 | + console.log('Single click'); |
| 106 | + }, |
| 107 | + onDoubleClick: () => { |
| 108 | + console.log('Double click'); |
| 109 | + }, |
| 110 | + delay: 500, // 500ms window for double-click detection |
| 111 | + }); |
| 112 | + |
| 113 | + return ( |
| 114 | + <button {...handlers}> |
| 115 | + Click with custom timing |
| 116 | + </button> |
| 117 | + ); |
| 118 | +} |
| 119 | +``` |
| 120 | + |
| 121 | +## iOS-Specific Optimizations |
| 122 | + |
| 123 | +### 1. Touch Event Handling |
| 124 | + |
| 125 | +The hook uses native `touchend` events for better responsiveness on iOS: |
| 126 | + |
| 127 | +```typescript |
| 128 | +onTouchEnd: (event: TouchEvent) => { |
| 129 | + event.preventDefault(); // Prevent ghost clicks |
| 130 | + handleClick(event); |
| 131 | +} |
| 132 | +``` |
| 133 | + |
| 134 | +### 2. Ghost Click Prevention |
| 135 | + |
| 136 | +iOS can fire both touch and click events for the same user interaction. The hook prevents this: |
| 137 | + |
| 138 | +```typescript |
| 139 | +if (event.type === 'click') { |
| 140 | + const now = Date.now(); |
| 141 | + if (now - lastTouchTimeRef.current < 500) { |
| 142 | + event.preventDefault(); |
| 143 | + return; // Ignore ghost click |
| 144 | + } |
| 145 | +} |
| 146 | +``` |
| 147 | + |
| 148 | +### 3. Timing Accuracy |
| 149 | + |
| 150 | +Uses `Date.now()` for precise timing measurements instead of relying on event timestamps: |
| 151 | + |
| 152 | +```typescript |
| 153 | +lastTouchTimeRef.current = Date.now(); |
| 154 | +``` |
| 155 | + |
| 156 | +## Testing |
| 157 | + |
| 158 | +Comprehensive tests are available in `tests/use-double-click.test.ts` covering: |
| 159 | + |
| 160 | +- ✅ Double-click detection |
| 161 | +- ✅ Single-click detection with delay |
| 162 | +- ✅ Double-click only mode |
| 163 | +- ✅ Custom delay timing |
| 164 | +- ✅ iOS touch events |
| 165 | +- ✅ Ghost click prevention |
| 166 | +- ✅ Multiple sequential double-clicks |
| 167 | +- ✅ Edge cases (3+ rapid clicks) |
| 168 | + |
| 169 | +Run tests with: |
| 170 | + |
| 171 | +```bash |
| 172 | +pnpm vitest --run tests/use-double-click.test.ts |
| 173 | +``` |
| 174 | + |
| 175 | +## Demo |
| 176 | + |
| 177 | +A complete interactive demo is available at: |
| 178 | +- **Component**: `src/components/examples/DoubleClickDemo.tsx` |
| 179 | +- **Route**: Create a route that renders `<DoubleClickDemo />` to see it in action |
| 180 | + |
| 181 | +The demo showcases: |
| 182 | +- Standard single + double click behavior |
| 183 | +- Double-click only mode |
| 184 | +- Click counters |
| 185 | +- Visual feedback |
| 186 | +- iOS-specific optimizations explanation |
| 187 | + |
| 188 | +## Browser Compatibility |
| 189 | + |
| 190 | +| Platform | Supported | Notes | |
| 191 | +|----------|-----------|-------| |
| 192 | +| iOS 12+ | ✅ | Fully tested with touch events | |
| 193 | +| iOS 18+ | ✅ | All features working | |
| 194 | +| Android | ✅ | Touch events supported | |
| 195 | +| Desktop | ✅ | Standard mouse events | |
| 196 | +| Safari | ✅ | Optimized for iOS Safari | |
| 197 | +| Chrome | ✅ | All platforms | |
| 198 | +| Firefox | ✅ | All platforms | |
| 199 | + |
| 200 | +## Technical Details |
| 201 | + |
| 202 | +### Type Safety |
| 203 | + |
| 204 | +The hook uses correct browser types: |
| 205 | +- `number` for `setTimeout` return value (not `NodeJS.Timeout`) |
| 206 | +- `window.setTimeout` explicitly used for browser environment |
| 207 | +- Proper TypeScript event types (`MouseEvent`, `TouchEvent`) |
| 208 | + |
| 209 | +### Memory Management |
| 210 | + |
| 211 | +- Clears timers properly to prevent memory leaks |
| 212 | +- Resets state after each interaction |
| 213 | +- No memory retained between hook re-renders |
| 214 | + |
| 215 | +### Performance |
| 216 | + |
| 217 | +- Minimal re-renders using `useCallback` and `useRef` |
| 218 | +- No state updates for internal timing logic |
| 219 | +- Efficient event handling |
| 220 | + |
| 221 | +## Migration from Native Events |
| 222 | + |
| 223 | +If you're currently using native double-click: |
| 224 | + |
| 225 | +```tsx |
| 226 | +// Before (unreliable on iOS) |
| 227 | +<div onDoubleClick={handleDoubleClick}> |
| 228 | + Click me |
| 229 | +</div> |
| 230 | + |
| 231 | +// After (reliable on all platforms) |
| 232 | +import { useDoubleClick } from '@/hooks/use-double-click'; |
| 233 | + |
| 234 | +const handlers = useDoubleClick({ |
| 235 | + onDoubleClick: handleDoubleClick, |
| 236 | +}); |
| 237 | + |
| 238 | +<div {...handlers}> |
| 239 | + Click me |
| 240 | +</div> |
| 241 | +``` |
| 242 | + |
| 243 | +## Troubleshooting |
| 244 | + |
| 245 | +### Issue: Single clicks are detected as double-clicks |
| 246 | + |
| 247 | +**Solution**: Increase the `delay` option: |
| 248 | + |
| 249 | +```tsx |
| 250 | +const handlers = useDoubleClick({ |
| 251 | + onDoubleClick: handleDoubleClick, |
| 252 | + delay: 400, // Increase from default 300ms |
| 253 | +}); |
| 254 | +``` |
| 255 | + |
| 256 | +### Issue: Double-clicks are too slow |
| 257 | + |
| 258 | +**Solution**: Decrease the `delay` option: |
| 259 | + |
| 260 | +```tsx |
| 261 | +const handlers = useDoubleClick({ |
| 262 | + onDoubleClick: handleDoubleClick, |
| 263 | + delay: 200, // Decrease from default 300ms |
| 264 | +}); |
| 265 | +``` |
| 266 | + |
| 267 | +### Issue: Touch events not working on desktop |
| 268 | + |
| 269 | +**Solution**: This is expected behavior. Desktop uses mouse events. The hook automatically handles both. |
| 270 | + |
| 271 | +## Contributing |
| 272 | + |
| 273 | +When modifying this hook: |
| 274 | +1. Ensure all tests pass: `pnpm vitest --run tests/use-double-click.test.ts` |
| 275 | +2. Test on actual iOS devices (iOS 12+) |
| 276 | +3. Verify no regressions on Android and Desktop |
| 277 | +4. Update documentation if API changes |
| 278 | + |
| 279 | +## License |
| 280 | + |
| 281 | +This hook is part of the project and follows the same license terms. |
0 commit comments