summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_list/ui/mail_items/mail_item.js
blob: c06289848f49dd468e40aa44f3029f073af96e41 (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
'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.select(); }
      else { this.unselect(); }
    };

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

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

    this.unselect = 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.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.unselect);
      this.on(document, events.ui.mails.uncheckAll, this.uncheckCheckbox);
      this.on(document, events.ui.mails.checkAll, this.checkCheckbox);
    };
  }

  return mailItem;
});