@umituz/react-native-ai-generation-content 1.12.3 → 1.12.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (82) hide show
  1. package/package.json +30 -6
  2. package/src/domains/content-moderation/domain/entities/moderation.types.ts +84 -0
  3. package/src/domains/content-moderation/domain/interfaces/content-filter.interface.ts +24 -0
  4. package/src/domains/content-moderation/index.ts +67 -0
  5. package/src/domains/content-moderation/infrastructure/rules/default-rules.data.ts +144 -0
  6. package/src/domains/content-moderation/infrastructure/rules/rules-registry.ts +75 -0
  7. package/src/domains/content-moderation/infrastructure/services/content-moderation.service.ts +150 -0
  8. package/src/domains/content-moderation/infrastructure/services/index.ts +8 -0
  9. package/src/domains/content-moderation/infrastructure/services/moderators/base.moderator.ts +62 -0
  10. package/src/domains/content-moderation/infrastructure/services/moderators/image.moderator.ts +64 -0
  11. package/src/domains/content-moderation/infrastructure/services/moderators/index.ts +10 -0
  12. package/src/domains/content-moderation/infrastructure/services/moderators/text.moderator.ts +144 -0
  13. package/src/domains/content-moderation/infrastructure/services/moderators/video.moderator.ts +64 -0
  14. package/src/domains/content-moderation/infrastructure/services/moderators/voice.moderator.ts +74 -0
  15. package/src/domains/content-moderation/infrastructure/services/pattern-matcher.service.ts +51 -0
  16. package/src/domains/content-moderation/presentation/exceptions/content-policy-violation.exception.ts +48 -0
  17. package/src/domains/creations/application/services/CreationsService.ts +71 -0
  18. package/src/domains/creations/domain/entities/Creation.ts +51 -0
  19. package/src/domains/creations/domain/entities/index.ts +6 -0
  20. package/src/domains/creations/domain/repositories/ICreationsRepository.ts +23 -0
  21. package/src/domains/creations/domain/repositories/index.ts +5 -0
  22. package/src/domains/creations/domain/services/ICreationsStorageService.ts +13 -0
  23. package/src/domains/creations/domain/value-objects/CreationsConfig.ts +76 -0
  24. package/src/domains/creations/domain/value-objects/index.ts +12 -0
  25. package/src/domains/creations/index.ts +84 -0
  26. package/src/domains/creations/infrastructure/adapters/createRepository.ts +54 -0
  27. package/src/domains/creations/infrastructure/adapters/index.ts +5 -0
  28. package/src/domains/creations/infrastructure/repositories/CreationsRepository.ts +233 -0
  29. package/src/domains/creations/infrastructure/repositories/index.ts +8 -0
  30. package/src/domains/creations/infrastructure/services/CreationsStorageService.ts +48 -0
  31. package/src/domains/creations/presentation/components/CreationCard.tsx +136 -0
  32. package/src/domains/creations/presentation/components/CreationDetail/DetailActions.tsx +76 -0
  33. package/src/domains/creations/presentation/components/CreationDetail/DetailHeader.tsx +81 -0
  34. package/src/domains/creations/presentation/components/CreationDetail/DetailImage.tsx +41 -0
  35. package/src/domains/creations/presentation/components/CreationDetail/DetailStory.tsx +67 -0
  36. package/src/domains/creations/presentation/components/CreationDetail/index.ts +4 -0
  37. package/src/domains/creations/presentation/components/CreationImageViewer.tsx +43 -0
  38. package/src/domains/creations/presentation/components/CreationThumbnail.tsx +63 -0
  39. package/src/domains/creations/presentation/components/CreationsGrid.tsx +75 -0
  40. package/src/domains/creations/presentation/components/CreationsHomeCard.tsx +176 -0
  41. package/src/domains/creations/presentation/components/EmptyState.tsx +75 -0
  42. package/src/domains/creations/presentation/components/FilterBottomSheet.tsx +158 -0
  43. package/src/domains/creations/presentation/components/FilterChips.tsx +105 -0
  44. package/src/domains/creations/presentation/components/GalleryHeader.tsx +106 -0
  45. package/src/domains/creations/presentation/components/index.ts +19 -0
  46. package/src/domains/creations/presentation/hooks/index.ts +7 -0
  47. package/src/domains/creations/presentation/hooks/useCreations.ts +33 -0
  48. package/src/domains/creations/presentation/hooks/useCreationsFilter.ts +70 -0
  49. package/src/domains/creations/presentation/hooks/useDeleteCreation.ts +51 -0
  50. package/src/domains/creations/presentation/screens/CreationDetailScreen.tsx +71 -0
  51. package/src/domains/creations/presentation/screens/CreationsGalleryScreen.tsx +217 -0
  52. package/src/domains/creations/presentation/screens/index.ts +5 -0
  53. package/src/domains/creations/presentation/utils/filterUtils.ts +52 -0
  54. package/src/domains/creations/types.d.ts +107 -0
  55. package/src/domains/face-detection/domain/constants/faceDetectionConstants.ts +16 -0
  56. package/src/domains/face-detection/domain/entities/FaceDetection.ts +19 -0
  57. package/src/domains/face-detection/index.ts +26 -0
  58. package/src/domains/face-detection/infrastructure/analyzers/faceAnalyzer.ts +36 -0
  59. package/src/domains/face-detection/infrastructure/validators/faceValidator.ts +52 -0
  60. package/src/domains/face-detection/presentation/components/FaceValidationStatus.tsx +111 -0
  61. package/src/domains/face-detection/presentation/hooks/useFaceDetection.ts +58 -0
  62. package/src/domains/feature-background/domain/entities/background.types.ts +77 -0
  63. package/src/domains/feature-background/domain/entities/component.types.ts +96 -0
  64. package/src/domains/feature-background/domain/entities/config.types.ts +41 -0
  65. package/src/domains/feature-background/domain/entities/index.ts +31 -0
  66. package/src/domains/feature-background/index.ts +72 -0
  67. package/src/domains/feature-background/infrastructure/constants/index.ts +5 -0
  68. package/src/domains/feature-background/infrastructure/constants/prompts.constants.ts +15 -0
  69. package/src/domains/feature-background/presentation/components/BackgroundFeature.tsx +145 -0
  70. package/src/domains/feature-background/presentation/components/ComparisonSlider.tsx +199 -0
  71. package/src/domains/feature-background/presentation/components/ErrorDisplay.tsx +58 -0
  72. package/src/domains/feature-background/presentation/components/FeatureHeader.tsx +80 -0
  73. package/src/domains/feature-background/presentation/components/GenerateButton.tsx +86 -0
  74. package/src/domains/feature-background/presentation/components/ImagePicker.tsx +136 -0
  75. package/src/domains/feature-background/presentation/components/ModeSelector.tsx +78 -0
  76. package/src/domains/feature-background/presentation/components/ProcessingModal.tsx +113 -0
  77. package/src/domains/feature-background/presentation/components/PromptInput.tsx +142 -0
  78. package/src/domains/feature-background/presentation/components/ResultDisplay.tsx +123 -0
  79. package/src/domains/feature-background/presentation/components/index.ts +16 -0
  80. package/src/domains/feature-background/presentation/hooks/index.ts +7 -0
  81. package/src/domains/feature-background/presentation/hooks/useBackgroundFeature.ts +118 -0
  82. package/src/index.ts +24 -0
@@ -0,0 +1,76 @@
1
+
2
+ import React from 'react';
3
+ import { View, StyleSheet, TouchableOpacity } from 'react-native';
4
+ import { AtomicText, AtomicIcon, useAppDesignTokens } from "@umituz/react-native-design-system";
5
+
6
+ interface DetailActionsProps {
7
+ readonly onShare: () => void;
8
+ readonly onDelete: () => void;
9
+ readonly shareLabel: string;
10
+ readonly deleteLabel: string;
11
+ }
12
+
13
+ export const DetailActions: React.FC<DetailActionsProps> = ({
14
+ onShare,
15
+ onDelete,
16
+ shareLabel,
17
+ deleteLabel
18
+ }) => {
19
+ const tokens = useAppDesignTokens();
20
+ const styles = useStyles(tokens);
21
+
22
+ return (
23
+ <View style={styles.container}>
24
+ <TouchableOpacity
25
+ style={[styles.button, styles.shareButton]}
26
+ onPress={onShare}
27
+ activeOpacity={0.7}
28
+ >
29
+ <AtomicIcon name="share-social-outline" size="sm" color="onPrimary" />
30
+ <AtomicText style={styles.buttonText}>{shareLabel}</AtomicText>
31
+ </TouchableOpacity>
32
+
33
+ <TouchableOpacity
34
+ style={[styles.button, styles.deleteButton]}
35
+ onPress={onDelete}
36
+ activeOpacity={0.7}
37
+ >
38
+ <AtomicIcon name="trash-outline" size="sm" color="error" />
39
+ <AtomicText style={[styles.buttonText, { color: tokens.colors.error }]}>
40
+ {deleteLabel}
41
+ </AtomicText>
42
+ </TouchableOpacity>
43
+ </View>
44
+ );
45
+ };
46
+
47
+ const useStyles = (tokens: any) => StyleSheet.create({
48
+ container: {
49
+ flexDirection: 'row',
50
+ justifyContent: 'center',
51
+ gap: tokens.spacing.md,
52
+ paddingHorizontal: tokens.spacing.lg,
53
+ marginBottom: tokens.spacing.xxl,
54
+ },
55
+ button: {
56
+ flexDirection: 'row',
57
+ alignItems: 'center',
58
+ justifyContent: 'center',
59
+ paddingVertical: 12,
60
+ paddingHorizontal: 24,
61
+ borderRadius: 16,
62
+ gap: 8,
63
+ minWidth: 120,
64
+ },
65
+ shareButton: {
66
+ backgroundColor: tokens.colors.primary,
67
+ },
68
+ deleteButton: {
69
+ backgroundColor: tokens.colors.error + '10',
70
+ },
71
+ buttonText: {
72
+ fontWeight: '700',
73
+ color: '#fff',
74
+ fontSize: 15,
75
+ },
76
+ });
@@ -0,0 +1,81 @@
1
+
2
+ import React from 'react';
3
+ import { View, StyleSheet, TouchableOpacity } from 'react-native';
4
+ import { AtomicText, AtomicIcon, useAppDesignTokens } from "@umituz/react-native-design-system";
5
+ import { useSafeAreaInsets } from 'react-native-safe-area-context';
6
+
7
+ interface DetailHeaderProps {
8
+ readonly title: string;
9
+ readonly date: string;
10
+ readonly onClose: () => void;
11
+ }
12
+
13
+ export const DetailHeader: React.FC<DetailHeaderProps> = ({ title, date, onClose }) => {
14
+ const tokens = useAppDesignTokens();
15
+ const insets = useSafeAreaInsets();
16
+ const styles = useStyles(tokens, insets);
17
+
18
+ return (
19
+ <View style={styles.headerContainer}>
20
+ <TouchableOpacity style={styles.closeButton} onPress={onClose}>
21
+ <AtomicIcon name="arrow-back" size={24} customColor={tokens.colors.textPrimary} />
22
+ </TouchableOpacity>
23
+
24
+ <View style={styles.titleContainer}>
25
+ <AtomicText style={styles.title} numberOfLines={1}>{title}</AtomicText>
26
+ <View style={styles.dateBadge}>
27
+ <AtomicIcon name="calendar-outline" size={12} customColor={tokens.colors.primary} />
28
+ <AtomicText style={styles.dateText}>{date}</AtomicText>
29
+ </View>
30
+ </View>
31
+
32
+ <View style={styles.placeholder} />
33
+ </View>
34
+ );
35
+ };
36
+
37
+ const useStyles = (tokens: any, insets: any) => StyleSheet.create({
38
+ headerContainer: {
39
+ flexDirection: 'row',
40
+ alignItems: 'center',
41
+ paddingTop: insets.top + tokens.spacing.sm,
42
+ paddingBottom: tokens.spacing.md,
43
+ paddingHorizontal: tokens.spacing.md,
44
+ backgroundColor: tokens.colors.backgroundPrimary,
45
+ borderBottomWidth: 1,
46
+ borderBottomColor: tokens.colors.border,
47
+ zIndex: 10,
48
+ },
49
+ closeButton: {
50
+ padding: tokens.spacing.xs,
51
+ marginRight: tokens.spacing.sm,
52
+ },
53
+ titleContainer: {
54
+ flex: 1,
55
+ alignItems: 'center',
56
+ },
57
+ title: {
58
+ fontSize: 18,
59
+ fontWeight: '700',
60
+ color: tokens.colors.textPrimary,
61
+ marginBottom: 4,
62
+ textAlign: 'center',
63
+ },
64
+ dateBadge: {
65
+ flexDirection: 'row',
66
+ alignItems: 'center',
67
+ gap: 4,
68
+ paddingHorizontal: 10,
69
+ paddingVertical: 4,
70
+ borderRadius: 12,
71
+ backgroundColor: tokens.colors.primary + '15',
72
+ },
73
+ dateText: {
74
+ fontSize: 12,
75
+ fontWeight: '600',
76
+ color: tokens.colors.primary,
77
+ },
78
+ placeholder: {
79
+ width: 40,
80
+ },
81
+ });
@@ -0,0 +1,41 @@
1
+
2
+ import React from 'react';
3
+ import { View, StyleSheet, Image, Dimensions } from 'react-native';
4
+ import { useAppDesignTokens } from "@umituz/react-native-design-system";
5
+
6
+ interface DetailImageProps {
7
+ readonly uri: string;
8
+ }
9
+
10
+ const { width } = Dimensions.get('window');
11
+
12
+ export const DetailImage: React.FC<DetailImageProps> = ({ uri }) => {
13
+ const tokens = useAppDesignTokens();
14
+ const styles = useStyles(tokens);
15
+
16
+ return (
17
+ <View style={styles.container}>
18
+ <View style={styles.frame}>
19
+ <Image source={{ uri }} style={styles.image} resizeMode="cover" />
20
+ </View>
21
+ </View>
22
+ );
23
+ };
24
+
25
+ const useStyles = (tokens: any) => StyleSheet.create({
26
+ container: {
27
+ paddingHorizontal: tokens.spacing.lg,
28
+ marginVertical: tokens.spacing.lg,
29
+ },
30
+ frame: {
31
+ width: width - (tokens.spacing.lg * 2),
32
+ height: width - (tokens.spacing.lg * 2),
33
+ borderRadius: 24,
34
+ overflow: 'hidden',
35
+ backgroundColor: tokens.colors.surface,
36
+ },
37
+ image: {
38
+ width: '100%',
39
+ height: '100%',
40
+ },
41
+ });
@@ -0,0 +1,67 @@
1
+
2
+ import React from 'react';
3
+ import { View, StyleSheet } from 'react-native';
4
+ import { AtomicText, useAppDesignTokens } from "@umituz/react-native-design-system";
5
+ import { LinearGradient } from 'expo-linear-gradient';
6
+
7
+ interface DetailStoryProps {
8
+ readonly story: string;
9
+ }
10
+
11
+ export const DetailStory: React.FC<DetailStoryProps> = ({ story }) => {
12
+ const tokens = useAppDesignTokens();
13
+ const styles = useStyles(tokens);
14
+
15
+ if (!story) return null;
16
+
17
+ return (
18
+ <View style={styles.container}>
19
+ <LinearGradient
20
+ colors={[tokens.colors.primary + '15', tokens.colors.primary + '05']}
21
+ style={styles.gradient}
22
+ >
23
+ <AtomicText style={styles.quoteMark}>&quot;</AtomicText>
24
+ <AtomicText style={styles.text}>{story}</AtomicText>
25
+ <View style={styles.quoteEndRow}>
26
+ <AtomicText style={[styles.quoteMark, styles.quoteEnd]}>&quot;</AtomicText>
27
+ </View>
28
+ </LinearGradient>
29
+ </View>
30
+ );
31
+ };
32
+
33
+ const useStyles = (tokens: any) => StyleSheet.create({
34
+ container: {
35
+ paddingHorizontal: tokens.spacing.lg,
36
+ marginBottom: tokens.spacing.lg,
37
+ },
38
+ gradient: {
39
+ padding: tokens.spacing.lg,
40
+ borderRadius: 20,
41
+ borderWidth: 1,
42
+ borderColor: tokens.colors.primary + '20',
43
+ },
44
+ quoteMark: {
45
+ fontSize: 48,
46
+ lineHeight: 48,
47
+ color: tokens.colors.primary,
48
+ opacity: 0.4,
49
+ marginBottom: -16,
50
+ },
51
+ quoteEndRow: {
52
+ alignItems: 'flex-end',
53
+ marginTop: -16,
54
+ },
55
+ quoteEnd: {
56
+ marginBottom: 0,
57
+ },
58
+ text: {
59
+ fontSize: 16,
60
+ lineHeight: 26,
61
+ textAlign: 'center',
62
+ fontStyle: 'italic',
63
+ fontWeight: '500',
64
+ color: tokens.colors.textPrimary,
65
+ paddingBottom: 4,
66
+ },
67
+ });
@@ -0,0 +1,4 @@
1
+ export * from './DetailHeader';
2
+ export * from './DetailImage';
3
+ export * from './DetailStory';
4
+ export * from './DetailActions';
@@ -0,0 +1,43 @@
1
+ import React from "react";
2
+ import { ImageGallery } from "@umituz/react-native-image";
3
+ import type { Creation } from "../../domain/entities/Creation";
4
+
5
+ interface CreationImageViewerProps {
6
+ readonly creations: Creation[];
7
+ readonly visible: boolean;
8
+ readonly index: number;
9
+ readonly enableEditing?: boolean;
10
+ readonly onDismiss: () => void;
11
+ readonly onIndexChange: (index: number) => void;
12
+ readonly onImageEdit?: (uri: string, creationId: string) => void | Promise<void>;
13
+ readonly selectedCreationId?: string;
14
+ }
15
+
16
+ export const CreationImageViewer: React.FC<CreationImageViewerProps> = ({
17
+ creations,
18
+ visible,
19
+ index,
20
+ enableEditing = false,
21
+ onDismiss,
22
+ onIndexChange,
23
+ onImageEdit,
24
+ selectedCreationId,
25
+ }) => {
26
+ const handleImageChange = async (uri: string) => {
27
+ if (selectedCreationId && onImageEdit) {
28
+ await onImageEdit(uri, selectedCreationId);
29
+ }
30
+ };
31
+
32
+ return (
33
+ <ImageGallery
34
+ images={creations.map((c) => ({ uri: c.uri }))}
35
+ visible={visible}
36
+ index={index}
37
+ onDismiss={onDismiss}
38
+ onIndexChange={onIndexChange}
39
+ {...(enableEditing && { enableEditing } as any)}
40
+ {...(onImageEdit && { onImageChange: handleImageChange } as any)}
41
+ />
42
+ );
43
+ };
@@ -0,0 +1,63 @@
1
+ /**
2
+ * CreationThumbnail Component
3
+ * Displays a single creation thumbnail
4
+ */
5
+
6
+ import React, { useMemo, useState } from "react";
7
+ import { Image, TouchableOpacity, StyleSheet, View } from "react-native";
8
+ import {
9
+ useAppDesignTokens,
10
+ AtomicIcon,
11
+ } from "@umituz/react-native-design-system";
12
+
13
+ interface CreationThumbnailProps {
14
+ readonly uri: string;
15
+ readonly size?: number;
16
+ readonly onPress?: () => void;
17
+ }
18
+
19
+ export function CreationThumbnail({
20
+ uri,
21
+ size = 72,
22
+ onPress,
23
+ }: CreationThumbnailProps) {
24
+ const tokens = useAppDesignTokens();
25
+ const [isPressed, setIsPressed] = useState(false);
26
+
27
+ const styles = useMemo(
28
+ () =>
29
+ StyleSheet.create({
30
+ thumbnail: {
31
+ width: size,
32
+ height: size,
33
+ borderRadius: tokens.spacing.sm,
34
+ backgroundColor: tokens.colors.backgroundSecondary,
35
+ },
36
+ overlay: {
37
+ ...StyleSheet.absoluteFillObject,
38
+ backgroundColor: "rgba(0, 0, 0, 0.5)",
39
+ borderRadius: tokens.spacing.sm,
40
+ justifyContent: "center",
41
+ alignItems: "center",
42
+ },
43
+ }),
44
+ [tokens, size]
45
+ );
46
+
47
+ return (
48
+ <TouchableOpacity
49
+ onPress={onPress}
50
+ disabled={!onPress}
51
+ onPressIn={() => setIsPressed(true)}
52
+ onPressOut={() => setIsPressed(false)}
53
+ activeOpacity={1}
54
+ >
55
+ <Image source={{ uri }} style={styles.thumbnail} />
56
+ {isPressed && onPress && (
57
+ <View style={styles.overlay}>
58
+ <AtomicIcon name="eye" size="lg" color="textInverse" />
59
+ </View>
60
+ )}
61
+ </TouchableOpacity>
62
+ );
63
+ }
@@ -0,0 +1,75 @@
1
+ import React from 'react';
2
+ import { FlatList, RefreshControl, StyleSheet } from 'react-native';
3
+ import { useAppDesignTokens } from "@umituz/react-native-design-system";
4
+ import type { Creation } from "../../domain/entities/Creation";
5
+ import type { CreationType } from "../../domain/value-objects/CreationsConfig";
6
+ import { CreationCard } from "./CreationCard";
7
+
8
+ interface CreationsGridProps {
9
+ readonly creations: Creation[];
10
+ readonly types: readonly CreationType[];
11
+ readonly isLoading: boolean;
12
+ readonly onRefresh: () => void;
13
+ readonly onView: (creation: Creation) => void;
14
+ readonly onShare: (creation: Creation) => void;
15
+ readonly onDelete: (creation: Creation) => void;
16
+ readonly contentContainerStyle?: any;
17
+ readonly ListEmptyComponent?: React.ReactElement | null;
18
+ readonly ListHeaderComponent?: React.ComponentType<any> | React.ReactElement | null;
19
+ }
20
+
21
+ export const CreationsGrid: React.FC<CreationsGridProps> = ({
22
+ creations,
23
+ types,
24
+ isLoading,
25
+ onRefresh,
26
+ onView,
27
+ onShare,
28
+ onDelete,
29
+ contentContainerStyle,
30
+ ListEmptyComponent,
31
+ ListHeaderComponent,
32
+ }) => {
33
+ const tokens = useAppDesignTokens();
34
+ const styles = useStyles(tokens);
35
+
36
+ const renderItem = ({ item }: { item: Creation }) => (
37
+ <CreationCard
38
+ creation={item}
39
+ types={types as CreationType[]}
40
+ onView={() => onView(item)}
41
+ onShare={() => onShare(item)}
42
+ onDelete={() => onDelete(item)}
43
+ />
44
+ );
45
+
46
+ return (
47
+ <FlatList
48
+ data={creations}
49
+ renderItem={renderItem}
50
+ keyExtractor={(item) => item.id}
51
+ ListHeaderComponent={ListHeaderComponent}
52
+ ListEmptyComponent={ListEmptyComponent}
53
+ contentContainerStyle={[
54
+ styles.list,
55
+ contentContainerStyle,
56
+ (!creations || creations.length === 0) && { flexGrow: 1 }
57
+ ]}
58
+ showsVerticalScrollIndicator={false}
59
+ refreshControl={
60
+ <RefreshControl
61
+ refreshing={isLoading}
62
+ onRefresh={onRefresh}
63
+ tintColor={tokens.colors.primary}
64
+ />
65
+ }
66
+ />
67
+ );
68
+ };
69
+
70
+ const useStyles = (tokens: any) => StyleSheet.create({
71
+ list: {
72
+ padding: tokens.spacing.md,
73
+ paddingBottom: 100, // Space for fab or bottom tab
74
+ },
75
+ });
@@ -0,0 +1,176 @@
1
+ /**
2
+ * CreationsHomeCard Component
3
+ * Shows user's creations preview on home screen
4
+ */
5
+
6
+ declare const __DEV__: boolean;
7
+
8
+ import React, { useMemo, useCallback } from "react";
9
+ import { View, TouchableOpacity, FlatList, StyleSheet } from "react-native";
10
+ import {
11
+ AtomicText,
12
+ AtomicIcon,
13
+ useAppDesignTokens,
14
+ } from "@umituz/react-native-design-system";
15
+ import type { Creation } from "../../domain/entities/Creation";
16
+ import { CreationThumbnail } from "./CreationThumbnail";
17
+
18
+ interface CreationsHomeCardProps {
19
+ readonly creations: Creation[] | undefined;
20
+ readonly isLoading: boolean;
21
+ readonly title: string;
22
+ readonly countLabel: string;
23
+ readonly loadingLabel: string;
24
+ readonly maxThumbnails?: number;
25
+ readonly onPress: () => void;
26
+ }
27
+
28
+ export function CreationsHomeCard({
29
+ creations,
30
+ isLoading,
31
+ title,
32
+ countLabel,
33
+ loadingLabel,
34
+ maxThumbnails = 4,
35
+ onPress,
36
+ }: CreationsHomeCardProps) {
37
+ const tokens = useAppDesignTokens();
38
+
39
+ if (__DEV__) {
40
+ console.log("[CreationsHomeCard] Render:", {
41
+ isLoading,
42
+ count: creations?.length ?? 0,
43
+ });
44
+ }
45
+
46
+ const styles = useMemo(
47
+ () =>
48
+ StyleSheet.create({
49
+ container: {
50
+ backgroundColor: tokens.colors.surface,
51
+ borderRadius: tokens.spacing.md,
52
+ padding: tokens.spacing.md,
53
+ },
54
+ header: {
55
+ flexDirection: "row",
56
+ justifyContent: "space-between",
57
+ alignItems: "center",
58
+ marginBottom: tokens.spacing.md,
59
+ },
60
+ headerLeft: {
61
+ flexDirection: "row",
62
+ alignItems: "center",
63
+ gap: tokens.spacing.sm,
64
+ },
65
+ icon: {
66
+ fontSize: 20,
67
+ },
68
+ title: {
69
+ ...tokens.typography.bodyLarge,
70
+ fontWeight: "600",
71
+ color: tokens.colors.textPrimary,
72
+ },
73
+ viewAll: {
74
+ flexDirection: "row",
75
+ alignItems: "center",
76
+ gap: tokens.spacing.xs,
77
+ },
78
+ count: {
79
+ ...tokens.typography.bodySmall,
80
+ color: tokens.colors.textSecondary,
81
+ },
82
+ thumbnailList: {
83
+ gap: tokens.spacing.sm,
84
+ },
85
+ loadingText: {
86
+ ...tokens.typography.bodySmall,
87
+ color: tokens.colors.textSecondary,
88
+ textAlign: "center",
89
+ padding: tokens.spacing.md,
90
+ },
91
+ moreBadge: {
92
+ width: 72,
93
+ height: 72,
94
+ borderRadius: tokens.spacing.sm,
95
+ backgroundColor: tokens.colors.backgroundSecondary,
96
+ justifyContent: "center",
97
+ alignItems: "center",
98
+ },
99
+ moreText: {
100
+ ...tokens.typography.bodySmall,
101
+ fontWeight: "600",
102
+ color: tokens.colors.primary,
103
+ },
104
+ }),
105
+ [tokens],
106
+ );
107
+
108
+ const displayItems = useMemo(() => {
109
+ if (!creations) return [];
110
+ return creations.slice(0, maxThumbnails);
111
+ }, [creations, maxThumbnails]);
112
+
113
+ const renderItem = useCallback(
114
+ ({ item, index }: { item: Creation; index: number }) => {
115
+ const isLast = index === maxThumbnails - 1;
116
+ const hasMore = creations && creations.length > maxThumbnails;
117
+
118
+ if (isLast && hasMore) {
119
+ return (
120
+ <TouchableOpacity style={styles.moreBadge} onPress={onPress}>
121
+ <AtomicText style={styles.moreText}>
122
+ +{creations.length - maxThumbnails + 1}
123
+ </AtomicText>
124
+ </TouchableOpacity>
125
+ );
126
+ }
127
+
128
+ return <CreationThumbnail uri={item.uri} onPress={onPress} />;
129
+ },
130
+ [styles, creations, maxThumbnails, onPress],
131
+ );
132
+
133
+ if (isLoading) {
134
+ return (
135
+ <View style={styles.container}>
136
+ <AtomicText style={styles.loadingText}>{loadingLabel}</AtomicText>
137
+ </View>
138
+ );
139
+ }
140
+
141
+ if (!creations || creations.length === 0) {
142
+ return null;
143
+ }
144
+
145
+ const count = creations.length;
146
+
147
+ return (
148
+ <TouchableOpacity
149
+ style={styles.container}
150
+ onPress={onPress}
151
+ activeOpacity={0.8}
152
+ >
153
+ <View style={styles.header}>
154
+ <View style={styles.headerLeft}>
155
+ <AtomicText style={styles.icon}>🎨</AtomicText>
156
+ <AtomicText style={styles.title}>{title}</AtomicText>
157
+ </View>
158
+ <TouchableOpacity style={styles.viewAll} onPress={onPress}>
159
+ <AtomicText style={styles.count}>
160
+ {countLabel.replace("{{count}}", String(count))}
161
+ </AtomicText>
162
+ <AtomicIcon name="chevron-forward" size="sm" color="primary" />
163
+ </TouchableOpacity>
164
+ </View>
165
+ <FlatList
166
+ data={displayItems}
167
+ renderItem={renderItem}
168
+ keyExtractor={(item) => item.id}
169
+ horizontal
170
+ showsHorizontalScrollIndicator={false}
171
+ contentContainerStyle={styles.thumbnailList}
172
+ scrollEnabled={false}
173
+ />
174
+ </TouchableOpacity>
175
+ );
176
+ }