var tagArray = []; const data=[ 'th', 'efi', 'wichtig', ]; const CreateMsgRouter = { template: `

Neue Nachricht erstellen

ABBRECHEN SENDEN

Neue Nachricht erstellen

ABBRECHEN SENDEN
`, data: function () { return { auth: auth, isDisabled: false, selected: [], taglist: data, }; }, methods: { saveTagsToArray: function() { tagArray = this.selected; console.info(tagArray); }, createMsg: function () { var _subject = $("#subject").val(); var _message = $("#message").val(); var _tag = tagArray; var _user = auth.name ? auth.name : $("#user").val(); //console.log("Message Created: " + _tag + " " + _message + " " + _user); $.ajax({ url: "api/msg", data: { subject: _subject, message: _message, user: _user, tag: _tag }, method: "POST" }).done(have_result).fail(have_error); function have_result(res) { //console.log(res); router.push('/home') } function have_error(err) { console.log("error: " + err.responseText); console.log(err); } }, getFilteredTags(text) { this.taglist = data.filter((option) => { return option .toString() .toLowerCase() .indexOf(text.toLowerCase()) >= 0 }) }, list_tags: function () { $.ajax({url: "api/tag/ids",method: "GET"}) .done(jd => { // NICHT SO wg. Vue: _messagelist = jd; _taglist.splice(0, _taglist.length); _taglist.push.apply(_taglist, jd); console.log("tag: jd: " + jd); for (var e in jd) { if (!_tags[jd[e]]) { get_insert_tag(jd[e]); } } }).fail(function (e, f, g) { console.log("err: " + e + f + g); }); } }, mounted: function () { var userField = $('#user'); if (auth != null && auth.mail != '') { // userField.prop('placeholder',auth.name); var authorName = auth.name.split(' '); authorName = authorName[1] + ', ' + authorName[0]; userField.val(authorName); userField.prop('disabled',true); } else { userField.prop('placeholder','User'); userField.prop('disabled',false); } this.list_tags(); if ($(this).bootstrapMaterialDesign) $(this).bootstrapMaterialDesign(); }, }; function get_insert_tag(id){ $.ajax({ url: "api/tag/id/"+id, method: "GET" }).done(function (tag) { data.push("#" + tag.name); console.log("Array:"+this.data); }).fail(function (e, f, g) { console.log("cannot load " + id + ".json: " + e + f + g); }) }