summaryrefslogtreecommitdiff
path: root/web-ui/app/js/mail_list/ui/mail_items/mail_item.js
diff options
context:
space:
mode:
authorOla Bini <ola.bini@gmail.com>2014-07-31 19:29:33 -0300
committerOla Bini <ola.bini@gmail.com>2014-07-31 19:29:33 -0300
commit04cf441c5ae18400c6b4865b0b37a71718dc9d46 (patch)
treedd0b0d049ec00389e2d4561b226c46eb1682b997 /web-ui/app/js/mail_list/ui/mail_items/mail_item.js
parent639a663a4c37020003586438fdcd7ac529a00f10 (diff)
Add web-ui based on previous code
Diffstat (limited to 'web-ui/app/js/mail_list/ui/mail_items/mail_item.js')
-rw-r--r--web-ui/app/js/mail_list/ui/mail_items/mail_item.js63
1 files changed, 63 insertions, 0 deletions
diff --git a/web-ui/app/js/mail_list/ui/mail_items/mail_item.js b/web-ui/app/js/mail_list/ui/mail_items/mail_item.js
new file mode 100644
index 00000000..c0628984
--- /dev/null
+++ b/web-ui/app/js/mail_list/ui/mail_items/mail_item.js
@@ -0,0 +1,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;
+});