All files / app/(tabs)/scanner/components/modals CatFoodSearchModal.tsx

80.7% Statements 46/57
88.46% Branches 23/26
68.42% Functions 13/19
81.81% Lines 45/55

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473                      1x                                                                                                           14x 14x 14x     14x 14x         14x   2x 2x         2x 2x 2x                       14x   11x 1x       11x 9x 9x       2x 2x       2x 2x 2x               14x   1x   1x               14x 1x 1x           14x               14x             14x 4x           14x   4x   4x                   1x                                                                                                                                                                                                                                                                       14x 11x 10x     14x                                                                                                                                                                                                                   6x                                         10x 7x                         3x                        
import React, { useCallback, useEffect, useRef, useState } from 'react';
import { FlatList, Image, Modal } from 'react-native';
import { Input, Separator, Spinner, Text, XStack, YStack } from 'tamagui';
import { Button } from '@/src/design-system/components';
import { IconSymbol } from '@/src/components/ui/IconSymbol';
import { useCatFoodStore, useSearchResults } from '@/src/store/catFoodStore';
import type { CatFood } from '@/src/types/catFood';
 
/**
 * 搜索配置常量
 */
const SEARCH_CONFIG = {
  /** 搜索防抖延迟时间(毫秒) */
  DEBOUNCE_DELAY: 500,
  /** Modal 最大宽度 */
  MAX_WIDTH: 600,
  /** Modal 高度百分比 */
  HEIGHT_PERCENTAGE: '85%',
  /** Modal 最大高度 */
  MAX_HEIGHT: 700,
} as const;
 
/**
 * 猫粮搜索 Modal 组件属性
 */
interface CatFoodSearchModalProps {
  /** 是否显示模态框 */
  visible: boolean;
  /** 关闭回调 */
  onClose: () => void;
  /** 选择猫粮回调 */
  onSelectCatFood: (catFood: CatFood) => void;
}
 
/**
 * 猫粮搜索模态框
 *
 * @description
 * 提供猫粮搜索功能的弹出式模态框组件,支持实时搜索和结果展示。
 *
 * @features
 * - ✅ 实时搜索:输入时自动搜索,无需点击按钮
 * - ✅ 防抖优化:避免频繁请求,提升性能
 * - ✅ 弹出式设计:居中显示,不占满整个屏幕
 * - ✅ 搜索数据库中的猫粮
 * - ✅ 显示搜索结果列表
 * - ✅ 支持选择猫粮进入详情/扫描流程
 *
 * @architecture
 * - Modal: React Native 原生组件,提供更好的平台体验
 * - FlatList: React Native 原生组件,优化列表性能
 * - UI Components: Tamagui 组件,统一主题和样式
 * - State Management: React Hooks (useState, useEffect, useCallback)
 * - Component Design: 组件化设计,将空状态提取为独立组件
 *
 * @example
 * ```tsx
 * <CatFoodSearchModal
 *   visible={showSearch}
 *   onClose={() => setShowSearch(false)}
 *   onSelectCatFood={(catFood) => handleSelectCatFood(catFood)}
 * />
 * ```
 */
export function CatFoodSearchModal({ visible, onClose, onSelectCatFood }: CatFoodSearchModalProps) {
  const [searchText, setSearchText] = useState('');
  const [searched, setSearched] = useState(false);
  const searchTimeoutRef = useRef<NodeJS.Timeout | null>(null);
 
  // 使用 catFoodStore - 使用选择器避免不必要的重渲染
  const { results: catFoods, isLoading: loading } = useSearchResults();
  const searchCatFoods = useCatFoodStore((state) => state.searchCatFoods);
 
  /**
   * 搜索猫粮
   */
  const handleSearch = useCallback(
    async (text: string) => {
      const trimmedText = text.trim();
      Iif (!trimmedText) {
        setSearched(false);
        return;
      }
 
      try {
        await searchCatFoods(trimmedText);
        setSearched(true);
      } catch (error) {
        console.error('搜索失败:', error);
        setSearched(true);
      }
    },
    [searchCatFoods]
  );
 
  /**
   * 实时搜索 - 使用防抖避免频繁请求
   */
  useEffect(() => {
    // 清除之前的定时器
    if (searchTimeoutRef.current) {
      clearTimeout(searchTimeoutRef.current as any);
    }
 
    // 如果搜索框为空,立即清空结果
    if (!searchText.trim()) {
      setSearched(false);
      return;
    }
 
    // 设置新的定时器,延迟后执行搜索
    searchTimeoutRef.current = setTimeout(() => {
      handleSearch(searchText);
    }, SEARCH_CONFIG.DEBOUNCE_DELAY) as any;
 
    // 清理函数
    return () => {
      Eif (searchTimeoutRef.current) {
        clearTimeout(searchTimeoutRef.current as any);
      }
    };
  }, [searchText, handleSearch]);
 
  /**
   * 选择猫粮
   */
  const handleSelectCatFood = useCallback(
    (catFood: CatFood) => {
      onSelectCatFood(catFood);
      // 重置状态
      resetState();
    },
    [onSelectCatFood]
  );
 
  /**
   * 重置状态
   */
  const resetState = useCallback(() => {
    setSearchText('');
    setSearched(false);
  }, []);
 
  /**
   * 关闭模态框
   */
  const handleClose = useCallback(() => {
    resetState();
    onClose();
  }, [onClose, resetState]);
 
  /**
   * 清空搜索
   */
  const handleClear = useCallback(() => {
    setSearchText('');
  }, []);
 
  /**
   * 检查是否有成分信息
   */
  const hasIngredientInfo = useCallback((catFood: CatFood): boolean => {
    return catFood.ingredient && catFood.ingredient.length > 0;
  }, []);
 
  /**
   * 渲染猫粮卡片
   */
  const renderCatFoodItem = useCallback(
    ({ item, index }: { item: CatFood; index: number }) => {
      const hasInfo = hasIngredientInfo(item);
 
      return (
        <YStack paddingBottom="$3">
          <YStack
            testID={`cat-food-item-${item.id}`}
            backgroundColor="$background"
            borderRadius="$4"
            borderWidth={1}
            borderColor="$gray5"
            overflow="hidden"
            pressStyle={{ opacity: 0.9 }}
            onPress={() => handleSelectCatFood(item)}
          >
            {/* 猫粮基本信息 */}
            <XStack padding="$3" gap="$3" alignItems="center">
              {/* 猫粮图片 */}
              {item.imageUrl ? (
                <YStack
                  width={80}
                  height={80}
                  borderRadius="$3"
                  overflow="hidden"
                  backgroundColor="$gray3"
                >
                  <Image
                    source={{ uri: item.imageUrl }}
                    style={{ width: 80, height: 80 }}
                    resizeMode="cover"
                  />
                </YStack>
              ) : (
                <YStack
                  width={80}
                  height={80}
                  backgroundColor="$gray3"
                  borderRadius="$3"
                  alignItems="center"
                  justifyContent="center"
                >
                  <IconSymbol name="photo" size={32} color="$gray9" />
                </YStack>
              )}
 
              {/* 猫粮信息 */}
              <YStack flex={1} gap="$2">
                {/* 名称 */}
                <Text fontSize="$5" fontWeight="bold" numberOfLines={2}>
                  {item.name}
                </Text>
 
                {/* 品牌 */}
                <Text fontSize="$3" color="$gray10">
                  {item.brand || '未知品牌'}
                </Text>
 
                {/* 评分 */}
                <XStack alignItems="center" gap="$2">
                  <XStack alignItems="center" gap="$1">
                    <IconSymbol name="star.fill" size={14} color="$yellow9" />
                    <Text fontSize="$3" fontWeight="600">
                      {item.score.toFixed(1)}
                    </Text>
                  </XStack>
                  <Text fontSize="$2" color="$gray10">
                    ({item.countNum}人评价)
                  </Text>
                </XStack>
 
                {/* 成分信息状态标签 */}
                <XStack alignItems="center" gap="$2">
                  {hasInfo ? (
                    <XStack
                      alignItems="center"
                      gap="$1"
                      paddingHorizontal="$2"
                      paddingVertical="$1"
                      backgroundColor="$green3"
                      borderRadius="$2"
                    >
                      <IconSymbol name="checkmark.seal.fill" size={14} color="$green10" />
                      <Text fontSize="$2" color="$green10" fontWeight="600">
                        已有成分信息
                      </Text>
                    </XStack>
                  ) : (
                    <XStack
                      alignItems="center"
                      gap="$1"
                      paddingHorizontal="$2"
                      paddingVertical="$1"
                      backgroundColor="$orange3"
                      borderRadius="$2"
                    >
                      <IconSymbol
                        name="exclamationmark.triangle.fill"
                        size={14}
                        color="$orange10"
                      />
                      <Text fontSize="$2" color="$orange10" fontWeight="600">
                        暂无成分信息
                      </Text>
                    </XStack>
                  )}
                </XStack>
              </YStack>
            </XStack>
 
            <Separator />
 
            {/* 操作按钮区域 */}
            <XStack padding="$3" gap="$2">
              {hasInfo ? (
                <Button
                  flex={1}
                  size="$3"
                  themeInverse
                  icon={<IconSymbol name="doc.text.magnifyingglass" size={18} color="$color" />}
                  onPress={() => handleSelectCatFood(item)}
                >
                  查看详情
                </Button>
              ) : (
                <Button
                  flex={1}
                  size="$3"
                  theme="orange"
                  icon={<IconSymbol name="camera.fill" size={18} color="$color" />}
                  onPress={() => handleSelectCatFood(item)}
                >
                  拍照录入成分
                </Button>
              )}
            </XStack>
          </YStack>
        </YStack>
      );
    },
    [handleSelectCatFood, hasIngredientInfo]
  );
 
  /**
   * 渲染列表空状态
   */
  const renderEmpty = useCallback(() => {
    if (loading) return null;
    return <EmptyState searched={searched} />;
  }, [loading, searched]);
 
  return (
    <Modal
      visible={visible}
      animationType="fade"
      onRequestClose={handleClose}
      transparent
      statusBarTranslucent
    >
      {/* 半透明背景层 - 使用 Tamagui YStack */}
      <YStack
        flex={1}
        backgroundColor="rgba(0, 0, 0, 0.5)"
        justifyContent="center"
        alignItems="center"
        padding="$5"
        pressStyle={{ opacity: 1 }}
        onPress={handleClose}
      >
        {/* Modal 内容区域 */}
        <YStack
          width="100%"
          maxWidth={SEARCH_CONFIG.MAX_WIDTH}
          height={SEARCH_CONFIG.HEIGHT_PERCENTAGE}
          maxHeight={SEARCH_CONFIG.MAX_HEIGHT}
          backgroundColor="$background"
          borderRadius="$6"
          overflow="hidden"
          pressStyle={{ opacity: 1 }}
          onPress={(e) => e.stopPropagation()}
        >
          {/* 头部 */}
          <XStack
            paddingHorizontal="$4"
            paddingTop="$4"
            paddingBottom="$3"
            justifyContent="space-between"
            alignItems="center"
            borderBottomWidth={1}
            borderBottomColor="$gray5"
            backgroundColor="$background"
          >
            <Text fontSize="$7" fontWeight="bold" color="$color">
              搜索猫粮
            </Text>
            <Button
              circular
              icon={<IconSymbol name="xmark.circle.fill" size={28} color="$gray10" />}
              chromeless
              onPress={handleClose}
              accessibilityLabel="关闭搜索"
            />
          </XStack>
 
          {/* 搜索栏 */}
          <XStack paddingHorizontal="$4" paddingVertical="$3">
            <XStack
              flex={1}
              alignItems="center"
              paddingHorizontal="$3"
              paddingVertical="$2"
              borderWidth={1}
              borderColor="$gray7"
              borderRadius="$4"
              backgroundColor="$background"
              focusStyle={{
                borderColor: '$blue8',
              }}
            >
              {loading ? (
                <Spinner size="small" color="$gray10" />
              ) : (
                <IconSymbol name="magnifyingglass" size={20} color="$gray10" />
              )}
              <Input
                flex={1}
                placeholder="输入猫粮名称或品牌..."
                value={searchText}
                onChangeText={setSearchText}
                returnKeyType="search"
                size="$4"
                borderWidth={0}
                backgroundColor="transparent"
                autoFocus
                placeholderTextColor="$gray9"
                accessibilityLabel="搜索猫粮输入框"
              />
              {searchText.length > 0 && (
                <Button
                  circular
                  size="$2"
                  chromeless
                  icon={<IconSymbol name="xmark.circle.fill" size={20} color="$gray10" />}
                  onPress={handleClear}
                  accessibilityLabel="清空搜索"
                />
              )}
            </XStack>
          </XStack>
 
          <Separator />
 
          {/* 结果列表 - 使用 React Native FlatList 优化性能 */}
          <YStack flex={1}>
            <FlatList
              data={catFoods}
              renderItem={renderCatFoodItem}
              keyExtractor={(item) => item.id.toString()}
              contentContainerStyle={{ padding: 16, flexGrow: 1 }}
              ListEmptyComponent={renderEmpty}
              showsVerticalScrollIndicator={false}
              keyboardShouldPersistTaps="handled"
            />
          </YStack>
        </YStack>
      </YStack>
    </Modal>
  );
}
 
/**
 * 空状态组件
 */
interface EmptyStateProps {
  searched: boolean;
}
 
function EmptyState({ searched }: EmptyStateProps) {
  if (!searched) {
    return (
      <YStack flex={1} justifyContent="center" alignItems="center" paddingVertical="$10" gap="$3">
        <IconSymbol name="magnifyingglass" size={64} color="$gray9" />
        <Text fontSize="$6" fontWeight="600" color="$gray12">
          输入猫粮名称或品牌开始搜索
        </Text>
        <Text fontSize="$3" color="$gray10" textAlign="center">
          例如:皇家、渴望、爱肯拿等
        </Text>
      </YStack>
    );
  }
 
  return (
    <YStack flex={1} justifyContent="center" alignItems="center" paddingVertical="$10" gap="$3">
      <IconSymbol name="exclamationmark.circle" size={64} color="$gray9" />
      <Text fontSize="$6" fontWeight="600" color="$gray12">
        未找到相关猫粮
      </Text>
      <Text fontSize="$3" color="$gray10" textAlign="center">
        请尝试其他关键词
      </Text>
    </YStack>
  );
}