|
@@ -1,7 +1,9 @@
|
|
|
-const contentDiv = document.getElementById('editor_block');
|
|
|
-const titleButton = document.getElementById('title_button');
|
|
|
-const submitButton = document.getElementById('submit_button');
|
|
|
-contentApiUrl = `${PORTAL_SERVER}contents?url=${(JSON.parse(document.getElementById('url').textContent)).url}`
|
|
|
+const contentDiv = document.getElementById("editor_block");
|
|
|
+const titleButton = document.getElementById("title_button");
|
|
|
+const submitButton = document.getElementById("submit_button");
|
|
|
+contentApiUrl = `${PORTAL_SERVER}contents?url=${
|
|
|
+ JSON.parse(document.getElementById("url").textContent).url
|
|
|
+}`;
|
|
|
|
|
|
aa = "";
|
|
|
frontMatters = [];
|
|
@@ -9,12 +11,12 @@ contentMatters = [];
|
|
|
editorBlocks = [];
|
|
|
var editor;
|
|
|
axios.get(contentApiUrl).then(({ data }) => {
|
|
|
- const content = data[0]['content'];
|
|
|
- var blockArray = [{ title: '', data: [] }];
|
|
|
+ const content = data[0]["content"];
|
|
|
+ var blockArray = [{ title: "", data: [] }];
|
|
|
var blockCount = 0;
|
|
|
blocks = parseMd(content);
|
|
|
aa = new MDParser(content);
|
|
|
- editor_block = document.getElementById('editor_block');
|
|
|
+ editor_block = document.getElementById("editor_block");
|
|
|
//alert(blocks[0]['text']);
|
|
|
|
|
|
//ul = document.createElement('ul');
|
|
@@ -23,76 +25,128 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
//li = document.createElement('li');
|
|
|
//odiv = document.createElement('div');
|
|
|
//odiv.style.border = 'inset 1px gray';
|
|
|
- if (blocks[i]['type'] == "para") {
|
|
|
- editorBlocks.push({ type: "paragraph", data: { text: blocks[i]['text'] } });
|
|
|
+ if (blocks[i]["type"] == "para") {
|
|
|
+ editorBlocks.push({
|
|
|
+ type: "paragraph",
|
|
|
+ data: { text: blocks[i]["text"] },
|
|
|
+ });
|
|
|
//tmp = document.createElement('textarea');
|
|
|
//tmp.style.border = 'outset 5px pink';
|
|
|
//tmp.style.width = '100%';
|
|
|
//tmp.value = blocks[i]['text'];
|
|
|
//odiv.appendChild(tmp);
|
|
|
- }
|
|
|
- else if (blocks[i]['type'] == "br") {
|
|
|
+ } else if (blocks[i]["type"] == "br") {
|
|
|
editorBlocks.push({ type: "paragraph", data: { text: "" } });
|
|
|
//tmp = document.createElement('br');
|
|
|
//odiv.appendChild(tmp);
|
|
|
- }
|
|
|
- else if (blocks[i]['type'] == "img") {
|
|
|
- ampimg = blocks[i]['text'];
|
|
|
+ } else if (blocks[i]["type"] == "img") {
|
|
|
+ ampimg = blocks[i]["text"];
|
|
|
//alert(ampimg.indexOf("width=\"",84));
|
|
|
//alert(ampimg.substr(ampimg.indexOf("alt=\"") + 5, ampimg.indexOf("\"", ampimg.indexOf("alt=\"") + 5) - ampimg.indexOf("alt=\"") - 5));
|
|
|
- tmpsrc = BHOUSE_SERVER + JSON.parse(document.getElementById('url').textContent).url + '/' + ampimg.substr(ampimg.indexOf("src=\"") + 5, ampimg.indexOf("\"", ampimg.indexOf("src=\"") + 5) - ampimg.indexOf("src=\"") - 5);
|
|
|
+ tmpsrc =
|
|
|
+ BHOUSE_SERVER +
|
|
|
+ JSON.parse(document.getElementById("url").textContent).url +
|
|
|
+ "/" +
|
|
|
+ ampimg.substr(
|
|
|
+ ampimg.indexOf('src="') + 5,
|
|
|
+ ampimg.indexOf('"', ampimg.indexOf('src="') + 5) -
|
|
|
+ ampimg.indexOf('src="') -
|
|
|
+ 5
|
|
|
+ );
|
|
|
//tmpsrc = BHOUSE_SERVER + JSON.parse(document.getElementById('url').textContent).url + '/' + ampimg.substr(ampimg.indexOf("src=\"") + 5, ampimg.lastIndexOf(".") - ampimg.indexOf("src=\"") -1);
|
|
|
//tmpsrc = ampimg.substr(ampimg.indexOf("src=\"") + 5, ampimg.indexOf(".webp") - ampimg.indexOf("src=\""));
|
|
|
editorBlocks.push({
|
|
|
- type: "image", data: {
|
|
|
+ type: "image",
|
|
|
+ data: {
|
|
|
file: {
|
|
|
url: tmpsrc,
|
|
|
- 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)),
|
|
|
+ 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
|
|
|
+ )
|
|
|
+ ),
|
|
|
},
|
|
|
- caption: ampimg.substr(ampimg.indexOf("alt=\"") + 5, ampimg.indexOf("\"", ampimg.indexOf("alt=\"") + 5) - ampimg.indexOf("alt=\"") - 5).toString(),
|
|
|
+ caption: ampimg
|
|
|
+ .substr(
|
|
|
+ ampimg.indexOf('alt="') + 5,
|
|
|
+ ampimg.indexOf('"', ampimg.indexOf('alt="') + 5) -
|
|
|
+ ampimg.indexOf('alt="') -
|
|
|
+ 5
|
|
|
+ )
|
|
|
+ .toString(),
|
|
|
stretched: false,
|
|
|
withBorder: true,
|
|
|
withBackground: false,
|
|
|
- }
|
|
|
+ },
|
|
|
});
|
|
|
//alert(ampimg.substr(ampimg.indexOf("height=\"") + 8, ampimg.indexOf("\"", ampimg.indexOf("height=\"") + 8) - ampimg.indexOf("height=\"") - 8));
|
|
|
//img = document.createElement('img');
|
|
|
//img.style.width = '100%';
|
|
|
//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)
|
|
|
+ } 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)),
|
|
|
- }
|
|
|
+ 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'] } });
|
|
|
+ } else if (blocks[i]["type"] == "title") {
|
|
|
+ blocks[i]["text"] = blocks[i]["text"]
|
|
|
+ .replace("### **", "")
|
|
|
+ .replace("**", "");
|
|
|
+ editorBlocks.push({ type: "header", data: { text: blocks[i]["text"] } });
|
|
|
//tmp = document.createElement('h3');
|
|
|
//tmp.innerHTML = blocks[i]['text'];
|
|
|
//odiv.appendChild(tmp);
|
|
|
- }
|
|
|
- else if (blocks[i]['type'] == "hr") {
|
|
|
+ } else if (blocks[i]["type"] == "hr") {
|
|
|
//alert('yo');
|
|
|
editorBlocks.push({ type: "paragraph", data: { text: "---" } });
|
|
|
- }
|
|
|
- else if (blocks[i]['type'] == "mt5") {
|
|
|
+ } else if (blocks[i]["type"] == "mt5") {
|
|
|
//alert('yo');
|
|
|
editorBlocks.push({ type: "delimiter", data: {} });
|
|
|
- }
|
|
|
- else if (blocks[i]['type'] == "table") {
|
|
|
+ } 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);
|
|
@@ -100,36 +154,39 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
//editor_block.appendChild(ul);
|
|
|
//$("#sortable").sortable();
|
|
|
//$("#sortable").disableSelection();
|
|
|
- $("#editor_block").css({ "display": "none" });
|
|
|
+ $("#editor_block").css({ display: "none" });
|
|
|
//alert(JSON.parse(document.getElementById('url').textContent).url);
|
|
|
- $('#editorjs')[0].innerHTML = "";
|
|
|
+ $("#editorjs")[0].innerHTML = "";
|
|
|
//alert(JSON.stringify(editorBlocks));
|
|
|
editor = new EditorJS({
|
|
|
readOnly: false,
|
|
|
- holder: 'editorjs',
|
|
|
+ holder: "editorjs",
|
|
|
|
|
|
tools: {
|
|
|
header: {
|
|
|
class: Header,
|
|
|
config: {
|
|
|
- placeholder: 'Header'
|
|
|
- }
|
|
|
+ placeholder: "Header",
|
|
|
+ },
|
|
|
},
|
|
|
|
|
|
image: {
|
|
|
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' + JSON.parse(document.getElementById('url').textContent).url.substring(JSON.parse(document.getElementById('url').textContent).url.lastIndexOf('/')), // Your backend file uploader endpoint
|
|
|
byUrl: '/backstage/getimage' + JSON.parse(document.getElementById('url').textContent).url.substring(JSON.parse(document.getElementById('url').textContent).url.lastIndexOf('/')), // 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 */
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- ,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ },
|
|
|
// warning: {
|
|
|
// class: Warning,
|
|
|
// inlineToolbar: true,
|
|
@@ -141,16 +198,14 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
table: Table,
|
|
|
delimiter: Delimiter,
|
|
|
embed: Embed,
|
|
|
- }
|
|
|
- ,
|
|
|
- data: { blocks: editorBlocks }
|
|
|
- ,
|
|
|
+ },
|
|
|
+ data: { blocks: editorBlocks },
|
|
|
onReady: function () {
|
|
|
//saveButton.click();
|
|
|
},
|
|
|
onChange: function (api, block) {
|
|
|
//console.log('something changed', block);
|
|
|
- }
|
|
|
+ },
|
|
|
});
|
|
|
|
|
|
/* for (var blockData of preBlockArray) {
|
|
@@ -162,15 +217,17 @@ axios.get(contentApiUrl).then(({ data }) => {
|
|
|
});
|
|
|
|
|
|
function editorSave() {
|
|
|
- editor.save().then((outputData) => {
|
|
|
- //console.log('Article data: ', outputData);
|
|
|
- //var mdContent = GetMdHeader();
|
|
|
- //var mdContent = frontMatters.join('\n');
|
|
|
- //console.log(mdContent);
|
|
|
- //console.log(frontMatters.join('\n'));
|
|
|
- //mdContent = mdContent.replace('draft: ' + (!$('#cdraft').is(':checked')), 'draft: ' + $('#cdraft').val())
|
|
|
- //alert(mdContent);
|
|
|
- /*
|
|
|
+ editor
|
|
|
+ .save()
|
|
|
+ .then((outputData) => {
|
|
|
+ //console.log('Article data: ', outputData);
|
|
|
+ //var mdContent = GetMdHeader();
|
|
|
+ //var mdContent = frontMatters.join('\n');
|
|
|
+ //console.log(mdContent);
|
|
|
+ //console.log(frontMatters.join('\n'));
|
|
|
+ //mdContent = mdContent.replace('draft: ' + (!$('#cdraft').is(':checked')), 'draft: ' + $('#cdraft').val())
|
|
|
+ //alert(mdContent);
|
|
|
+ /*
|
|
|
for (var frontMatter of frontMatters) {
|
|
|
mdContent += frontMatter + '\n';
|
|
|
}
|
|
@@ -189,70 +246,77 @@ function editorSave() {
|
|
|
mdContent += '---\n\n';
|
|
|
*/
|
|
|
|
|
|
- //var articleinfo = frontMatters.join('\n');
|
|
|
- var articleinfo = GetMdHeader();
|
|
|
- var mdContent = '<div class="container-fluid blog_article p-0">\n\n';
|
|
|
- //var headings = new Array();
|
|
|
+ //var articleinfo = frontMatters.join('\n');
|
|
|
+ var articleinfo = GetMdHeader();
|
|
|
+ var mdContent = '<div class="container-fluid blog_article p-0">\n\n';
|
|
|
+ //var headings = new Array();
|
|
|
|
|
|
- for (i = 0; i < outputData.blocks.length; i++) {
|
|
|
- var paragraphdata = ""
|
|
|
+ for (i = 0; i < outputData.blocks.length; i++) {
|
|
|
+ var paragraphdata = "";
|
|
|
|
|
|
- //alert(block.type);
|
|
|
- block = outputData.blocks[i];
|
|
|
- if (block.type == "header") {
|
|
|
- mdContent += '## ' + block.data.text + '\n';
|
|
|
- }
|
|
|
- else if (block.type == "paragraph") {
|
|
|
- paragraphdata += block.data.text;
|
|
|
-
|
|
|
- if (paragraphdata != "") //make sure it's not empty
|
|
|
- {
|
|
|
- mdContent += paragraphdata + '\n\n';
|
|
|
- }
|
|
|
- }
|
|
|
- else if (block.type == "hr") {
|
|
|
- //alert('hr');
|
|
|
- mdContent += '\n---\n';
|
|
|
- }
|
|
|
- else if (block.type == "image") {
|
|
|
- //console.log(block.data.file.url);
|
|
|
- //console.log(JSON.parse(document.getElementById('url').textContent).url);
|
|
|
- iurl = block.data.file.url.split('/');
|
|
|
- mdContent += '<img class="img-fluid" alt="' + block.data.caption
|
|
|
- + '"\n src="' + iurl[iurl.length - 2] + '/' + iurl[iurl.length - 1]
|
|
|
- + '"\n layout="responsive"></img>';
|
|
|
- if (block.data.caption != "")
|
|
|
- {
|
|
|
- mdContent += '<div class="img-text">' + block.data.caption + '</div>';
|
|
|
+ //alert(block.type);
|
|
|
+ block = outputData.blocks[i];
|
|
|
+ if (block.type == "header") {
|
|
|
+ mdContent += "## " + block.data.text + "\n";
|
|
|
+ } else if (block.type == "paragraph") {
|
|
|
+ paragraphdata += block.data.text;
|
|
|
+
|
|
|
+ if (paragraphdata != "") {
|
|
|
+ //make sure it's not empty
|
|
|
+ mdContent += paragraphdata + "\n\n";
|
|
|
+ }
|
|
|
+ } else if (block.type == "hr") {
|
|
|
+ //alert('hr');
|
|
|
+ mdContent += "\n---\n";
|
|
|
+ } else if (block.type == "image") {
|
|
|
+ //console.log(block.data.file.url);
|
|
|
+ //console.log(JSON.parse(document.getElementById('url').textContent).url);
|
|
|
+ iurl = block.data.file.url.split("/");
|
|
|
+ mdContent +=
|
|
|
+ '<img class="img-fluid" alt="' +
|
|
|
+ block.data.caption +
|
|
|
+ '"\n src="' +
|
|
|
+ iurl[iurl.length - 2] +
|
|
|
+ "/" +
|
|
|
+ iurl[iurl.length - 1] +
|
|
|
+ '"\n layout="responsive"></img>';
|
|
|
+ if (block.data.caption != "") {
|
|
|
+ mdContent +=
|
|
|
+ '<div class="img-text">' + block.data.caption + "</div>";
|
|
|
+ }
|
|
|
+ mdContent += "\n\n";
|
|
|
+ } else if (block.type == "delimiter") {
|
|
|
+ mdContent += "\n---\n";
|
|
|
+ } else if (block.type == "embed") {
|
|
|
+ mdContent +=
|
|
|
+ "\n<iframe src=" +
|
|
|
+ block.data.embed.replace("https://www.youtube.com/embed/", "") +
|
|
|
+ 'layout="responsive" width="' +
|
|
|
+ block.data.width +
|
|
|
+ '" height="' +
|
|
|
+ block.data.height +
|
|
|
+ '"></iframe>\n\n';
|
|
|
+ } else if (block.type == "table") {
|
|
|
+ //alert(tableArrayToHtml(block.data).length);
|
|
|
+ mdContent += "\n" + tableArrayToHtml(block.data.content) + "\n\n";
|
|
|
+ //console.log(tableArrayToHtml(block.data.content));
|
|
|
}
|
|
|
- mdContent += '\n\n';
|
|
|
- }
|
|
|
- else if (block.type == "delimiter") {
|
|
|
- mdContent += '\n---\n';
|
|
|
- }
|
|
|
- else if (block.type == "embed") {
|
|
|
- mdContent += '\n<iframe src=' + block.data.embed.replace('https://www.youtube.com/embed/', '') + 'layout="responsive" width="' + block.data.width + '" height="' + block.data.height + '"></iframe>\n\n';
|
|
|
- }
|
|
|
- else if (block.type == "table") {
|
|
|
- //alert(tableArrayToHtml(block.data).length);
|
|
|
- mdContent += '\n' + tableArrayToHtml(block.data.content) + '\n\n'
|
|
|
- //console.log(tableArrayToHtml(block.data.content));
|
|
|
}
|
|
|
- }
|
|
|
- //alert(mdContent);
|
|
|
+ //alert(mdContent);
|
|
|
|
|
|
- var mdData = articleinfo + '\n\n' + mdContent;
|
|
|
+ var mdData = articleinfo + "\n\n" + mdContent;
|
|
|
|
|
|
- postData = {
|
|
|
- content: mdData,
|
|
|
- url: (JSON.parse(document.getElementById('url').textContent)).url
|
|
|
- };
|
|
|
- axios.post(contentApiUrl, json = postData).then(({ data }) => {
|
|
|
- alert('作品資料已儲存');
|
|
|
+ postData = {
|
|
|
+ content: mdData,
|
|
|
+ url: JSON.parse(document.getElementById("url").textContent).url,
|
|
|
+ };
|
|
|
+ axios.post(contentApiUrl, (json = postData)).then(({ data }) => {
|
|
|
+ alert("作品資料已儲存");
|
|
|
+ });
|
|
|
+ })
|
|
|
+ .catch((error) => {
|
|
|
+ console.log("Saving failed: ", error);
|
|
|
});
|
|
|
- }).catch((error) => {
|
|
|
- console.log('Saving failed: ', error)
|
|
|
- });
|
|
|
|
|
|
/* var mdContent = '';
|
|
|
for (var frontMatter of frontMatters) {
|
|
@@ -299,6 +363,5 @@ for (var idx = 0; idx < blockArray.length; idx++) {
|
|
|
}; */
|
|
|
|
|
|
//axios.post(contentApiUrl, json = postData);
|
|
|
-
|
|
|
}
|
|
|
-submitButton.onclick = editorSave
|
|
|
+submitButton.onclick = editorSave;
|