summaryrefslogtreecommitdiff
path: root/web-ui/public/js/mail_view/ui/reply_box.js
blob: a174d185c5ce51c75681a1bce948fd13f43bb05b (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/*
 * 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(
  [
    'flight/lib/component',
    'helpers/view_helper',
    'mixins/with_hide_and_show',
    'mixins/with_compose_inline',
    'page/events',
    'views/i18n'
  ],

  function (defineComponent, viewHelper, withHideAndShow, withComposeInline, events, i18n) {
    'use strict';

    return defineComponent(replyBox, withHideAndShow, withComposeInline);

    function replyBox() {
      this.defaultAttrs({
        replyType: 'reply',
        draftReply: false,
        mail: null,
        mailBeingRepliedIdent: undefined
      });

      this.getRecipients = function() {
        if (this.attr.replyType === 'replyall') {
          return this.attr.mail.replyToAllAddress();
        } else {
          return this.attr.mail.replyToAddress();
        }
      };

      var re = function(v) { return i18n.t('re') + ': ' + v; };

      this.setupReplyBox = function() {
        var recipients, body;

        if (this.attr.draftReply){
          this.attr.ident = this.attr.mail.ident;
          this.attr.mailBeingRepliedIdent = this.attr.mail.draft_reply_for;

          recipients = this.attr.mail.recipients();
          body = this.attr.mail.body;
          this.attr.subject = this.attr.mail.header.subject;
        } else {
          this.attr.mailBeingRepliedIdent = this.attr.mail.ident;
          recipients = this.getRecipients();
          body = viewHelper.quoteMail(this.attr.mail);
          this.attr.subject = re(this.attr.mail.header.subject);
        }

        this.attr.recipientValues.to = recipients.to;
        this.attr.recipientValues.cc = recipients.cc;

        this.renderInlineCompose('reply-box', {
          recipients: recipients,
          subject: this.attr.subject,
          body: body
        });

        this.on(this.select('recipientsDisplay'), 'click keydown', this.showRecipientFields);
        this.on(this.select('subjectDisplay'), 'click', this.showSubjectInput);
      };

      this.showRecipientFields = function(ev, data) {
        if(!ev.keyCode || ev.keyCode === 13){
          this.select('recipientsDisplay').hide();
          this.select('recipientsFields').show();
          $('#recipients-to-area .tt-input').focus();
        }
      };

      this.showSubjectInput = function() {
        this.select('subjectDisplay').hide();
        this.select('subjectInput').show();
        this.select('subjectInput').focus();
      };

      this.buildMail = function(tag) {
        var builder = this.builtMail(tag).subject(this.select('subjectInput').val());
        if(!_.isUndefined(this.attr.mail.header.message_id)) {
          builder.header('in_reply_to', this.attr.mail.header.message_id);
        }

        if(!_.isUndefined(this.attr.mail.header.list_id)) {
          builder.header('list_id', this.attr.mail.header.list_id);
        }

        var mail = builder.build();
        mail.setDraftReplyFor(this.attr.mailBeingRepliedIdent);

        return mail;
      };

      this.after('initialize', function () {
        this.setupReplyBox();
      });
    }
  }
);