Implement: US: Mobile Book Search and Discovery #24

Merged
crisleo94 merged 3 commits from feature/mobile-search-discovery into main 2026-05-29 05:13:03 +00:00
7 changed files with 169 additions and 83 deletions
Showing only changes of commit ade810a013 - Show all commits
@@ -0,0 +1,65 @@
.container {
position: absolute;
top: 100%;
left: 0;
right: 0;
z-index: 100;
background: #fff;
border: 1px solid #e5e7eb;
border-top: none;
border-radius: 0 0 10px 10px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
max-height: 320px;
overflow-y: auto;
}
.infoText {
padding: 12px 16px;
color: #9ca3af;
font-size: 13px;
}
.suggestionItem {
display: flex;
align-items: center;
gap: 12px;
padding: 10px 16px;
cursor: pointer;
border-bottom: 1px solid #f3f4f6;
min-height: 44px;
}
.suggestionItem:hover {
background: #f9fafb;
}
.coverImage {
width: 32px;
height: 48px;
object-fit: cover;
border-radius: 4px;
}
.coverPlaceholder {
font-size: 20px;
flex-shrink: 0;
}
.bookInfo {
min-width: 0;
}
.bookTitle {
font-size: 14px;
font-weight: 600;
color: #1f2937;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.bookAuthor {
font-size: 12px;
color: #6b7280;
margin-top: 2px;
}
@@ -1,7 +1,9 @@
import React, { useCallback, useEffect, useRef, useState } from "react";
import { useEffect, useRef, useState } from "react";
import { useNavigate } from "react-router-dom";
import { booksApi } from "../../api/books";
import { useDebounce } from "../../hooks/useDebounce";
import type { BookListItem } from "../../types/book";
import styles from "./SearchSuggestions.module.css";
interface SearchSuggestionsProps {
query: string;
@@ -10,15 +12,6 @@ interface SearchSuggestionsProps {
onSelectSuggestion: () => void;
}
function useDebounce<T>(value: T, delay: number): T {
const [debounced, setDebounced] = useState(value);
useEffect(() => {
const timer = setTimeout(() => setDebounced(value), delay);
return () => clearTimeout(timer);
}, [value, delay]);
return debounced;
}
export function SearchSuggestions({ query, visible, onClose, onSelectSuggestion }: SearchSuggestionsProps) {
const navigate = useNavigate();
const [suggestions, setSuggestions] = useState<BookListItem[]>([]);
@@ -81,81 +74,42 @@ export function SearchSuggestions({ query, visible, onClose, onSelectSuggestion
if (!visible || !query.trim()) return null;
return (
<div
ref={containerRef}
style={{
position: "absolute",
top: "100%",
left: 0,
right: 0,
zIndex: 100,
background: "#fff",
border: "1px solid #e5e7eb",
borderTop: "none",
borderRadius: "0 0 10px 10px",
boxShadow: "0 8px 24px rgba(0,0,0,0.12)",
maxHeight: 320,
overflowY: "auto",
}}
>
<div ref={containerRef} className={styles.container}>
{loading && (
<div style={{ padding: "12px 16px", color: "#9ca3af", fontSize: 13 }}>
<div className={styles.infoText}>
Searching...
</div>
)}
{!loading && suggestions.length === 0 && debouncedQuery.trim() && (
<div style={{ padding: "12px 16px", color: "#9ca3af", fontSize: 13 }}>
<div className={styles.infoText}>
No quick suggestions
</div>
)}
{suggestions.map((book) => (
<div
key={book.id}
className={styles.suggestionItem}
onClick={() => {
onSelectSuggestion();
navigate(`/books/${book.id}`);
}}
style={{
display: "flex",
alignItems: "center",
gap: 12,
padding: "10px 16px",
cursor: "pointer",
borderBottom: "1px solid #f3f4f6",
minHeight: 44,
}}
onMouseEnter={(e) => {
(e.currentTarget as HTMLElement).style.background = "#f9fafb";
}}
onMouseLeave={(e) => {
(e.currentTarget as HTMLElement).style.background = "";
}}
>
<span style={{ fontSize: 20, flexShrink: 0 }}>
<span className={styles.coverPlaceholder}>
{book.cover_image ? (
<img
src={book.cover_image}
alt=""
style={{ width: 32, height: 48, objectFit: "cover", borderRadius: 4 }}
className={styles.coverImage}
/>
) : (
"📖"
)}
</span>
<div style={{ minWidth: 0 }}>
<div
style={{
fontSize: 14,
fontWeight: 600,
color: "#1f2937",
overflow: "hidden",
textOverflow: "ellipsis",
whiteSpace: "nowrap",
}}
>
<div className={styles.bookInfo}>
<div className={styles.bookTitle}>
{book.title}
</div>
<div style={{ fontSize: 12, color: "#6b7280", marginTop: 2 }}>
<div className={styles.bookAuthor}>
{book.author || "Unknown Author"}
</div>
</div>
+4 -1
View File
@@ -1 +1,4 @@
export { usePaginatedQuery } from "./usePaginatedQuery";
export { usePaginatedQuery } from "./usePaginatedQuery";
export { useDebounce } from "./useDebounce";
export { useVoiceSearch } from "./useVoiceSearch";
export { useMediaQuery } from "./useMediaQuery";
+18
View File
@@ -0,0 +1,18 @@
import { useEffect, useState } from "react";
/**
* A hook that debounces a value by the specified delay.
* @param value - The value to debounce
* @param delay - The delay in milliseconds
* @returns The debounced value
*/
export function useDebounce<T>(value: T, delay: number): T {
const [debounced, setDebounced] = useState(value);
useEffect(() => {
const timer = setTimeout(() => setDebounced(value), delay);
return () => clearTimeout(timer);
}, [value, delay]);
return debounced;
}
+13
View File
@@ -0,0 +1,13 @@
.bookCard {
background: #fff;
border-radius: 12px;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
cursor: pointer;
transition: transform 0.15s, box-shadow 0.15s;
}
.bookCard:hover {
transform: translateY(-2px);
box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
+3 -24
View File
@@ -4,9 +4,11 @@ import { booksApi } from "../api/books";
import type { BookListItem, BookSearchParams } from "../types/book";
import { READING_STATUS_OPTIONS } from "../types/book";
import { useAuth } from "../context/AuthContext";
import { useDebounce } from "../hooks/useDebounce";
import { useVoiceSearch } from "../hooks/useVoiceSearch";
import { useMediaQuery, BREAKPOINTS } from "../hooks/useMediaQuery";
import { SearchSuggestions } from "../components/search/SearchSuggestions";
import styles from "./Library.module.css";
interface FilterState {
genre: string;
@@ -14,15 +16,6 @@ interface FilterState {
reading_status: string;
}
function useDebounce<T>(value: T, delay: number): T {
const [debounced, setDebounced] = useState(value);
useEffect(() => {
const timer = setTimeout(() => setDebounced(value), delay);
return () => clearTimeout(timer);
}, [value, delay]);
return debounced;
}
/** WCAG 2.1 minimum touch target */
const TOUCH_TARGET: React.CSSProperties = {
minHeight: 44,
@@ -480,23 +473,9 @@ export function LibraryPage() {
<div
key={book.id}
onClick={() => navigate(`/books/${book.id}`)}
className={styles.bookCard}
style={{
background: "#fff",
borderRadius: 12,
overflow: "hidden",
boxShadow: "0 2px 8px rgba(0,0,0,0.06)",
cursor: "pointer",
transition: "transform 0.15s, box-shadow 0.15s",
display: isMobile ? "flex" : "block",
minHeight: isMobile ? undefined : undefined,
}}
onMouseEnter={(e) => {
(e.currentTarget as HTMLElement).style.transform = "translateY(-2px)";
(e.currentTarget as HTMLElement).style.boxShadow = "0 4px 16px rgba(0,0,0,0.1)";
}}
onMouseLeave={(e) => {
(e.currentTarget as HTMLElement).style.transform = "";
(e.currentTarget as HTMLElement).style.boxShadow = "0 2px 8px rgba(0,0,0,0.06)";
}}
>
<div style={{
+54
View File
@@ -0,0 +1,54 @@
/**
* Type declarations for the Web Speech API (SpeechRecognition).
* These are not part of the standard TypeScript DOM lib types.
* Install @types/dom-speech-recognition for full coverage.
*/
/* eslint-disable @typescript-eslint/no-explicit-any */
interface SpeechRecognition extends EventTarget {
continuous: boolean;
interimResults: boolean;
lang: string;
onresult: ((event: SpeechRecognitionEvent) => void) | null;
onerror: ((event: SpeechRecognitionErrorEvent) => void) | null;
onend: (() => void) | null;
start(): void;
stop(): void;
abort(): void;
}
interface SpeechRecognitionEvent extends Event {
readonly resultIndex: number;
readonly results: SpeechRecognitionResultList;
}
interface SpeechRecognitionResultList {
readonly length: number;
[index: number]: SpeechRecognitionResult;
}
interface SpeechRecognitionResult {
readonly isFinal: boolean;
readonly length: number;
[index: number]: SpeechRecognitionAlternative;
}
interface SpeechRecognitionAlternative {
readonly transcript: string;
readonly confidence: number;
}
interface SpeechRecognitionErrorEvent extends Event {
readonly error: string;
readonly message: string;
}
interface SpeechRecognitionConstructor {
new (): SpeechRecognition;
}
interface Window {
SpeechRecognition?: SpeechRecognitionConstructor;
webkitSpeechRecognition?: SpeechRecognitionConstructor;
}