Переглянути джерело

handle add/modify image return file name to imgObject

weichen 4 роки тому
батько
коміт
6b9475be33
2 змінених файлів з 3 додано та 3 видалено
  1. 1 1
      backstage/static/js/editor.js
  2. 2 2
      backstage/static/js/parsers.js

+ 1 - 1
backstage/static/js/editor.js

@@ -49,7 +49,7 @@ axios.get(contentApiUrl).then(({ data }) => {
       dataIndex += 1;
       const {img, imgInput, widthInput, heightInput, imgInputButton} = getImgElements(blockDiv);
       imgInputButton.onclick = function() {
-        const imgObject = {image: {src: imgInput.value,
+        const imgObject = {image: {src: 'img/' + imgInput.files[0].name,
                                    height: heightInput.value,
                                    width: widthInput.value,
                                    alt: 'image field',

+ 2 - 2
backstage/static/js/parsers.js

@@ -58,7 +58,7 @@ function parseMd(content) {
         const imgDataIndex = blockArray[preBlockindex].data.length;
         const {img, imgInput, widthInput, heightInput, imgInputButton} = getImgElements(blockDiv);
         imgInputButton.onclick = function() {
-          const imgObject = {image: {src: imgInput.value,
+          const imgObject = {image: {src: 'img/' + imgInput.files[0].name,
                                      height: heightInput.value,
                                      width: widthInput.value,
                                      alt: 'image field',
@@ -80,7 +80,7 @@ function parseMd(content) {
       const {img, imgInput, widthInput, heightInput, imgInputButton} = getImgElements(parseBlockDiv);
       preImg = img;
       imgInputButton.onclick = function() {
-        const imgObject = {image: {src: imgInput.value,
+        const imgObject = {image: {src: 'img/' + imgInput.files[0].name,
                                    height: heightInput.value,
                                    width: widthInput.value,
                                    alt: 'image field',