summaryrefslogtreecommitdiff
path: root/web-ui/public/js/mail_list/ui/mail_items/mail_item.js
blob: be664289ade769369331f2446792da5802d49905 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/*
 * 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 <http://www.gnu.org/licenses/>.
 */

define(
  [
    'helpers/view_helper',
    'views/templates',
    'page/events'
  ],
  function (viewHelper, templates, events) {

  'use strict';
  function mailItem() {
    this.updateSelected = function (ev, data) {
      if (data.ident === this.attr.mail.ident) { this.doSelect(); }
      else { this.doUnselect(); }
    };

    this.isOpeningOnANewTab = function (ev) {
      return ev.metaKey || ev.ctrlKey || ev.which === 2;
    };

    this.doSelect = function () {
      this.$node.addClass('selected');
    };

    this.doUnselect = function () {
      this.$node.removeClass('selected');
    };

    this.doMailChecked = function (ev) {
      if (ev.target.checked) {
        this.checkCheckbox();
      } else {
        this.uncheckCheckbox();
      }
    };

    this.checkboxElement = function () {
      return this.$node.find('input[type=checkbox]');
    };

    this.checkCheckbox = function () {
      this.checkboxElement().prop('checked', true);
      this.trigger(document, events.ui.mail.checked, { mail: this.attr.mail});
    };

    this.uncheckCheckbox = function () {
      this.checkboxElement().prop('checked', false);
      this.trigger(document, events.ui.mail.unchecked, { mail: this.attr.mail});
    };

    this.render = function () {
      this.attr.mail.tagsForListView = _.without(this.attr.mail.tags, this.attr.tag);
      var mailItemHtml = templates.mails[this.attr.templateType](this.attr.mail);
      this.$node.html(mailItemHtml);
      this.$node.addClass("mail-list-entry");
      this.$node.addClass(viewHelper.formatStatusClasses(this.attr.mail.status));
      if (this.attr.selected) { this.doSelect(); }
      this.on(this.$node.find('a'), 'click', this.triggerOpenMail);
    };

    this.after('initialize', function () {
      this.on(this.$node.find('input[type=checkbox]'), 'change', this.doMailChecked);
      this.on(document, events.ui.mails.cleanSelected, this.doUnselect);
      this.on(document, events.ui.tag.select, this.doUnselect);
      this.on(document, events.ui.tag.select, this.uncheckCheckbox);
      this.on(document, events.ui.mails.uncheckAll, this.uncheckCheckbox);
      this.on(document, events.ui.mails.checkAll, this.checkCheckbox);
    });
  }

  return mailItem;
});