|
@@ -1,6 +1,7 @@
|
|
contentApiUrl = `${PORTAL_SERVER}contents?url=`;
|
|
contentApiUrl = `${PORTAL_SERVER}contents?url=`;
|
|
frontMatters = [];
|
|
frontMatters = [];
|
|
contentMatters = [];
|
|
contentMatters = [];
|
|
|
|
+tagOptionIds = ['thousetype', 'tpinsize', 'tbudget', 'troomscount'];
|
|
|
|
|
|
var SwfType = {};
|
|
var SwfType = {};
|
|
if (location.pathname.indexOf('system_furniture') >= 0) {
|
|
if (location.pathname.indexOf('system_furniture') >= 0) {
|
|
@@ -205,6 +206,20 @@ function parseMd(content) {
|
|
//alert(line);
|
|
//alert(line);
|
|
$('#ctag').val(line.replace('tag: ', '').replaceAll('\"', ''));
|
|
$('#ctag').val(line.replace('tag: ', '').replaceAll('\"', ''));
|
|
}
|
|
}
|
|
|
|
+ if (line.includes('tags: ')) {
|
|
|
|
+ //alert(line);
|
|
|
|
+ $('#ctags').val(line.replace('tags: ', '').replaceAll('\"', ''));
|
|
|
|
+ tags = $('#ctags').val().split(',');
|
|
|
|
+ for (var tag of tags) {
|
|
|
|
+ //console.log(tag);
|
|
|
|
+ for (var toi of tagOptionIds) {
|
|
|
|
+ $('#'+toi+' option').each(function(){
|
|
|
|
+ if(this.value == tag)
|
|
|
|
+ this.selected = true;
|
|
|
|
+ });
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
|
if (line.includes('categories: ')) {
|
|
if (line.includes('categories: ')) {
|
|
//alert(line);
|
|
//alert(line);
|
|
$('#ccategories').val(line.replace('categories: ', '').replace('categories: ', '').replace(/\[|]/g, '').replace(/\"/g, ''));
|
|
$('#ccategories').val(line.replace('categories: ', '').replace('categories: ', '').replace(/\[|]/g, '').replace(/\"/g, ''));
|
|
@@ -299,7 +314,14 @@ function GetMdHeader() {
|
|
if ($('#ctype').val() == "collection") {
|
|
if ($('#ctype').val() == "collection") {
|
|
rContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g, '<br>') + '"\n';
|
|
rContent += 'description: "' + $('#cdescription').val().replace(/\r?\n/g, '<br>') + '"\n';
|
|
rContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
|
|
rContent += 'weight: ' + ($('#cweight').val() == 'undefined' ? "" : $('#cweight').val()) + '\n';
|
|
- rContent += 'tag: "' + ($('#ctag').val() == 'undefined' ? "" : $('#ctag').val()) + '"\n';
|
|
|
|
|
|
+
|
|
|
|
+ tags = [];
|
|
|
|
+ for (var toi of tagOptionIds) {
|
|
|
|
+ if($('#'+toi).val() != "")
|
|
|
|
+ tags.push($('#'+toi).val());
|
|
|
|
+ }
|
|
|
|
+ rContent += 'tags: "' + tags.join(',') + '"\n';
|
|
|
|
+ //rContent += 'tags: "' + ($('#ctags').val() == 'undefined' ? "" : $('#ctags').val()) + '"\n';
|
|
}
|
|
}
|
|
else if ($('#ctype').val() == "blog") {
|
|
else if ($('#ctype').val() == "blog") {
|
|
rContent += 'categories: ["' + $('#ccategories').val() + '"]\n';
|
|
rContent += 'categories: ["' + $('#ccategories').val() + '"]\n';
|