(function() { var MailCatcher, __bind = function(fn, me){ return function(){ return fn.apply(me, arguments); }; }; jQuery.expr[':'].icontains = function(a, i, m) { var _ref, _ref2; return ((_ref = (_ref2 = a.textContent) != null ? _ref2 : a.innerText) != null ? _ref : "").toUpperCase().indexOf(m[3].toUpperCase()) >= 0; }; MailCatcher = (function() { function MailCatcher() { this.nextTab = __bind(this.nextTab, this); this.previousTab = __bind(this.previousTab, this); this.openTab = __bind(this.openTab, this); this.selectedTab = __bind(this.selectedTab, this); this.getTab = __bind(this.getTab, this); var _this = this; $('#messages tr').live('click', function(e) { e.preventDefault(); return _this.loadMessage($(e.currentTarget).attr('data-message-id')); }); $('input[name=search]').keyup(function(e) { var query; query = $.trim($(e.currentTarget).val()); if (query) { return _this.searchMessages(query); } else { return _this.clearSearch(); } }); $('#message .views .format.tab a').live('click', function(e) { e.preventDefault(); return _this.loadMessageBody(_this.selectedMessage(), $($(e.currentTarget).parent('li')).data('message-format')); }); $('#message .views .analysis.tab a').live('click', function(e) { e.preventDefault(); return _this.loadMessageAnalysis(_this.selectedMessage()); }); $('#resizer').live({ mousedown: function(e) { var events; e.preventDefault(); return $(window).bind(events = { mouseup: function(e) { e.preventDefault(); return $(window).unbind(events); }, mousemove: function(e) { e.preventDefault(); return $('#messages').css({ height: e.clientY - $('#messages').offset().top }); } }); } }); $('nav.app .clear a').live('click', function(e) { e.preventDefault(); if (confirm("You will lose all your received messages.\n\nAre you sure you want to clear all messages?")) { return $.ajax({ url: '/messages', type: 'DELETE', success: function() { $('#messages tbody, #message .metadata dd').empty(); $('#message .metadata .attachments').hide(); return $('#message iframe').attr('src', 'about:blank'); }, error: function() { return alert('Error while quitting.'); } }); } }); $('nav.app .quit a').live('click', function(e) { e.preventDefault(); if (confirm("You will lose all your received messages.\n\nAre you sure you want to quit?")) { return $.ajax({ type: 'DELETE', success: function() { return location.replace($('body > header h1 a').attr('href')); }, error: function() { return alert('Error while quitting.'); } }); } }); key('up', function() { if (_this.selectedMessage()) { _this.loadMessage($('#messages tr.selected').prev().data('message-id')); } else { _this.loadMessage($('#messages tbody tr[data-message-id]:first').data('message-id')); } return false; }); key('down', function() { if (_this.selectedMessage()) { _this.loadMessage($('#messages tr.selected').next().data('message-id')); } else { _this.loadMessage($('#messages tbody tr[data-message-id]:first').data('message-id')); } return false; }); key('⌘+up, ctrl+up', function() { _this.loadMessage($('#messages tbody tr[data-message-id]:first').data('message-id')); return false; }); key('⌘+down, ctrl+down', function() { _this.loadMessage($('#messages tbody tr[data-message-id]:last').data('message-id')); return false; }); key('left', function() { _this.openTab(_this.previousTab()); return false; }); key('right', function() { _this.openTab(_this.nextTab()); return false; }); key('backspace, delete', function() { var id; id = _this.selectedMessage(); if (id != null) { $.ajax({ url: '/messages/' + id, type: 'DELETE', success: function() { var messageRow, switchTo; messageRow = $("#messages tbody tr[data-message-id='" + id + "']"); switchTo = messageRow.next().data('message-id') || messageRow.prev().data('message-id'); messageRow.remove(); if (switchTo) { return _this.loadMessage(switchTo); } else { $('#message .metadata dd').empty(); $('#message .metadata .attachments').hide(); return $('#message iframe').attr('src', 'about:blank'); } }, error: function() { return alert('Error while removing message.'); } }); } return false; }); this.refresh(); this.subscribe(); } MailCatcher.prototype.parseDateRegexp = /^(\d{4})[-\/\\](\d{2})[-\/\\](\d{2})(?:\s+|T)(\d{2})[:-](\d{2})[:-](\d{2})(?:([ +-]\d{2}:\d{2}|\s*\S+|Z?))?$/; MailCatcher.prototype.parseDate = function(date) { var match; if (match = this.parseDateRegexp.exec(date)) { return new Date(match[1], match[2] - 1, match[3], match[4], match[5], match[6], 0); } }; MailCatcher.prototype.offsetTimeZone = function(date) { var offset; offset = Date.now().getTimezoneOffset() * 60000; date.setTime(date.getTime() - offset); return date; }; MailCatcher.prototype.formatDate = function(date) { if (typeof date === "string") date && (date = this.parseDate(date)); date && (date = this.offsetTimeZone(date)); return date && (date = date.toString("dddd, d MMM yyyy h:mm:ss tt")); }; MailCatcher.prototype.messagesCount = function() { return $('#messages tr').length - 1; }; MailCatcher.prototype.tabs = function() { return $('#message ul').children('.tab'); }; MailCatcher.prototype.getTab = function(i) { return $(this.tabs()[i]); }; MailCatcher.prototype.selectedTab = function() { return this.tabs().index($('#message li.tab.selected')); }; MailCatcher.prototype.openTab = function(i) { return this.getTab(i).children('a').click(); }; MailCatcher.prototype.previousTab = function(tab) { var i; i = tab || tab === 0 ? tab : this.selectedTab() - 1; if (i < 0) i = this.tabs().length - 1; if (this.getTab(i).is(":visible")) { return i; } else { return this.previousTab(i - 1); } }; MailCatcher.prototype.nextTab = function(tab) { var i; i = tab ? tab : this.selectedTab() + 1; if (i > this.tabs().length - 1) i = 0; if (this.getTab(i).is(":visible")) { return i; } else { return this.nextTab(i + 1); } }; MailCatcher.prototype.haveMessage = function(message) { if (message.id != null) message = message.id; return $("#messages tbody tr[data-message-id=\"" + message + "\"]").length > 0; }; MailCatcher.prototype.selectedMessage = function() { return $('#messages tr.selected').data('message-id'); }; MailCatcher.prototype.searchMessages = function(query) { var $rows, selector, token; selector = ((function() { var _i, _len, _ref, _results; _ref = query.split(/\s+/); _results = []; for (_i = 0, _len = _ref.length; _i < _len; _i++) { token = _ref[_i]; _results.push(":icontains('" + token + "')"); } return _results; })()).join(""); $rows = $("#messages tbody tr"); $rows.not(selector).hide(); return $rows.filter(selector).show(); }; MailCatcher.prototype.clearSearch = function() { return $('#messages tbody tr').show(); }; MailCatcher.prototype.addMessage = function(message) { return $('#messages tbody').append($('
Fractal is a really neat service that applies common email design and development knowledge from Email Standards Project to your HTML email and tells you what you've done wrong or what you should do instead.
\nPlease note that this sends your email to the Fractal service for analysis. Read their terms of service if you're paranoid.
\n\n\n"); return $form = $iframe.find('form').submit(function(e) { e.preventDefault(); $(this).find('input[type="submit"]').attr('disabled', 'disabled').end().find('.loading').show(); return $('#message iframe').contents().find('body').xslt("/messages/" + id + "/analysis.xml", "/stylesheets/analysis.xsl"); }); } }; MailCatcher.prototype.refresh = function() { var _this = this; return $.getJSON('/messages', function(messages) { return $.each(messages, function(i, message) { if (!_this.haveMessage(message)) return _this.addMessage(message); }); }); }; MailCatcher.prototype.subscribe = function() { if (typeof WebSocket !== "undefined" && WebSocket !== null) { return this.subscribeWebSocket(); } else { return this.subscribePoll(); } }; MailCatcher.prototype.subscribeWebSocket = function() { var secure, _this = this; secure = window.location.scheme === 'https'; this.websocket = new WebSocket("" + (secure ? 'wss' : 'ws') + "://" + window.location.host + "/messages"); return this.websocket.onmessage = function(event) { return _this.addMessage($.parseJSON(event.data)); }; }; MailCatcher.prototype.subscribePoll = function() { var _this = this; if (this.refreshInterval == null) { return this.refreshInterval = setInterval((function() { return _this.refresh(); }), 1000); } }; return MailCatcher; })(); $(function() { return window.MailCatcher = new MailCatcher; }); }).call(this);