|
@@ -15,8 +15,9 @@ function isIndexExistInBlockArray(blockIndex, length) {
|
|
|
const contentDiv = document.getElementById('editor_block');
|
|
|
const titleButton = document.getElementById('title_button');
|
|
|
const submitButton = document.getElementById('submit_button');
|
|
|
-axios.get('/static/公仔與爵士鼓.md').then(function(response) {
|
|
|
- const content = response.data;
|
|
|
+const contentApiUrl = `${PORTAL_SERVER}contents?url=${(JSON.parse(document.getElementById('url').textContent)).url}`
|
|
|
+axios.get(contentApiUrl).then(({ data }) => {
|
|
|
+ const content = _.get(data, 'content', '');
|
|
|
var {blockArray, blockCount} = parseMd(content);
|
|
|
var dataIndex;
|
|
|
titleButton.onclick = function() {
|
|
@@ -39,7 +40,7 @@ axios.get('/static/公仔與爵士鼓.md').then(function(response) {
|
|
|
dataIndex += 1;
|
|
|
const {p, descTextArea, descInputButton} = getdescElements(blockDiv);
|
|
|
descInputButton.onclick = function() {
|
|
|
- blockArray = handleDescInputClick(p, descTextArea.value, blockArray, blockindex, ownDataIndex);
|
|
|
+ blockArray = handleDescInputClick(p, descTextArea.value, blockArray, blockIndex, ownDataIndex);
|
|
|
}
|
|
|
}
|
|
|
imgButton.onclick = function() {
|
|
@@ -66,17 +67,24 @@ axios.get('/static/公仔與爵士鼓.md').then(function(response) {
|
|
|
mdContent += _.get(data, 'description.text', '') + '\n';
|
|
|
} else if (_.get(_.keys(data), 0) === 'image') {
|
|
|
ampImgForm = `<amp-img\
|
|
|
- \n alt="${_.get(data, 'image.alt', '小寶優居')}"\
|
|
|
- \n src="${_.get(data, 'image.src', '')}"\
|
|
|
- \n height="${_.get(data, 'image.height', 300)}"\
|
|
|
- \n width="${_.get(data, 'image.width', 400)}"\
|
|
|
- \n layout="${_.get(data, 'image.layout', 'responsive')}>"\
|
|
|
- \n</amp-img>`;
|
|
|
+\n alt="${_.get(data, 'image.alt', '小寶優居')}"\
|
|
|
+\n src="${_.get(data, 'image.src', '')}"\
|
|
|
+\n height="${_.get(data, 'image.height', 300)}"\
|
|
|
+\n width="${_.get(data, 'image.width', 400)}"\
|
|
|
+\n layout="${_.get(data, 'image.layout', 'responsive')}">\
|
|
|
+\n</amp-img>\n`;
|
|
|
mdContent += ampImgForm;
|
|
|
}
|
|
|
- }
|
|
|
+ }
|
|
|
}
|
|
|
console.log(mdContent);
|
|
|
console.log(blockArray);
|
|
|
+ const postData = {
|
|
|
+ content: mdContent,
|
|
|
+ path: '家具規劃作品/test_post_index.md',
|
|
|
+ title: 'test_post_index',
|
|
|
+ url: '/collection/test_post_index'
|
|
|
+ }
|
|
|
+ axios.post(contentApiUrl, json=postData);
|
|
|
}
|
|
|
});
|