Browse Source

fixed the issue where save did not work

pull/6094/head
Sven Günther 2 weeks ago
parent
commit
25dc877c73
  1. 44
      apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts

44
apps/client/src/app/components/admin-market-data/asset-profile-dialog/asset-profile-dialog.component.ts

@ -508,7 +508,17 @@ export class GfAssetProfileDialogComponent implements OnDestroy, OnInit {
if (!scraperConfiguration.selector || !scraperConfiguration.url) { if (!scraperConfiguration.selector || !scraperConfiguration.url) {
scraperConfiguration = undefined; scraperConfiguration = undefined;
} }
} catch {} } catch (error) {
console.error('Error parsing scraper configuration:', error);
this.snackBar.open(
$localize`Invalid scraper configuration. Please check the HTTP Request Headers field contains valid JSON.`,
undefined,
{
duration: ms('5 seconds')
}
);
return;
}
try { try {
sectors = JSON.parse(this.assetProfileForm.get('sectors').value); sectors = JSON.parse(this.assetProfileForm.get('sectors').value);
@ -542,7 +552,14 @@ export class GfAssetProfileDialogComponent implements OnDestroy, OnInit {
object: assetProfile object: assetProfile
}); });
} catch (error) { } catch (error) {
console.error(error); console.error('Validation error:', error);
this.snackBar.open(
$localize`Validation failed. Please check all required fields.`,
undefined,
{
duration: ms('5 seconds')
}
);
return; return;
} }
@ -554,8 +571,23 @@ export class GfAssetProfileDialogComponent implements OnDestroy, OnInit {
}, },
assetProfile assetProfile
) )
.subscribe(() => { .subscribe({
this.initialize(); next: () => {
this.snackBar.open(
$localize`Asset profile saved successfully`,
undefined,
{
duration: ms('3 seconds')
}
);
this.initialize();
},
error: (error) => {
console.error('Error saving asset profile:', error);
this.snackBar.open($localize`Error saving asset profile`, undefined, {
duration: ms('5 seconds')
});
}
}); });
} }
@ -706,8 +738,8 @@ export class GfAssetProfileDialogComponent implements OnDestroy, OnInit {
} }
public onTriggerSubmitAssetProfileForm() { public onTriggerSubmitAssetProfileForm() {
if (this.assetProfileForm) { if (this.assetProfileForm.valid) {
this.assetProfileFormElement.nativeElement.requestSubmit(); this.onSubmitAssetProfileForm();
} }
} }

Loading…
Cancel
Save