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
117
118
119
|
/*
* 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',
'views/templates',
'mail_view/ui/reply_box',
'mail_view/ui/forward_box',
'mixins/with_hide_and_show',
'mixins/with_feature_toggle',
'page/events'
],
function (defineComponent, templates, ReplyBox, ForwardBox, withHideAndShow, withFeatureToggle, events) {
'use strict';
return defineComponent(replySection, withHideAndShow, withFeatureToggle('replySection'));
function replySection() {
this.defaultAttrs({
replyButton: '#reply-button',
replyAllButton: '#reply-all-button',
forwardButton: '#forward-button',
replyBox: '#reply-box',
replyType: 'reply'
});
this.showReply = function() {
this.attr.replyType = 'reply';
this.fetchEmailToReplyTo();
};
this.showReplyAll = function() {
this.attr.replyType = 'replyall';
this.fetchEmailToReplyTo();
};
this.showForward = function() {
this.attr.replyType = 'forward';
this.fetchEmailToReplyTo();
};
this.render = function () {
this.$node.html(templates.compose.replySection);
this.on(this.select('replyButton'), 'click', this.showReply);
this.on(this.select('replyAllButton'), 'click', this.showReplyAll);
this.on(this.select('forwardButton'), 'click', this.showForward);
};
this.checkForDraftReply = function() {
this.render();
this.select('replyButton').hide();
this.select('replyAllButton').hide();
this.select('forwardButton').hide();
this.trigger(document, events.mail.draftReply.want, {ident: this.attr.ident});
};
this.fetchEmailToReplyTo = function (ev) {
this.trigger(document, events.mail.want, { mail: this.attr.ident, caller: this });
};
this.showDraftReply = function(ev, data) {
this.hideButtons();
ReplyBox.attachTo(this.select('replyBox'), { mail: data.mail, draftReply: true });
};
this.showReplyComposeBox = function (ev, data) {
this.hideButtons();
if(this.attr.replyType === 'forward') {
ForwardBox.attachTo(this.select('replyBox'), { mail: data.mail });
} else {
ReplyBox.attachTo(this.select('replyBox'), { mail: data.mail, replyType: this.attr.replyType });
}
};
this.hideButtons = function() {
this.select('replyButton').hide();
this.select('replyAllButton').hide();
this.select('forwardButton').hide();
};
this.showButtons = function () {
this.select('replyBox').empty();
this.select('replyButton').show();
this.select('replyAllButton').show();
this.select('forwardButton').show();
};
this.after('initialize', function () {
this.on(document, events.ui.replyBox.showReply, this.showReply);
this.on(document, events.ui.replyBox.showReplyAll, this.showReplyAll);
this.on(document, events.ui.composeBox.trashReply, this.showButtons);
this.on(this, events.mail.here, this.showReplyComposeBox);
this.on(document, events.dispatchers.rightPane.clear, this.teardown);
this.on(document, events.mail.draftReply.notFound, this.showButtons);
this.on(document, events.mail.draftReply.here, this.showDraftReply);
this.checkForDraftReply();
});
}
}
);
|