summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_view/ui/reply_section.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/app/js/mail_view/ui/reply_section.js')
-rw-r--r--web-ui/app/js/mail_view/ui/reply_section.js129
1 files changed, 0 insertions, 129 deletions
diff --git a/web-ui/app/js/mail_view/ui/reply_section.js b/web-ui/app/js/mail_view/ui/reply_section.js
deleted file mode 100644
index cbe64205..00000000
--- a/web-ui/app/js/mail_view/ui/reply_section.js
+++ /dev/null
@@ -1,129 +0,0 @@
-/*
- * 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',
- replyContainer: '.reply-container'
- });
-
- 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.hideContainer();
-
- 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.showContainer();
- this.hideButtons();
- ReplyBox.attachTo(this.select('replyBox'), { mail: data.mail, draftReply: true });
- };
-
- this.showReplyComposeBox = function (ev, data) {
- this.showContainer();
- 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.hideContainer = function() {
- this.select('replyContainer').hide();
- };
-
- this.showContainer = function() {
- this.select('replyContainer').show();
- };
-
- this.hideButtons = function() {
- this.select('replyButton').hide();
- this.select('replyAllButton').hide();
- this.select('forwardButton').hide();
- };
-
- this.showButtons = function () {
- this.showContainer();
- 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.ui.replyBox.showReplyContainer, this.showContainer);
- this.on(document, events.mail.draftReply.here, this.showDraftReply);
-
- this.checkForDraftReply();
- });
- }
- }
-);