|
@@ -64,12 +64,12 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
}
|
|
|
else if (blocks[i]['type'] == "youtube") {
|
|
|
ampimg = blocks[i]['text'];
|
|
|
- vid = ampimg.substr(ampimg.indexOf("data-videoid=\"") +14, ampimg.indexOf("\"", ampimg.indexOf("data-videoid=\"") + 14) - ampimg.indexOf("data-videoid=\"") - 14)
|
|
|
+ vid = ampimg.substr(ampimg.indexOf("data-videoid=\"") + 14, ampimg.indexOf("\"", ampimg.indexOf("data-videoid=\"") + 14) - ampimg.indexOf("data-videoid=\"") - 14)
|
|
|
editorBlocks.push({
|
|
|
type: "embed", data: {
|
|
|
service: 'youtube',
|
|
|
- source: 'https://www.youtube.com/watch?'+ vid,
|
|
|
- embed: 'https://www.youtube.com/embed/'+ vid,
|
|
|
+ source: 'https://www.youtube.com/watch?' + vid,
|
|
|
+ embed: 'https://www.youtube.com/embed/' + vid,
|
|
|
width: parseInt(ampimg.substr(ampimg.indexOf("width=\"") + 7, ampimg.indexOf("\"", ampimg.indexOf("width=\"") + 7) - ampimg.indexOf("width=\"") - 7)),
|
|
|
height: parseInt(ampimg.substr(ampimg.indexOf("height=\"") + 8, ampimg.indexOf("\"", ampimg.indexOf("height=\"") + 8) - ampimg.indexOf("height=\"") - 8)),
|
|
|
}
|
|
@@ -92,7 +92,7 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
}
|
|
|
else if (blocks[i]['type'] == "table") {
|
|
|
//alert('yo');
|
|
|
- editorBlocks.push({ type: "table", data: { content: tableTextToArray(blocks[i]['text'])} });
|
|
|
+ editorBlocks.push({ type: "table", data: { content: tableTextToArray(blocks[i]['text']) } });
|
|
|
}
|
|
|
//li.appendChild(odiv);
|
|
|
//ul.appendChild(li);
|
|
@@ -118,9 +118,9 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
class: ImageTool,
|
|
|
config: {
|
|
|
endpoints: {
|
|
|
-/* byFile: '/backstage/upload' + JSON.parse(document.getElementById('url').textContent).url, // Your backend file uploader endpoint
|
|
|
- byUrl: '/backstage/getimage' + JSON.parse(document.getElementById('url').textContent).url, // Your endpoint that provides uploading by Url
|
|
|
-*/
|
|
|
+ /* byFile: '/backstage/upload' + JSON.parse(document.getElementById('url').textContent).url, // Your backend file uploader endpoint
|
|
|
+ byUrl: '/backstage/getimage' + JSON.parse(document.getElementById('url').textContent).url, // Your endpoint that provides uploading by Url
|
|
|
+ */
|
|
|
byFile: '/backstage/upload/' + $('#ctitle').val(), // Your backend file uploader endpoint
|
|
|
byUrl: '/backstage/getimage/' + $('#ctitle').val(), // Your endpoint that provides uploading by Url
|
|
|
}
|
|
@@ -160,7 +160,7 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
|
|
|
submitButton.onclick = function () {
|
|
|
|
|
|
- editor.save().then((outputData) => {
|
|
|
+ editor.save().then((outputData) => {
|
|
|
//console.log('Article data: ', outputData);
|
|
|
|
|
|
var mdContent = '';
|
|
@@ -177,7 +177,7 @@ submitButton.onclick = function () {
|
|
|
mdContent += 'url: "' + $('#curl').val() + '"\n';
|
|
|
mdContent += 'image: "' + $('#cimage').val() + '"\n';
|
|
|
mdContent += 'description: "' + $('#cdescription').val() + '"\n';
|
|
|
- mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val())+ '\n';
|
|
|
+ mdContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
|
|
|
mdContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
|
|
|
mdContent += '---\n\n';
|
|
|
|
|
@@ -208,15 +208,15 @@ submitButton.onclick = function () {
|
|
|
}
|
|
|
else if (block.type == "embed") {
|
|
|
mdContent += '\n<amp-youtube'
|
|
|
- + '\n data-videoid="' + block.data.embed.replace('https://www.youtube.com/embed/','')
|
|
|
- + '"\n layout="responsive'
|
|
|
- + '"\n width="' + block.data.width
|
|
|
- + '"\n height="' + block.data.height
|
|
|
- + '">\n</amp-youtube>\n';
|
|
|
+ + '\n data-videoid="' + block.data.embed.replace('https://www.youtube.com/embed/', '')
|
|
|
+ + '"\n layout="responsive'
|
|
|
+ + '"\n width="' + block.data.width
|
|
|
+ + '"\n height="' + block.data.height
|
|
|
+ + '">\n</amp-youtube>\n';
|
|
|
}
|
|
|
else if (block.type == "table") {
|
|
|
//alert(tableArrayToHtml(block.data).length);
|
|
|
- mdContent += '\n'+ tableArrayToHtml(block.data.content) +'\n'
|
|
|
+ mdContent += '\n' + tableArrayToHtml(block.data.content) + '\n'
|
|
|
//console.log(tableArrayToHtml(block.data.content));
|
|
|
}
|
|
|
}
|
|
@@ -226,17 +226,17 @@ submitButton.onclick = function () {
|
|
|
content: mdContent,
|
|
|
url: (JSON.parse(document.getElementById('url').textContent)).url
|
|
|
};
|
|
|
- axios.post(contentApiUrl, json = postData);
|
|
|
-
|
|
|
- alert('作品資料已儲存');
|
|
|
+ axios.post(contentApiUrl, json = postData).then(({ data }) => {
|
|
|
+ alert('作品資料已儲存');
|
|
|
+ });
|
|
|
}).catch((error) => {
|
|
|
console.log('Saving failed: ', error)
|
|
|
});
|
|
|
|
|
|
-/* var mdContent = '';
|
|
|
- for (var frontMatter of frontMatters) {
|
|
|
- mdContent += frontMatter + '\n';
|
|
|
- } */
|
|
|
+ /* var mdContent = '';
|
|
|
+ for (var frontMatter of frontMatters) {
|
|
|
+ mdContent += frontMatter + '\n';
|
|
|
+ } */
|
|
|
|
|
|
//alert(bb);
|
|
|
/* for(var eBlock in outputData.blocks)
|