@umituz/react-native-ai-generation-content 1.90.11 → 1.90.12
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.
- package/package.json +1 -1
- package/src/domains/background/infrastructure/services/job-poller.service.ts +4 -4
- package/src/domains/creations/presentation/hooks/useProcessingJobsPoller.ts +18 -7
- package/src/domains/face-detection/domain/entities/FaceDetection.ts +1 -0
- package/src/domains/generation/infrastructure/couple-generation-builder/builder-couple-prompt.ts +1 -1
- package/src/domains/generation/wizard/infrastructure/strategies/video-generation.strategy.ts +24 -1
- package/src/domains/generation/wizard/infrastructure/strategies/video-generation.types.ts +14 -0
- package/src/domains/generation/wizard/presentation/hooks/photo-upload/types.ts +8 -4
- package/src/domains/generation/wizard/presentation/hooks/photo-upload/usePhotoUploadStateLogic.ts +1 -1
- package/src/domains/generation/wizard/presentation/hooks/video-queue/use-video-queue-utils.ts +9 -0
- package/src/domains/generation/wizard/presentation/hooks/video-queue/useVideoQueueGenerationStart.ts +9 -1
- package/src/domains/image-to-video/domain/types/form.types.ts +1 -0
- package/src/infrastructure/services/image-feature-executor.service.ts +1 -1
- package/src/infrastructure/services/multi-image-generation.executor.ts +3 -2
- package/src/infrastructure/services/video-feature-executor.service.ts +1 -1
- package/src/infrastructure/validation/ai-validator.ts +4 -4
- package/src/infrastructure/validation/entity-validator.ts +2 -2
- package/src/infrastructure/validation/input-validator.ts +1 -1
- package/src/presentation/hooks/generation/useImageGeneration.ts +1 -1
- package/src/presentation/hooks/generation/useVideoGeneration.ts +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umituz/react-native-ai-generation-content",
|
|
3
|
-
"version": "1.90.
|
|
3
|
+
"version": "1.90.12",
|
|
4
4
|
"description": "Provider-agnostic AI generation orchestration for React Native with result preview components",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -81,13 +81,13 @@ export async function pollJob<T = unknown>(
|
|
|
81
81
|
try {
|
|
82
82
|
// Check job status
|
|
83
83
|
const statusResult = await withAbortSignal(
|
|
84
|
-
provider.
|
|
84
|
+
provider.getJobStatus(model, requestId),
|
|
85
85
|
signal,
|
|
86
86
|
config.maxTotalTimeMs ? config.maxTotalTimeMs - (Date.now() - startTime) : undefined
|
|
87
87
|
);
|
|
88
88
|
|
|
89
89
|
// Notify status change
|
|
90
|
-
if (onStatusChange && typeof statusResult === 'object' && 'status' in statusResult) {
|
|
90
|
+
if (onStatusChange && statusResult && typeof statusResult === 'object' && 'status' in statusResult) {
|
|
91
91
|
onStatusChange(statusResult as JobStatus);
|
|
92
92
|
}
|
|
93
93
|
|
|
@@ -96,7 +96,7 @@ export async function pollJob<T = unknown>(
|
|
|
96
96
|
if (statusError) {
|
|
97
97
|
return {
|
|
98
98
|
success: false,
|
|
99
|
-
error: statusError,
|
|
99
|
+
error: statusError instanceof Error ? statusError : new Error(String(statusError)),
|
|
100
100
|
attempts: attempt + 1,
|
|
101
101
|
elapsedMs: Date.now() - startTime,
|
|
102
102
|
};
|
|
@@ -106,7 +106,7 @@ export async function pollJob<T = unknown>(
|
|
|
106
106
|
consecutiveErrors = 0;
|
|
107
107
|
|
|
108
108
|
// Check if job is complete
|
|
109
|
-
if (isJobComplete(statusResult as JobStatus |
|
|
109
|
+
if (isJobComplete(statusResult as JobStatus | string)) {
|
|
110
110
|
// Validate result
|
|
111
111
|
const validationResult = validateResult(statusResult);
|
|
112
112
|
if (!validationResult.isValid) {
|
|
@@ -4,8 +4,11 @@
|
|
|
4
4
|
*/
|
|
5
5
|
|
|
6
6
|
import { useEffect } from 'react';
|
|
7
|
+
import type { Creation } from '../../../../domain/entities/Creation';
|
|
7
8
|
|
|
8
9
|
export interface UseProcessingJobsPollerConfig {
|
|
10
|
+
userId: string | null;
|
|
11
|
+
creations: Creation[];
|
|
9
12
|
enabled?: boolean;
|
|
10
13
|
interval?: number;
|
|
11
14
|
}
|
|
@@ -16,24 +19,32 @@ export interface UseProcessingJobsPollerReturn {
|
|
|
16
19
|
|
|
17
20
|
/**
|
|
18
21
|
* Hook to poll processing jobs
|
|
19
|
-
* TODO: Implement actual polling logic
|
|
20
22
|
*/
|
|
21
23
|
export function useProcessingJobsPoller(
|
|
22
|
-
config: UseProcessingJobsPollerConfig
|
|
24
|
+
config: UseProcessingJobsPollerConfig
|
|
23
25
|
): UseProcessingJobsPollerReturn {
|
|
24
|
-
const { enabled = false, interval = 5000 } = config;
|
|
26
|
+
const { userId, creations, enabled = false, interval = 5000 } = config;
|
|
25
27
|
|
|
26
28
|
useEffect(() => {
|
|
27
|
-
if (!enabled) return;
|
|
29
|
+
if (!enabled || !userId) return;
|
|
28
30
|
|
|
29
31
|
const timer = setInterval(() => {
|
|
30
|
-
// Polling logic here
|
|
32
|
+
// Polling logic here - check processing creations and update their status
|
|
33
|
+
const processingCreations = creations.filter(c => c.status === 'processing');
|
|
34
|
+
processingCreations.forEach(async (creation) => {
|
|
35
|
+
try {
|
|
36
|
+
// Check job status and update creation
|
|
37
|
+
// TODO: Implement actual polling logic
|
|
38
|
+
} catch (error) {
|
|
39
|
+
console.error('Error polling job status:', error);
|
|
40
|
+
}
|
|
41
|
+
});
|
|
31
42
|
}, interval);
|
|
32
43
|
|
|
33
44
|
return () => clearInterval(timer);
|
|
34
|
-
}, [enabled, interval]);
|
|
45
|
+
}, [enabled, interval, userId, creations]);
|
|
35
46
|
|
|
36
47
|
return {
|
|
37
|
-
isPolling: enabled,
|
|
48
|
+
isPolling: enabled && !!userId,
|
|
38
49
|
};
|
|
39
50
|
}
|
package/src/domains/generation/wizard/infrastructure/strategies/video-generation.strategy.ts
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
import type { WizardStrategy } from "./wizard-strategy.types";
|
|
8
|
-
import type { CreateVideoStrategyOptions } from "./video-generation.types";
|
|
8
|
+
import type { CreateVideoStrategyOptions, WizardVideoInput } from "./video-generation.types";
|
|
9
|
+
import type { WizardScenarioData } from "../../presentation/hooks/useWizardGeneration";
|
|
9
10
|
import { validateWizardVideoInput } from "./video-generation.validation";
|
|
10
11
|
import { executeVideoGeneration, submitVideoGenerationToQueue } from "./video-generation.executor";
|
|
11
12
|
|
|
@@ -48,3 +49,25 @@ export function createVideoStrategy(options: CreateVideoStrategyOptions): Wizard
|
|
|
48
49
|
};
|
|
49
50
|
}
|
|
50
51
|
|
|
52
|
+
/**
|
|
53
|
+
* Build video input from wizard data and scenario
|
|
54
|
+
*/
|
|
55
|
+
export async function buildVideoInput(
|
|
56
|
+
wizardData: Record<string, unknown>,
|
|
57
|
+
scenario: WizardScenarioData
|
|
58
|
+
): Promise<WizardVideoInput> {
|
|
59
|
+
const prompt = (wizardData.prompt as string | undefined) || scenario.prompt || "";
|
|
60
|
+
const input: WizardVideoInput = {
|
|
61
|
+
prompt,
|
|
62
|
+
sourceImageBase64: wizardData.sourceImageBase64 as string | undefined,
|
|
63
|
+
targetImageBase64: wizardData.targetImageBase64 as string | undefined,
|
|
64
|
+
duration: wizardData.duration as number | undefined,
|
|
65
|
+
aspectRatio: wizardData.aspectRatio as string | undefined,
|
|
66
|
+
resolution: wizardData.resolution as string | undefined,
|
|
67
|
+
audioUrl: wizardData.audioUrl as string | undefined,
|
|
68
|
+
qualityMode: wizardData.qualityMode as "draft" | "normal" | undefined,
|
|
69
|
+
};
|
|
70
|
+
|
|
71
|
+
return input;
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -32,3 +32,17 @@ export interface CreateVideoStrategyOptions {
|
|
|
32
32
|
/** Credit cost for this generation - REQUIRED, determined by the app */
|
|
33
33
|
readonly creditCost: number;
|
|
34
34
|
}
|
|
35
|
+
|
|
36
|
+
export interface ExecutionResult {
|
|
37
|
+
success: boolean;
|
|
38
|
+
videoUrl?: string;
|
|
39
|
+
requestId?: string;
|
|
40
|
+
error?: string;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export interface SubmissionResult {
|
|
44
|
+
success: boolean;
|
|
45
|
+
requestId?: string;
|
|
46
|
+
model?: string;
|
|
47
|
+
error?: string;
|
|
48
|
+
}
|
|
@@ -2,10 +2,14 @@
|
|
|
2
2
|
* Generic Photo Upload State Hook - Type Definitions
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
export interface UploadedImage {
|
|
6
|
+
uri: string;
|
|
7
|
+
base64?: string;
|
|
8
|
+
width?: number;
|
|
9
|
+
height?: number;
|
|
10
|
+
previewUrl?: string;
|
|
11
|
+
fileSize?: number;
|
|
12
|
+
}
|
|
9
13
|
|
|
10
14
|
export interface PhotoUploadConfig {
|
|
11
15
|
readonly maxFileSizeMB?: number;
|
package/src/domains/generation/wizard/presentation/hooks/photo-upload/usePhotoUploadStateLogic.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
import { useCallback, useRef, useEffect } from "react";
|
|
6
6
|
import { useMedia, MediaQuality, MediaValidationError, MEDIA_CONSTANTS } from "@umituz/react-native-design-system/media";
|
|
7
|
-
import type { UploadedImage } from "
|
|
7
|
+
import type { UploadedImage } from "./types";
|
|
8
8
|
import type { PhotoUploadConfig, PhotoUploadError, PhotoUploadTranslations } from "./types";
|
|
9
9
|
|
|
10
10
|
export function usePhotoUploadStateLogic(
|
package/src/domains/generation/wizard/presentation/hooks/video-queue/use-video-queue-utils.ts
CHANGED
|
@@ -109,15 +109,24 @@ export function extractInputMetadata(params: {
|
|
|
109
109
|
readonly model: string;
|
|
110
110
|
readonly prompt: string;
|
|
111
111
|
readonly imageUrls?: string[];
|
|
112
|
+
readonly duration?: number;
|
|
113
|
+
readonly resolution?: string;
|
|
114
|
+
readonly aspectRatio?: string;
|
|
112
115
|
}): {
|
|
113
116
|
readonly model: string;
|
|
114
117
|
readonly prompt: string;
|
|
115
118
|
readonly imageUrls: string[];
|
|
119
|
+
readonly duration?: number;
|
|
120
|
+
readonly resolution?: string;
|
|
121
|
+
readonly aspectRatio?: string;
|
|
116
122
|
} {
|
|
117
123
|
return {
|
|
118
124
|
model: params.model,
|
|
119
125
|
prompt: params.prompt,
|
|
120
126
|
imageUrls: params.imageUrls || [],
|
|
127
|
+
duration: params.duration,
|
|
128
|
+
resolution: params.resolution,
|
|
129
|
+
aspectRatio: params.aspectRatio,
|
|
121
130
|
};
|
|
122
131
|
}
|
|
123
132
|
|
package/src/domains/generation/wizard/presentation/hooks/video-queue/useVideoQueueGenerationStart.ts
CHANGED
|
@@ -39,7 +39,15 @@ export function useStartGeneration(
|
|
|
39
39
|
let creationId: string | null = null;
|
|
40
40
|
if (userId && prompt) {
|
|
41
41
|
try {
|
|
42
|
-
const
|
|
42
|
+
const inputRecord = input as Record<string, unknown>;
|
|
43
|
+
const { duration, resolution, aspectRatio } = extractInputMetadata({
|
|
44
|
+
model: scenario.model || "",
|
|
45
|
+
prompt,
|
|
46
|
+
imageUrls: (inputRecord.imageUrls || inputRecord.image_url) as string[] | undefined,
|
|
47
|
+
duration: inputRecord.duration as number | undefined,
|
|
48
|
+
resolution: inputRecord.resolution as string | undefined,
|
|
49
|
+
aspectRatio: inputRecord.aspectRatio as string | undefined,
|
|
50
|
+
});
|
|
43
51
|
|
|
44
52
|
const result = await persistence.saveAsProcessing(userId, {
|
|
45
53
|
scenarioId: scenario.id,
|
|
@@ -68,7 +68,7 @@ export async function executeImageFeature(
|
|
|
68
68
|
if (!urlValidation.isValid) {
|
|
69
69
|
return {
|
|
70
70
|
success: false,
|
|
71
|
-
error: `Invalid image URL received: ${urlValidation.errors.join(", ")}`
|
|
71
|
+
error: `Invalid image URL received: ${Object.values(urlValidation.errors).join(", ")}`
|
|
72
72
|
};
|
|
73
73
|
}
|
|
74
74
|
|
|
@@ -100,10 +100,11 @@ export async function executeMultiImageGeneration(
|
|
|
100
100
|
if (typeof imageUrl === "string" && imageUrl.length > 0) {
|
|
101
101
|
const urlValidation = validateURL(imageUrl);
|
|
102
102
|
if (!urlValidation.isValid) {
|
|
103
|
-
|
|
103
|
+
const errorMsg = Object.values(urlValidation.errors).join(", ");
|
|
104
|
+
addGenerationLog(sid, TAG, `Invalid URL in response: ${errorMsg}`, 'error');
|
|
104
105
|
return {
|
|
105
106
|
success: false,
|
|
106
|
-
error: `Invalid image URL received: ${
|
|
107
|
+
error: `Invalid image URL received: ${errorMsg}`,
|
|
107
108
|
logSessionId: sid,
|
|
108
109
|
};
|
|
109
110
|
}
|
|
@@ -54,7 +54,7 @@ export async function executeVideoFeature(
|
|
|
54
54
|
if (!urlValidation.isValid) {
|
|
55
55
|
return {
|
|
56
56
|
success: false,
|
|
57
|
-
error: `Invalid video URL received: ${urlValidation.errors.join(", ")}`
|
|
57
|
+
error: `Invalid video URL received: ${Object.values(urlValidation.errors).join(", ")}`
|
|
58
58
|
};
|
|
59
59
|
}
|
|
60
60
|
|
|
@@ -26,7 +26,7 @@ export function validateAIPrompt(input: unknown): ValidationResult {
|
|
|
26
26
|
*/
|
|
27
27
|
export function validateImageData(input: unknown): ValidationResult {
|
|
28
28
|
if (typeof input !== "string") {
|
|
29
|
-
return { isValid: false, errors:
|
|
29
|
+
return { isValid: false, errors: { type: "Image data must be a string" } };
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
const trimmed = input.trim();
|
|
@@ -40,11 +40,11 @@ export function validateImageData(input: unknown): ValidationResult {
|
|
|
40
40
|
if (trimmed.startsWith("data:image/")) {
|
|
41
41
|
const parts = trimmed.split(",");
|
|
42
42
|
if (parts.length !== 2) {
|
|
43
|
-
return { isValid: false, errors:
|
|
43
|
+
return { isValid: false, errors: { format: "Invalid data URI format" } };
|
|
44
44
|
}
|
|
45
45
|
const base64Part = parts[1];
|
|
46
46
|
if (!base64Part || base64Part.length === 0) {
|
|
47
|
-
return { isValid: false, errors:
|
|
47
|
+
return { isValid: false, errors: { data: "Invalid data URI: missing base64 data" } };
|
|
48
48
|
}
|
|
49
49
|
return validateBase64(base64Part);
|
|
50
50
|
}
|
|
@@ -57,7 +57,7 @@ export function validateImageData(input: unknown): ValidationResult {
|
|
|
57
57
|
|
|
58
58
|
return {
|
|
59
59
|
isValid: false,
|
|
60
|
-
errors:
|
|
60
|
+
errors: { format: "Image data must be a URL, base64 data URI, or valid base64 string" },
|
|
61
61
|
};
|
|
62
62
|
}
|
|
63
63
|
|
|
@@ -14,7 +14,7 @@ export function validateUserId(input: unknown): ValidationResult {
|
|
|
14
14
|
maxLength: 100,
|
|
15
15
|
pattern: /^[a-zA-Z0-9_-]+$/,
|
|
16
16
|
};
|
|
17
|
-
return validateString(input, options);
|
|
17
|
+
return validateString(typeof input === "string" ? input : String(input), options);
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
/**
|
|
@@ -25,6 +25,6 @@ export function validateCreationId(input: unknown): ValidationResult {
|
|
|
25
25
|
minLength: 1,
|
|
26
26
|
maxLength: 100,
|
|
27
27
|
};
|
|
28
|
-
return validateString(input, options);
|
|
28
|
+
return validateString(typeof input === "string" ? input : String(input), options);
|
|
29
29
|
}
|
|
30
30
|
|
|
@@ -88,7 +88,7 @@ export const useImageGeneration = <TInput extends ImageGenerationInput, TResult>
|
|
|
88
88
|
return useGenerationOrchestrator(strategy, {
|
|
89
89
|
userId,
|
|
90
90
|
alertMessages,
|
|
91
|
-
onSuccess: onSuccess ? async (result) => onSuccess(result) : undefined,
|
|
91
|
+
onSuccess: onSuccess ? async (result) => onSuccess(result as TResult) : undefined,
|
|
92
92
|
onError: async (error) => handleError(error),
|
|
93
93
|
});
|
|
94
94
|
};
|
|
@@ -103,7 +103,7 @@ export const useVideoGeneration = <TResult>(
|
|
|
103
103
|
return useGenerationOrchestrator(strategy, {
|
|
104
104
|
userId,
|
|
105
105
|
alertMessages,
|
|
106
|
-
onSuccess: onSuccess ? async (result) => onSuccess(result) : undefined,
|
|
106
|
+
onSuccess: onSuccess ? async (result) => onSuccess(result as TResult) : undefined,
|
|
107
107
|
onError: async (error) => handleError(error),
|
|
108
108
|
});
|
|
109
109
|
};
|