16
16
using Semver ;
17
17
using ServerlessWorkflow . Sdk . Models ;
18
18
using Synapse . Api . Client . Services ;
19
+ using Synapse . Dashboard . Pages . Workflows . Create ;
19
20
using Synapse . Resources ;
20
21
21
22
namespace Synapse . Dashboard . Pages . Functions . Create ;
@@ -189,7 +190,6 @@ MonacoInterop monacoInterop
189
190
#endregion
190
191
191
192
#region Setters
192
-
193
193
/// <summary>
194
194
/// Sets the state's <see cref="CreateFunctionViewState.Name"/>
195
195
/// </summary>
@@ -215,6 +215,18 @@ public void SetChosenName(string? name)
215
215
} ) ;
216
216
}
217
217
218
+ /// <summary>
219
+ /// Sets the state's <see cref="CreateFunctionViewState.IsNew"/>
220
+ /// </summary>
221
+ /// <param name="isNew">The new <see cref="CreateFunctionViewState.IsNew"/> value</param>
222
+ public void SetIsNew ( bool isNew )
223
+ {
224
+ this . Reduce ( state => state with
225
+ {
226
+ IsNew = isNew
227
+ } ) ;
228
+ }
229
+
218
230
/// <summary>
219
231
/// Sets the state's <see cref="CreateFunctionViewState" /> <see cref="ProblemDetails"/>'s related data
220
232
/// </summary>
@@ -393,6 +405,7 @@ public async Task SaveCustomFunctionAsync()
393
405
this . YamlSerializer . Deserialize < TaskDefinition > ( functionText ) ! ;
394
406
var name = this . Get ( state => state . Name ) ?? this . Get ( state => state . ChosenName ) ;
395
407
var version = this . Get ( state => state . Version ) . ToString ( ) ;
408
+ var isNew = this . Get ( state => state . IsNew ) ;
396
409
if ( string . IsNullOrEmpty ( name ) )
397
410
{
398
411
this . Reduce ( state => state with
@@ -407,41 +420,41 @@ public async Task SaveCustomFunctionAsync()
407
420
Saving = true
408
421
} ) ;
409
422
CustomFunction ? resource = null ;
410
- try
411
- {
412
- resource = await this . ApiClient . CustomFunctions . GetAsync ( name ) ;
413
- }
414
- catch
423
+ if ( isNew )
415
424
{
416
- // Assume 404, might need actual handling
417
- }
418
- if ( resource == null )
419
- {
420
- resource = await this . ApiClient . CustomFunctions . CreateAsync ( new ( )
425
+
426
+ try
421
427
{
422
- Metadata = new ( )
428
+ resource = await this . ApiClient . CustomFunctions . CreateAsync ( new ( )
423
429
{
424
- Name = name
425
- } ,
426
- Spec = new ( )
427
- {
428
- Versions = [ new ( version , function ) ]
429
- }
430
- } ) ;
431
- }
432
- else
433
- {
434
- var updatedResource = resource . Clone ( ) ! ;
435
- updatedResource . Spec . Versions . Add ( new ( version , function ) ) ;
436
- var jsonPatch = JsonPatch . FromDiff ( this . JsonSerializer . SerializeToElement ( resource ) ! . Value , this . JsonSerializer . SerializeToElement ( updatedResource ) ! . Value ) ;
437
- var patch = this . JsonSerializer . Deserialize < Json . Patch . JsonPatch > ( jsonPatch . RootElement ) ;
438
- if ( patch != null )
430
+ Metadata = new ( )
431
+ {
432
+ Name = name
433
+ } ,
434
+ Spec = new ( )
435
+ {
436
+ Versions = [ new ( version , function ) ]
437
+ }
438
+ } ) ;
439
+ this . NavigationManager . NavigateTo ( $ "/functions/{ name } ") ;
440
+ return ;
441
+ }
442
+ catch ( ProblemDetailsException ex ) when ( ex . Problem . Title == "Conflict" && ex . Problem . Detail != null && ex . Problem . Detail . EndsWith ( "already exists" ) )
439
443
{
440
- var resourcePatch = new Patch ( PatchType . JsonPatch , jsonPatch ) ;
441
- await this . ApiClient . ManageCluster < CustomFunction > ( ) . PatchAsync ( name , resourcePatch , null , this . CancellationTokenSource . Token ) ;
444
+ // the function exists, try to update it instead
442
445
}
443
446
}
444
- this . NavigationManager . NavigateTo ( $ "/functions/{ name } ") ;
447
+ resource = await this . ApiClient . CustomFunctions . GetAsync ( name ) ;
448
+ var updatedResource = resource . Clone ( ) ! ;
449
+ updatedResource . Spec . Versions . Add ( new ( version , function ) ) ;
450
+ var jsonPatch = JsonPatch . FromDiff ( this . JsonSerializer . SerializeToElement ( resource ) ! . Value , this . JsonSerializer . SerializeToElement ( updatedResource ) ! . Value ) ;
451
+ var patch = this . JsonSerializer . Deserialize < Json . Patch . JsonPatch > ( jsonPatch . RootElement ) ;
452
+ if ( patch != null )
453
+ {
454
+ var resourcePatch = new Patch ( PatchType . JsonPatch , jsonPatch ) ;
455
+ await this . ApiClient . ManageCluster < CustomFunction > ( ) . PatchAsync ( name , resourcePatch , null , this . CancellationTokenSource . Token ) ;
456
+ }
457
+
445
458
}
446
459
catch ( ProblemDetailsException ex )
447
460
{
@@ -477,6 +490,15 @@ public async Task SaveCustomFunctionAsync()
477
490
catch ( Exception ex )
478
491
{
479
492
this . Logger . LogError ( "Unable to save function definition: {exception}" , ex . ToString ( ) ) ;
493
+ this . Reduce ( state => state with
494
+ {
495
+ ProblemTitle = "Error" ,
496
+ ProblemDetail = "An error occurred while saving the function." ,
497
+ ProblemErrors = new Dictionary < string , string [ ] > ( )
498
+ {
499
+ { "Message" , [ ex . ToString ( ) ] }
500
+ }
501
+ } ) ;
480
502
}
481
503
finally
482
504
{
0 commit comments