Explorar o código

add delete img api into removeImgData function

weichen %!s(int64=4) %!d(string=hai) anos
pai
achega
3cfe9be981
Modificáronse 1 ficheiros con 4 adicións e 2 borrados
  1. 4 2
      backstage/static/js/utils.js

+ 4 - 2
backstage/static/js/utils.js

@@ -7,7 +7,9 @@ function removeImgElement(img, input, widthInput, heightInput, inputButton, remo
   removeButton.remove();
 }
 
-function removeImgData(blockArray, blockIndex, dataIndex) {
-  blockArray[blockIndex].data.splice(dataIndex, 1);
+function removeImgData(blockArray, blockIndex, dataIndex, contentUrl) {
+  const removeData = blockArray[blockIndex].data.splice(dataIndex, 1);
+  const filename = _.get(removeData, '0.image.src').replace('img/', '')
+  axios.delete(`${PORTAL_SERVER}delete/img?url=${contentUrl}&filename=${filename}`)
   return blockArray;
 }