|
@@ -119,6 +119,7 @@
|
|
$("#myModal").modal();
|
|
$("#myModal").modal();
|
|
editTarget = url;
|
|
editTarget = url;
|
|
//console.log(frontMatters);
|
|
//console.log(frontMatters);
|
|
|
|
+ //alert($('#cimage').val());
|
|
});
|
|
});
|
|
}
|
|
}
|
|
function toggleDraft(obj, url) {
|
|
function toggleDraft(obj, url) {
|
|
@@ -136,6 +137,23 @@
|
|
});
|
|
});
|
|
}
|
|
}
|
|
function updateHeader() {
|
|
function updateHeader() {
|
|
|
|
+ if (oTitle != $('#ctitle').val() && $('#ctitle').val() != "" && oTitle != "") {
|
|
|
|
+ axios.get('/backstage/modTitle/' + oTitle + '/' + $('#ctitle').val()).then(({ data }) => {
|
|
|
|
+ if (data.success == "0") {
|
|
|
|
+ alert('已有重複的標題,請重新設定');
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ writeMd();
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ else {
|
|
|
|
+ writeMd();
|
|
|
|
+ }
|
|
|
|
+ location.reload();
|
|
|
|
+ }
|
|
|
|
+ function writeMd() {
|
|
mdContent = "";
|
|
mdContent = "";
|
|
mdContent += '---\n';
|
|
mdContent += '---\n';
|
|
mdContent += 'title: "' + $('#ctitle').val() + '"\n';
|
|
mdContent += 'title: "' + $('#ctitle').val() + '"\n';
|
|
@@ -160,25 +178,22 @@
|
|
'Content-Type': 'multipart/form-data'
|
|
'Content-Type': 'multipart/form-data'
|
|
}
|
|
}
|
|
}).then(({ data }) => {
|
|
}).then(({ data }) => {
|
|
|
|
+ $('#cfile').val("");
|
|
if (data.success == "1") {
|
|
if (data.success == "1") {
|
|
- mdContent = mdContent.replace($('#cimage').val(), '/img/collection/' + data.file.url.substring(data.file.url.lastIndexOf('/')+1));
|
|
|
|
|
|
+ mdContent = mdContent.replace($('#cimage').val(), '/img/collection/' + data.file.url.substring(data.file.url.lastIndexOf('/') + 1));
|
|
//alert(data.file.url.substring(data.file.url.lastIndexOf('/')+1));
|
|
//alert(data.file.url.substring(data.file.url.lastIndexOf('/')+1));
|
|
}
|
|
}
|
|
- if (oTitle != $('#ctitle').val() && $('#ctitle').val() != "" && oTitle != "") {
|
|
|
|
- axios.get('/backstage/modTitle/' + oTitle + '/' + $('#ctitle').val()).then(({data}) => {
|
|
|
|
- console.log(data)
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
|
|
+
|
|
postData = {
|
|
postData = {
|
|
content: mdContent,
|
|
content: mdContent,
|
|
url: editTarget
|
|
url: editTarget
|
|
};
|
|
};
|
|
//console.log(mdContent);
|
|
//console.log(mdContent);
|
|
- axios.post(contentApiUrl + editTarget, json = postData);
|
|
|
|
|
|
+ axios.post(contentApiUrl + editTarget, json = postData).then(({ data }) => {
|
|
|
|
+ });
|
|
});
|
|
});
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
$(function () {
|
|
$(function () {
|
|
|
|
|
|
$("#dialog-form").hide();
|
|
$("#dialog-form").hide();
|