(function() { var MailCatcher; MailCatcher = (function() { function MailCatcher() { var _this = this; $('#messages tr').live('click', function(e) { e.preventDefault(); return _this.loadMessage($(e.currentTarget).attr('data-message-id')); }); $('input[name=search]').live('keyup', function(e) { e.preventDefault(); console.log(e); if (e.currentTarget.value === "") { return _this.clearSearch(); } else { return _this.searchMessages(e.currentTarget.value); } }); $('#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.'); } }); } }); 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.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(term) { $('#messages tbody tr:not(:contains("' + term + '"))').hide(); return $('#messages tbody tr(:contains("' + term + '"))').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);