/* * 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 . */ define( [ 'helpers/contenttype', 'lib/html_whitelister', 'views/i18n', 'quoted-printable/quoted-printable', 'utf8/utf8' ], function(contentType, htmlWhitelister, i18n_lib, quotedPrintable, utf8) { 'use strict'; function formatStatusClasses(ss) { return _.map(ss, function(s) { return 'status-' + s; }).join(' '); } function addParagraphsToPlainText(textPlainBody) { return _.map(textPlainBody.split('\n'), function (paragraph) { return '

' + paragraph + '

'; }).join(''); } function formatMailBody (mail) { var body = mail.htmlBodyPart ? htmlWhitelister.sanitize(mail.htmlBody, htmlWhitelister.tagPolicy) : addParagraphsToPlainText(mail.textPlainBody) return $(body) } function moveCaretToEnd(el) { if (typeof el.selectionStart === 'number') { el.selectionStart = el.selectionEnd = el.value.length; } else if (typeof el.createTextRange !== 'undefined') { el.focus(); var range = el.createTextRange(); range.collapse(false); range.select(); } } function fixedSizeNumber(num, size) { var res = num.toString(); while(res.length < size) { res = '0' + res; } return res; } function getFormattedDate(date){ var today = createTodayDate(); if (date.getTime() > today.getTime()) { return fixedSizeNumber(date.getHours(), 2) + ':' + fixedSizeNumber(date.getMinutes(), 2); } else { return '' + date.getFullYear() + '-' + fixedSizeNumber(date.getMonth() + 1, 2) + '-' + fixedSizeNumber(date.getDate(), 2); } } function createTodayDate() { var today = new Date(); today.setHours(0); today.setMinutes(0); today.setSeconds(0); return today; } function moveCaretToEndOfText() { var self = this; moveCaretToEnd(self); window.setTimeout(function() { moveCaretToEnd(self); }, 1); } function quoteMail(mail) { var quotedLines = _.map(mail.textPlainBody.split('\n'), function (line) { return '> ' + line; }); return '\n\n' + quotedLines.join('\n'); } function i18n(text) { return i18n_lib.get(text); } return { formatStatusClasses: formatStatusClasses, formatMailBody: formatMailBody, moveCaretToEndOfText: moveCaretToEndOfText, getFormattedDate: getFormattedDate, quoteMail: quoteMail, i18n: i18n }; });