summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/send_button.js
blob: 44df3ae6bda427221f84ca8804c82a88715c9cc8 (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
/*global _ */
'use strict';

define([
    'flight/lib/component',
    'flight/lib/utils',
    'page/events'
  ],
  function (defineComponent, utils, events) {

    return defineComponent(sendButton);

    function sendButton() {
      var RECIPIENTS_BOXES_COUNT = 3;

      this.enableButton = function () {
        this.$node.prop('disabled', false);
      };

      this.disableButton = function () {
        this.$node.prop('disabled', true);
      };

      this.atLeastOneFieldHasRecipients = function () {
        return _.any(_.values(this.attr.recipients), function (e) { return !_.isEmpty(e); });
      };

      this.atLeastOneInputHasMail = function () {
        return _.any(_.values(this.attr.inputHasMail), function (e) { return e === true; });
      };

      this.updateButton = function () {
        if (this.atLeastOneInputHasMail() || this.atLeastOneFieldHasRecipients()) {
          this.enableButton();
        } else {
          this.disableButton();
        }
      };

      this.inputHasNoMail = function (ev, data) {
        this.attr.inputHasMail[data.name] = false;
        this.updateButton();
      };

      this.inputHasMail = function (ev, data) {
        this.attr.inputHasMail[data.name] = true;
        this.updateButton();
      };

      this.updateRecipientsForField = function (ev, data) {
        this.attr.recipients[data.recipientsName] = data.newRecipients;
        this.attr.inputHasMail[data.recipientsName] = false;

        this.updateButton();
      };

      this.updateRecipientsAndSendMail = function () {

        this.on(document, events.ui.mail.recipientsUpdated, utils.countThen(RECIPIENTS_BOXES_COUNT, function () {
          this.trigger(document, events.ui.mail.send);
          this.off(document, events.ui.mail.recipientsUpdated);
        }.bind(this)));

        this.trigger(document, events.ui.recipients.doCompleteInput);
      };

      this.after('initialize', function () {
        this.attr.recipients = {};
        this.attr.inputHasMail = {};

        this.on(document, events.ui.recipients.inputHasMail, this.inputHasMail);
        this.on(document, events.ui.recipients.inputHasNoMail, this.inputHasNoMail);
        this.on(document, events.ui.recipients.updated, this.updateRecipientsForField);

        this.on(this.$node, 'click', this.updateRecipientsAndSendMail);

        this.on(document, events.dispatchers.rightPane.clear, this.teardown);
        this.on(document, events.ui.sendbutton.enable, this.enableButton);

        this.disableButton();
      });
    }

  }
);