|
@@ -1,7 +1,7 @@
|
|
|
contentApiUrl = `${PORTAL_SERVER}contents?url=`;
|
|
|
frontMatters = [];
|
|
|
contentMatters = [];
|
|
|
-tagOptionIds = ["chousetype", "csize", "cbudget", "cbednum"];
|
|
|
+tagOptionIds = ["chousetype", "csize", "cbudgetr", "cbednum"];
|
|
|
testImg = [];
|
|
|
|
|
|
var SwfType = {};
|
|
@@ -57,7 +57,7 @@ function getHeader(url) {
|
|
|
if ($("#ctype").val() == "collection") {
|
|
|
$("#scat").hide();
|
|
|
} else if (
|
|
|
- $("#ctype").val() == "maincategories" ||
|
|
|
+ $("#ctype").val() == "blog" ||
|
|
|
$("#ctype").val() == "blog"
|
|
|
) {
|
|
|
$("#sdesc").hide();
|
|
@@ -122,14 +122,57 @@ function writeMd() {
|
|
|
mdContent = GetMdHeader(frontMatters);
|
|
|
mdContent += contentMatters.join("\n");
|
|
|
var formData = new FormData();
|
|
|
+
|
|
|
var imagefile = document.querySelector("#cfile");
|
|
|
+
|
|
|
if ($("#ctype").val() == "collection") {
|
|
|
+ var offset1=0; //in case we dont have complete images, we have to offset
|
|
|
+ var offset2=0;
|
|
|
+ var offset3=0;
|
|
|
var imagefil2 = document.querySelector("#cnewcoverimg");
|
|
|
var imagefil3 = document.querySelector("#cnewcomment");
|
|
|
+ var imagefil4 = document.querySelector("#cnewownerimg");
|
|
|
+ var imgcount = 1;
|
|
|
+
|
|
|
+ console.log($("#cfile").val());
|
|
|
+ if($("#cfile").val() == "" || $("#cfile").val() == undefined)
|
|
|
+ {
|
|
|
+ offset1=1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ formData.append("image" + imgcount.toString(), imagefile.files[0]);
|
|
|
+ imgcount++;
|
|
|
+ }
|
|
|
|
|
|
- formData.append("image1", imagefile.files[0]);
|
|
|
- formData.append("image2", imagefil2.files[0]);
|
|
|
- formData.append("image3", imagefil3.files[0]);
|
|
|
+ console.log($("#cnewcoverimg").val());
|
|
|
+ if ($("#cnewcoverimg").val() == "" || $("#cnewcoverimg").val() == undefined)
|
|
|
+ {
|
|
|
+ offset2=1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ formData.append("image" + imgcount.toString(), imagefil2.files[0]);
|
|
|
+ imgcount++;
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log($("#cnewcomment").val());
|
|
|
+ if ($("#cnewcomment").val() == "" || $("#cnewcomment").val() == undefined)
|
|
|
+ {
|
|
|
+ offset3=1;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ formData.append("image" + imgcount.toString(), imagefil3.files[0]);
|
|
|
+ imgcount++;
|
|
|
+ }
|
|
|
+
|
|
|
+ console.log($("#cnewownerimg").val());
|
|
|
+ formData.append("image" + imgcount.toString(), imagefil4.files[0]);
|
|
|
+
|
|
|
+ console.log($("#cfile").val(), $("#cnewcoverimg").val(), $("#cnewcomment").val(), $("#cnewownerimg").val())
|
|
|
+ console.log(offset1, offset2, offset3)
|
|
|
+ console.log(formData)
|
|
|
|
|
|
axios
|
|
|
.post("/backstage/multiupload/title", formData, {
|
|
@@ -140,19 +183,56 @@ function writeMd() {
|
|
|
.then(({ data }) => {
|
|
|
console.log("data", data);
|
|
|
if (data.success == "1") {
|
|
|
+ console.log(data.fileurl);
|
|
|
var imglinks = data.fileurl.split(";;;");
|
|
|
+ if($("#cfile").val() == "" || $("#cfile").val() == undefined)
|
|
|
+ {
|
|
|
+ //do nothing
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ alert("Replacing header image");
|
|
|
+ mdContent = mdContent.replace(
|
|
|
+ $("#cfile").val(),
|
|
|
+ "/img/title/" + imglinks[0]
|
|
|
+ );
|
|
|
+ }
|
|
|
+ if($("#cnewcoverimg").val() == "" || $("#cnewcoverimg").val() == undefined)
|
|
|
+ {
|
|
|
+ //do nothing
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ alert("Replacing cover image");
|
|
|
+ mdContent = mdContent.replace(
|
|
|
+ $("#cnewcoverimg").val(),
|
|
|
+ "/img/title/" + imglinks[1-offset1]
|
|
|
+ );
|
|
|
+ }
|
|
|
+ if($("#cnewcomment").val() == "" || $("#cnewcomment").val() == undefined)
|
|
|
+ {
|
|
|
+ //do nothing
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ alert("Replacing comment image");
|
|
|
+ mdContent = mdContent.replace(
|
|
|
+ $("#cnewcomment").val(),
|
|
|
+ "/img/title/" + imglinks[2-offset1-offset2]
|
|
|
+ );
|
|
|
+ }
|
|
|
+ if($("#cnewownerimg").val() == "" || $("#cnewownerimg").val() == undefined)
|
|
|
+ {
|
|
|
+ //do nothing
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ alert("Replacing owner image");
|
|
|
mdContent = mdContent.replace(
|
|
|
- $("#cfile").val(),
|
|
|
- "/img/title/" + imglinks[0]
|
|
|
- );
|
|
|
- mdContent = mdContent.replace(
|
|
|
- $("#cnewcoverimg").val(),
|
|
|
- "/img/title/" + imglinks[1]
|
|
|
- );
|
|
|
- mdContent = mdContent.replace(
|
|
|
- $("#cnewcomment").val(),
|
|
|
- "/img/title/" + imglinks[2]
|
|
|
+ $("#cnewownerimg").val(),
|
|
|
+ "/img/title/" + imglinks[3-offset1-offset2-offset3]
|
|
|
);
|
|
|
+ }
|
|
|
} else {
|
|
|
console.log("skipped");
|
|
|
}
|
|
@@ -336,7 +416,16 @@ function parseMd(content) {
|
|
|
);
|
|
|
}
|
|
|
|
|
|
- if (line.includes("size: ")) {
|
|
|
+ if (line.includes("owner_img: ")) {
|
|
|
+ $("#cownerimg").val(
|
|
|
+ line.replace("owner_img: ", "").replaceAll('"', "")
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+ if (line.includes("house_size: ")) {
|
|
|
+ $("#chousesize").val(line.replace("house_size: ", "").replaceAll('"', ""));
|
|
|
+ }
|
|
|
+ else if (line.includes("size: ")) {
|
|
|
$("#csize").val(line.replace("size: ", "").replaceAll('"', ""));
|
|
|
}
|
|
|
|
|
@@ -344,6 +433,10 @@ function parseMd(content) {
|
|
|
$("#cbednum").val(line.replace("bed_num: ", "").replaceAll('"', ""));
|
|
|
}
|
|
|
|
|
|
+ if (line.includes("room_count: ")) {
|
|
|
+ $("#croomcount").val(line.replace("room_count: ", "").replaceAll('"', ""));
|
|
|
+ }
|
|
|
+
|
|
|
if (line.includes("house_cat: ")) {
|
|
|
$("#chousetype").val(
|
|
|
line.replace("house_cat: ", "").replaceAll('"', "")
|
|
@@ -362,6 +455,10 @@ function parseMd(content) {
|
|
|
$("#cloc").val(line.replace("loc: ", "").replaceAll('"', ""));
|
|
|
}
|
|
|
|
|
|
+ if (line.includes("budget_range: ")) {
|
|
|
+ $("#cbudgetr").val(line.replace("budget_range: ", "").replaceAll('"', ""));
|
|
|
+ }
|
|
|
+
|
|
|
if (line.includes("budget: ")) {
|
|
|
$("#cbudget").val(line.replace("budget: ", "").replaceAll('"', ""));
|
|
|
}
|
|
@@ -543,12 +640,23 @@ function GetMdHeader(result = []) {
|
|
|
// rContent += 'collection_slider: ['+collection_slider_img+']\n';
|
|
|
rContent += 'banner_img_text: "' + $("#ccoverimgtxt").val() + '"\n';
|
|
|
rContent += 'homeowner: "' + $("#chomeowner").val() + '"\n';
|
|
|
+ if (
|
|
|
+ $("#cnewownerimg").val() != "" &&
|
|
|
+ $("#cnewownerimg").val() != undefined
|
|
|
+ ) {
|
|
|
+ rContent += 'owner_img: "' + $("#cnewownerimg").val() + '"\n';
|
|
|
+ } else {
|
|
|
+ rContent += 'owner_img: "' + $("#cownerimg").val() + '"\n';
|
|
|
+ }
|
|
|
rContent += 'size: "' + $("#csize").val() + '"\n';
|
|
|
+ rContent += 'house_size: "' + $("#chousesize").val() + '"\n';
|
|
|
rContent += 'bed_num: "' + $("#cbednum").val() + '"\n';
|
|
|
+ rContent += 'room_count: "' + $("#croomcount").val() + '"\n';
|
|
|
rContent += 'house_cat: "' + $("#chousetype").val() + '"\n';
|
|
|
rContent += 'designer: "' + $("#cdesigner").val() + '"\n';
|
|
|
rContent += 'space: "' + $("#cspace").val() + '"\n';
|
|
|
rContent += 'loc: "' + $("#cloc").val() + '"\n';
|
|
|
+ rContent += 'budget_range: "' + $("#cbudgetr").val() + '"\n';
|
|
|
rContent += 'budget: "' + $("#cbudget").val() + '"\n';
|
|
|
rContent += 'construction: "' + $("#cconstruction").val() + '"\n';
|
|
|
rContent +=
|