|
@@ -63,6 +63,19 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
img.src = tmpsrc;
|
|
|
odiv.appendChild(img);
|
|
|
}
|
|
|
+ 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)
|
|
|
+ editorBlocks.push({
|
|
|
+ type: "embed", data: {
|
|
|
+ service: 'youtube',
|
|
|
+ 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)),
|
|
|
+ }
|
|
|
+ });
|
|
|
+ }
|
|
|
else if (blocks[i]['type'] == "title") {
|
|
|
blocks[i]['text'] = blocks[i]['text'].replace("### **", "").replace("**", "")
|
|
|
editorBlocks.push({ type: "header", data: { text: blocks[i]['text'] } });
|
|
@@ -111,7 +124,8 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
}
|
|
|
,
|
|
|
code: CodeTool,
|
|
|
- delimiter: Delimiter
|
|
|
+ delimiter: Delimiter,
|
|
|
+ embed: Embed,
|
|
|
}
|
|
|
,
|
|
|
data: { blocks: editorBlocks }
|
|
@@ -138,9 +152,22 @@ submitButton.onclick = function () {
|
|
|
console.log('Article data: ', outputData);
|
|
|
|
|
|
var mdContent = '';
|
|
|
+ /*
|
|
|
for (var frontMatter of frontMatters) {
|
|
|
mdContent += frontMatter + '\n';
|
|
|
}
|
|
|
+ */
|
|
|
+ mdContent += '---\n';
|
|
|
+ mdContent += 'title: "' + $('#ctitle').val() + '"\n';
|
|
|
+ mdContent += 'date: ' + $('#cdate').val() + '\n';
|
|
|
+ mdContent += 'draft: ' + $('#cdraft').val() + '\n';
|
|
|
+ mdContent += 'type: "' + $('#ctype').val() + '"\n';
|
|
|
+ mdContent += 'url: "' + $('#curl').val() + '"\n';
|
|
|
+ mdContent += 'image: "' + $('#cimage').val() + '"\n';
|
|
|
+ mdContent += 'description: "' + $('#cdescription').val() + '"\n';
|
|
|
+ mdContent += 'weight: ' + $('#cweight').val() + '\n';
|
|
|
+ mdContent += 'tag: "' + $('#ctag').val() + '"\n';
|
|
|
+ mdContent += '---\n\n';
|
|
|
|
|
|
for (i = 0; i < outputData.blocks.length; i++) {
|
|
|
//alert(block.type);
|
|
@@ -155,8 +182,8 @@ submitButton.onclick = function () {
|
|
|
mdContent += '\n---\n';
|
|
|
}
|
|
|
else if (block.type == "image") {
|
|
|
- console.log(block.data.file.url);
|
|
|
- console.log(JSON.parse(document.getElementById('url').textContent).url);
|
|
|
+ //console.log(block.data.file.url);
|
|
|
+ //console.log(JSON.parse(document.getElementById('url').textContent).url);
|
|
|
iurl = block.data.file.url.split('/');
|
|
|
mdContent += '\n<amp-img\n alt="' + block.data.caption
|
|
|
+ '"\n src="' + iurl[iurl.length - 2] + '/' + iurl[iurl.length - 1]
|
|
@@ -167,6 +194,14 @@ submitButton.onclick = function () {
|
|
|
else if (block.type == "delimiter") {
|
|
|
mdContent += '\n{{% chuz-div class="mt-5" %}}\n';
|
|
|
}
|
|
|
+ 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';
|
|
|
+ }
|
|
|
}
|
|
|
//alert(mdContent);
|
|
|
|
|
@@ -180,10 +215,10 @@ submitButton.onclick = function () {
|
|
|
console.log('Saving failed: ', error)
|
|
|
});
|
|
|
|
|
|
- var mdContent = '';
|
|
|
+/* var mdContent = '';
|
|
|
for (var frontMatter of frontMatters) {
|
|
|
mdContent += frontMatter + '\n';
|
|
|
- }
|
|
|
+ } */
|
|
|
|
|
|
//alert(bb);
|
|
|
/* for(var eBlock in outputData.blocks)
|
|
@@ -224,10 +259,6 @@ for (var idx = 0; idx < blockArray.length; idx++) {
|
|
|
url: (JSON.parse(document.getElementById('url').textContent)).url
|
|
|
}; */
|
|
|
|
|
|
- if (aa != postData['content']) {
|
|
|
- //alert(postData['content']);
|
|
|
- alert(mdContent);
|
|
|
- }
|
|
|
//axios.post(contentApiUrl, json = postData);
|
|
|
|
|
|
}
|