summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_list/ui/mail_items/mail_item.js
blob: 51ace714a552dbff635938c5e2aa9daba661495c (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
/*
 * 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/>.
 */
'use strict';

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

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

    this.formattedDate = function (date) {
      return viewHelper.getFormattedDate(new Date(date));
    };

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

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

    this.triggerMailChecked = function (ev, data) {
      var eventToTrigger = ev.target.checked ? events.ui.mail.checked : events.ui.mail.unchecked;
      this.trigger(document, eventToTrigger, { mail: this.attr.mail});
    };

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

    this.checkCheckbox = function () {
      this.checkboxElement().prop('checked', true);
      this.triggerMailChecked({'target': {'checked': true}});
    };

    this.uncheckCheckbox = function () {
      this.checkboxElement().prop('checked', false);
      this.triggerMailChecked({'target': {'checked': false}});
    };

    this.initializeAttributes = function () {
      var mail = this.attr.mail;
      this.attr.ident = mail.ident;
      this.attr.header = mail.header;
      this.attr.ident = mail.ident;
      this.attr.statuses = viewHelper.formatStatusClasses(mail.status);
      this.attr.tags = mail.tags;
      this.attr.mailbox = mail.mailbox;
      this.attr.header.formattedDate = this.formattedDate(mail.header.date);
    };

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

  return mailItem;
});