/* * Copyright (c) 2014 ThoughtWorks, Inc. * * Pixelated is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pixelated is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Pixelated. If not, see . */ /*global Bloodhound */ define( ['page/events', 'features'], function (events, features) { function withMailTagging () { this.updateTags = function(mail, tags) { this.trigger(document, events.mail.tags.update, {ident: mail.ident, tags: tags}); }; this.attachTagCompletion = function() { if(!features.isEnabled('tags')) { return; } this.tagCompleter = new Bloodhound({ datumTokenizer: function(d) { return [d.value]; }, queryTokenizer: function(q) { return [q.trim()]; }, remote: { url: '/tags?q=%QUERY', filter: function(pr) { return _.map(pr, function(pp) { return {value: Handlebars.Utils.escapeExpression(pp.name)}; }); } } }); this.tagCompleter.initialize(); this.select('newTagInput').typeahead({ hint: true, highlight: true, minLength: 1 }, { source: this.tagCompleter.ttAdapter() }); }; this.createNewTag = function() { if(features.isEnabled('createNewTag')) { var tagsCopy = this.attr.mail.tags.slice(); tagsCopy.push(this.select('newTagInput').val()); this.tagCompleter.clear(); this.tagCompleter.clearPrefetchCache(); this.tagCompleter.clearRemoteCache(); this.updateTags(this.attr.mail, _.uniq(tagsCopy)); this.trigger(document, events.dispatchers.tags.refreshTagList); } }; this.after('displayMail', function () { this.on(this.select('newTagInput'), 'typeahead:selected typeahead:autocompleted', this.createNewTag); }); }; return withMailTagging; } );