diff options
author | Alexandre Pretto Nunes <anunes@thoughtworks.com> | 2014-08-12 19:11:41 -0300 |
---|---|---|
committer | Alexandre Pretto Nunes <anunes@thoughtworks.com> | 2014-08-12 19:11:51 -0300 |
commit | b5686e01012b5fd1b544ca16efd3cb73f8620a1c (patch) | |
tree | 798ed10df762ab250df2939766410f2789d5fa50 /web-ui/app/js | |
parent | b73d55cd1d13ba8bfb7121a2049d18e329077818 (diff) |
Move tagging functionality to withMailTagging mixin to clear mailView some
Diffstat (limited to 'web-ui/app/js')
-rw-r--r-- | web-ui/app/js/mail_view/ui/mail_view.js | 51 | ||||
-rw-r--r-- | web-ui/app/js/mixins/with_mail_tagging.js | 54 |
2 files changed, 60 insertions, 45 deletions
diff --git a/web-ui/app/js/mail_view/ui/mail_view.js b/web-ui/app/js/mail_view/ui/mail_view.js index 149a7f13..b6500ded 100644 --- a/web-ui/app/js/mail_view/ui/mail_view.js +++ b/web-ui/app/js/mail_view/ui/mail_view.js @@ -11,14 +11,15 @@ define( 'mail_view/ui/mail_actions', 'helpers/view_helper', 'mixins/with_hide_and_show', + 'mixins/with_mail_tagging', 'page/events', 'views/i18n', 'features' ], - function (defineComponent, templates, mailActions, viewHelpers, withHideAndShow, events, i18n, features) { + function (defineComponent, templates, mailActions, viewHelpers, withHideAndShow, withMailTagging, events, i18n, features) { - return defineComponent(mailView, mailActions, withHideAndShow); + return defineComponent(mailView, mailActions, withHideAndShow, withMailTagging); function mailView() { this.defaultAttrs({ @@ -33,27 +34,6 @@ define( closeMailButton: '.close-mail-button' }); - this.attachTagCompletion = function() { - this.attr.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: pp.name}; }); } - } - }); - - this.attr.tagCompleter.initialize(); - - this.select('newTagInput').typeahead({ - hint: true, - highlight: true, - minLength: 1 - }, { - source: this.attr.tagCompleter.ttAdapter() - }); - }; - this.displayMail = function (event, data) { this.attr.mail = data.mail; @@ -84,9 +64,7 @@ define( this.trigger(document, events.search.highlightResults, {where: '.subjectArea'}); this.trigger(document, events.search.highlightResults, {where: '.msg-header .recipients'}); - if(features.isEnabled('tags')) { - this.attachTagCompletion(); - } + this.attachTagCompletion(); this.select('tags').on('click', function (event) { this.removeTag($(event.target).data('tag')); @@ -95,7 +73,6 @@ define( this.addTagLoseFocus(); this.on(this.select('newTagButton'), 'click', this.showNewTagInput); this.on(this.select('newTagInput'), 'keydown', this.handleKeyDown); - this.on(this.select('newTagInput'), 'typeahead:selected typeahead:autocompleted', this.createNewTag.bind(this)); this.on(this.select('newTagInput'), 'blur', this.addTagLoseFocus); this.on(this.select('trashButton'), 'click', this.moveToTrash); this.on(this.select('archiveButton'), 'click', this.archiveIt); @@ -155,18 +132,6 @@ define( this.trigger(document, events.dispatchers.rightPane.openNoMessageSelected); }; - this.createNewTag = function() { - if(features.isEnabled('createNewTag')) { - var tagsCopy = this.attr.mail.tags.slice(); - tagsCopy.push(this.select('newTagInput').val()); - this.attr.tagCompleter.clear(); - this.attr.tagCompleter.clearPrefetchCache(); - this.attr.tagCompleter.clearRemoteCache(); - this.trigger(document, events.mail.tags.update, { ident: this.attr.mail.ident, tags: _.uniq(tagsCopy)}); - this.trigger(document, events.dispatchers.tags.refreshTagList); - } - }; - this.handleKeyDown = function(event) { var ENTER_KEY = 13; var ESC_KEY = 27; @@ -198,7 +163,7 @@ define( this.displayMail({}, { mail: this.attr.mail }); this.select('deleteModal').foundation('reveal', 'open'); } else { - this.updateTags(filteredTags); + this.updateTags(this.attr.mail, filteredTags); } }; @@ -208,7 +173,7 @@ define( }; this.archiveIt = function() { - this.updateTags([]); + this.updateTags(this.attr.mail, []); this.closeModal(); this.trigger(document, events.ui.userAlerts.displayMessage, { message: i18n.get('Your message was archive it!') }); this.openNoMessageSelectedPane(); @@ -218,10 +183,6 @@ define( $('#delete-modal').foundation('reveal', 'close'); }; - this.updateTags = function(tags) { - this.trigger(document, events.mail.tags.update, {ident: this.attr.mail.ident, tags: tags}); - }; - this.tagsUpdated = function(ev, data) { data = data || {}; this.attr.mail.tags = data.tags; diff --git a/web-ui/app/js/mixins/with_mail_tagging.js b/web-ui/app/js/mixins/with_mail_tagging.js new file mode 100644 index 00000000..00ee3ba3 --- /dev/null +++ b/web-ui/app/js/mixins/with_mail_tagging.js @@ -0,0 +1,54 @@ +/*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: 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; + } +); |