Ver Fonte

211205 tags fix / initialization

yukyo0821 há 3 anos atrás
pai
commit
d7dbbbfe2d
2 ficheiros alterados com 18 adições e 12 exclusões
  1. 17 12
      backstage/static/js/yo.js
  2. 1 0
      backstage/templates/editor.html

+ 17 - 12
backstage/static/js/yo.js

@@ -44,7 +44,10 @@ function getHeader(url) {
         editTarget = url;
         mdType = url.split('/')[1];
         aa = data[0]['content'];
-        const content = _.get(data, '0.content', '');
+        for (var toi of tagOptionIds) {
+            $('#' + toi).val("");
+        }
+        //const content = _.get(data, '0.content', '');
         blocks = parseMd(aa);
         oTitle = $("#ctitle").val();
         // $("#dialog-form").dialog();
@@ -208,15 +211,17 @@ function parseMd(content) {
             }
             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 ($('#ctags').length > 0) {
+                    $('#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;
+                            });
+                        }
                     }
                 }
             }
@@ -317,8 +322,8 @@ function GetMdHeader() {
 
         tags = [];
         for (var toi of tagOptionIds) {
-            if($('#'+toi).val() != "")
-                tags.push($('#'+toi).val());
+            if ($('#' + toi).val() != "")
+                tags.push($('#' + toi).val());
         }
         rContent += 'tags: "' + tags.join(',') + '"\n';
         //rContent += 'tags: "' + ($('#ctags').val() == 'undefined' ? "" : $('#ctags').val()) + '"\n';

+ 1 - 0
backstage/templates/editor.html

@@ -39,6 +39,7 @@
         <input id="cimage" type="text" /><br />
         <input id="cweight" type="text" /><br />
         <input id="ctag" type="text" /><br />
+        <input id="ctags" type="text" /><br />
         <input id="ccategories" type="text" /><br />
         <input id="ccaturl" type="text" /><br />
         <input id="ccol1" type="text" /><br />