From 24e864bc823b27ac27c39e9e5879987924330007 Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Mon, 17 Jun 2019 19:38:39 -0300 Subject: [PATCH] 14874: Shows error message on properties update. Also, don't send the entire object when doing API calls. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- .../collection-panel-action.ts | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/src/store/collection-panel/collection-panel-action.ts b/src/store/collection-panel/collection-panel-action.ts index b1dd8389..cb28fcea 100644 --- a/src/store/collection-panel/collection-panel-action.ts +++ b/src/store/collection-panel/collection-panel-action.ts @@ -45,16 +45,19 @@ export const createCollectionTag = (data: TagProperty) => const uuid = item ? item.uuid : ''; try { if (item) { + const d: Partial = { + properties: JSON.parse(JSON.stringify(item.properties)) + }; + d.properties[data.key] = data.value; + const updatedCollection = await services.collectionService.update(uuid, d); item.properties[data.key] = data.value; - const version = 'version'; - delete item[version]; - const updatedCollection = await services.collectionService.update(uuid, item); dispatch(resourcesActions.SET_RESOURCES([updatedCollection])); dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Tag has been successfully added.", hideDuration: 2000, kind: SnackbarKind.SUCCESS })); return updatedCollection; } return; } catch (e) { + dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.errors[0], hideDuration: 2000, kind: SnackbarKind.ERROR })); return; } }; @@ -65,7 +68,7 @@ export const navigateToProcess = (uuid: string) => await services.containerRequestService.get(uuid); dispatch(navigateTo(uuid)); } catch { - dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'This process does not exists!', hideDuration: 2000, kind: SnackbarKind.ERROR })); + dispatch(snackbarActions.OPEN_SNACKBAR({ message: 'This process does not exist!', hideDuration: 2000, kind: SnackbarKind.ERROR })); } }; @@ -75,14 +78,19 @@ export const deleteCollectionTag = (key: string) => const uuid = item ? item.uuid : ''; try { if (item) { + const data: Partial = { + properties: JSON.parse(JSON.stringify(item.properties)) + }; + delete data.properties[key]; + const updatedCollection = await services.collectionService.update(uuid, data); delete item.properties[key]; - const updatedCollection = await services.collectionService.update(uuid, item); dispatch(resourcesActions.SET_RESOURCES([updatedCollection])); dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Tag has been successfully deleted.", hideDuration: 2000, kind: SnackbarKind.SUCCESS })); return updatedCollection; } return; } catch (e) { + dispatch(snackbarActions.OPEN_SNACKBAR({ message: e.errors[0], hideDuration: 2000, kind: SnackbarKind.ERROR })); return; } }; -- 2.30.2