-
Notifications
You must be signed in to change notification settings - Fork 88
Expand file tree
/
Copy pathGenerateImageInlineModal.tsx
More file actions
431 lines (407 loc) · 11.6 KB
/
GenerateImageInlineModal.tsx
File metadata and controls
431 lines (407 loc) · 11.6 KB
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
/**
* WordPress dependencies
*/
import { useState } from '@wordpress/element';
import { __, sprintf } from '@wordpress/i18n';
import {
Modal,
Button,
TextareaControl,
Spinner,
Notice,
} from '@wordpress/components';
import { image, chevronLeft, chevronRight } from '@wordpress/icons';
/**
* Internal dependencies
*/
import { runAbility } from '../../../utils/run-ability';
import { uploadImage } from '../functions/upload-image';
import { insertIntoBlock } from '../functions/insert-into-block';
import { openGalleryMediaLibraryWithImage } from '../functions/open-gallery-media-library';
import { useImageHistory } from '../hooks/useImageHistory';
import type {
GeneratedImageData,
ImageGenerationAbilityInput,
UploadedImage,
} from '../types';
const { aiImageGenerationData } = window as any;
type ModalState = 'idle' | 'generating' | 'preview' | 'refining';
interface Props {
blockName: string;
clientId: string;
setAttributes: ( attrs: Record< string, unknown > ) => void;
onClose: () => void;
}
/**
* Modal component for inline AI image generation in the block editor.
*
* Supports a generate → preview → refine → insert flow. When refining,
* the current preview image is sent as a reference to the generation
* ability so that models supporting image editing can use it as context.
*
* @param {Props} props The props for the component.
* @param {string} props.blockName The name of the block.
* @param {string} props.clientId The client ID of the block.
* @param {Function} props.setAttributes The function to set the attributes of the block.
* @param {Function} props.onClose The function to close the modal.
*/
export function GenerateImageInlineModal( {
blockName,
clientId,
setAttributes,
onClose,
}: Props ) {
const [ state, setState ] = useState< ModalState >( 'idle' );
const [ prompt, setPrompt ] = useState( '' );
const [ refinePrompt, setRefinePrompt ] = useState( '' );
const [ progress, setProgress ] = useState( '' );
const [ error, setError ] = useState< string | null >( null );
const {
history,
historyIndex,
activeEntry,
canGoBack,
canGoForward,
addToHistory,
goBack,
goForward,
resetHistory,
} = useImageHistory();
/**
* Runs the image generation ability with the given prompt and optional
* reference image for the refining flow.
*
* @param {string} activePrompt The prompt to generate an image from.
* @param {string|undefined} referenceImage Optional base64 image for refining.
* @param {number|undefined} refHistoryIndex History index of the entry whose image is the reference.
*/
async function generate(
activePrompt: string,
referenceImage?: string,
refHistoryIndex?: number
): Promise< void > {
setError( null );
setState( 'generating' );
setProgress( __( 'Generating image…', 'ai' ) );
try {
const input: ImageGenerationAbilityInput = { prompt: activePrompt };
if ( referenceImage ) {
input.reference = referenceImage;
}
const response = ( await runAbility(
'ai/image-generation',
input
) ) as GeneratedImageData;
if ( ! response || ! response.image ) {
throw new Error(
__( 'Invalid response from image generation', 'ai' )
);
}
const prevData = activeEntry?.generatedData;
const previousPrompts = referenceImage
? prevData?.prompts ??
( prevData?.prompt ? [ prevData.prompt ] : [] )
: [];
const promptHistory = previousPrompts.filter( Boolean );
const lastPrompt = promptHistory[ promptHistory.length - 1 ];
const prompts =
lastPrompt === activePrompt
? promptHistory
: [ ...promptHistory, activePrompt ];
addToHistory(
{ ...response, prompt: activePrompt, prompts },
referenceImage,
!! referenceImage,
refHistoryIndex
);
setState( 'preview' );
} catch ( err: any ) {
const message: string =
err?.message ||
__( 'An error occurred during image generation.', 'ai' );
setError( message );
// Return to the previous state so the user can try again.
setState( referenceImage ? 'refining' : 'idle' );
}
}
/**
* Uploads the generated image and inserts it into the block.
*/
async function handleUseImage(): Promise< void > {
if ( ! activeEntry ) {
return;
}
setError( null );
setState( 'generating' );
setProgress( __( 'Uploading image…', 'ai' ) );
try {
const uploaded: UploadedImage = await uploadImage(
activeEntry.generatedData,
{
onProgress: setProgress,
altTextEnabled: aiImageGenerationData?.altTextEnabled,
}
);
if ( blockName === 'core/gallery' ) {
const openedMediaLibrary = openGalleryMediaLibraryWithImage(
clientId,
uploaded
);
if ( ! openedMediaLibrary ) {
insertIntoBlock(
blockName,
clientId,
setAttributes,
uploaded
);
}
} else {
insertIntoBlock( blockName, clientId, setAttributes, uploaded );
}
onClose();
} catch ( err: any ) {
setError( err?.message || __( 'Failed to upload image.', 'ai' ) );
setState( 'preview' );
}
}
const previewSrc = activeEntry?.generatedData?.image?.data
? `data:image/png;base64,${ activeEntry.generatedData.image.data }`
: null;
// Show comparison only when the active entry was a refinement.
const showComparison = Boolean( activeEntry?.referenceSrc );
const comparisonLeftLabel = sprintf(
/* translators: %d: version number */
__( 'Version %d', 'ai' ),
( activeEntry?.referenceHistoryIndex ?? 0 ) + 1
);
const comparisonRightLabel = sprintf(
/* translators: %d: version number */
__( 'Version %d', 'ai' ),
historyIndex + 1
);
return (
<Modal
title={ __( 'Generate Image', 'ai' ) }
onRequestClose={ onClose }
icon={ image }
size="large"
className="ai-generate-image-inline-modal"
>
{ /* IDLE — initial prompt input */ }
{ state === 'idle' && (
<div className="ai-generate-image-inline-modal__idle">
<p className="description">
{ __(
'Describe the image you want to generate.',
'ai'
) }
</p>
<TextareaControl
label={ __( 'Prompt', 'ai' ) }
value={ prompt }
onChange={ setPrompt }
rows={ 4 }
hideLabelFromVision
__nextHasNoMarginBottom
/>
<div className="ai-generate-image-inline-modal__actions">
<Button
variant="primary"
disabled={ ! prompt.trim() }
onClick={ () => generate( prompt.trim() ) }
>
{ __( 'Generate', 'ai' ) }
</Button>
</div>
{ error && (
<Notice status="error" isDismissible={ false }>
{ error }
</Notice>
) }
</div>
) }
{ /* GENERATING — spinner + progress message */ }
{ state === 'generating' && (
<div className="ai-generate-image-inline-modal__generating">
{ previewSrc && (
<img
src={ previewSrc }
alt={ activeEntry?.generatedData?.prompt ?? '' }
className="ai-generate-image-inline-modal__preview-image"
/>
) }
<div className="ai-generate-image-inline-modal__spinner-row">
<Spinner />
<span>{ progress }</span>
</div>
{ error && (
<Notice status="error" isDismissible={ false }>
{ error }
</Notice>
) }
</div>
) }
{ /* PREVIEW — show the generated image with action buttons */ }
{ state === 'preview' && previewSrc && (
<div className="ai-generate-image-inline-modal__preview">
<div className="ai-image-history-nav">
<Button
className="ai-image-history-nav__arrow"
icon={ chevronLeft }
disabled={ ! canGoBack }
onClick={ goBack }
label={ __( 'Previous version', 'ai' ) }
/>
<div className="ai-image-history-nav__content">
{ showComparison ? (
<div className="ai-generate-image-inline-modal__comparison">
<div className="ai-generate-image-inline-modal__comparison-item">
<p className="ai-generate-image-inline-modal__comparison-label">
{ comparisonLeftLabel }
</p>
<img
src={
activeEntry?.referenceSrc ?? ''
}
alt={ comparisonLeftLabel }
className="ai-generate-image-inline-modal__preview-image"
/>
</div>
<div className="ai-generate-image-inline-modal__comparison-item">
<p className="ai-generate-image-inline-modal__comparison-label">
{ comparisonRightLabel }
</p>
<img
src={ previewSrc }
alt={
activeEntry?.generatedData
?.prompt ?? ''
}
className="ai-generate-image-inline-modal__preview-image is-active"
/>
</div>
</div>
) : (
<img
src={ previewSrc }
alt={
activeEntry?.generatedData?.prompt ?? ''
}
className="ai-generate-image-inline-modal__preview-image is-active"
/>
) }
</div>
<Button
className="ai-image-history-nav__arrow"
icon={ chevronRight }
disabled={ ! canGoForward }
onClick={ goForward }
label={ __( 'Next version', 'ai' ) }
/>
</div>
{ history.length > 1 && (
<p className="ai-image-history-nav__counter">
{ sprintf(
/* translators: 1: current position, 2: total count */
__( '%1$d / %2$d', 'ai' ),
historyIndex + 1,
history.length
) }
</p>
) }
<div className="ai-generate-image-inline-modal__actions">
<Button variant="primary" onClick={ handleUseImage }>
{ __( 'Use Image', 'ai' ) }
</Button>
<Button
variant="secondary"
onClick={ () => {
setRefinePrompt( '' );
setState( 'refining' );
} }
>
{ __( 'Refine Image', 'ai' ) }
</Button>
<Button
variant="secondary"
onClick={ () => {
generate(
activeEntry?.generatedData.prompt ??
prompt.trim(),
activeEntry?.referenceSrc,
activeEntry?.referenceHistoryIndex
);
} }
>
{ __( 'Generate Another Image', 'ai' ) }
</Button>
<Button
variant="tertiary"
onClick={ () => {
resetHistory();
setState( 'idle' );
setError( null );
} }
>
{ __( 'Edit Prompt', 'ai' ) }
</Button>
</div>
{ error && (
<Notice status="error" isDismissible={ false }>
{ error }
</Notice>
) }
</div>
) }
{ /* REFINING — show current image + follow-up prompt */ }
{ state === 'refining' && previewSrc && (
<div className="ai-generate-image-inline-modal__refining">
<img
src={ previewSrc }
alt={ activeEntry?.generatedData?.prompt ?? '' }
className="ai-generate-image-inline-modal__preview-image"
/>
<TextareaControl
label={ __(
'Describe the refinements you want to make to the image.',
'ai'
) }
value={ refinePrompt }
onChange={ setRefinePrompt }
rows={ 3 }
__nextHasNoMarginBottom
/>
<div className="ai-generate-image-inline-modal__actions">
<Button
variant="primary"
disabled={ ! refinePrompt.trim() }
onClick={ () =>
generate(
refinePrompt.trim(),
previewSrc,
historyIndex
)
}
>
{ __( 'Refine', 'ai' ) }
</Button>
<Button
variant="tertiary"
onClick={ () => {
setState( 'preview' );
setError( null );
} }
>
{ __( 'Cancel Refinement', 'ai' ) }
</Button>
</div>
{ error && (
<Notice status="error" isDismissible={ false }>
{ error }
</Notice>
) }
</div>
) }
</Modal>
);
}