summaryrefslogtreecommitdiff
path: root/web-ui/public/js/helpers/view_helper.js
blob: ed9e055908cf1b522de41c0235f079739a0c8430 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
/*
 * 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(
  [
    'helpers/contenttype',
    'views/i18n',
    'quoted-printable/quoted-printable',
    'utf8/utf8',
    'helpers/sanitizer'
  ],
  function(contentType, i18n, quotedPrintable, utf8, sanitizer) {
  'use strict';

  function formatStatusClasses(ss) {
    return _.map(ss, function(s) {
      return 'status-' + s;
    }).join(' ');
  }

  function formatMailBody(mail) {
    return sanitizer.sanitize(mail);
  }

  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 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 prependFrom(mail) {
    return i18n.t(
      'reply-author-line', {'date': new Date(mail.header.date).toString(), 'from': mail.header.from}
    );
  }

  function quoteMail(mail) {
    return '\n\n' + prependFrom(mail) + mail.textPlainBody.replace(/^/mg, '> ');
  }

  function formatDate(dateString) {
    var date = new Date(dateString);
    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 formatSize(bytes) {
    var e = Math.floor(Math.log(bytes) / Math.log(1024));
    return (bytes / Math.pow(1024, e)).toFixed(2) + ' ' + ' KMGTP'.charAt(e) + 'b';
  }


  function formatFingerPrint(fingerprint) {
    fingerprint = fingerprint || '';
    return fingerprint.replace(/(.{4})/g, '$1 ').trim();
  }

  function getSinceDate(sinceDate){
    var commitDate = new Date(sinceDate);
    var number = Date.now();
    var millisecondsSince = number - commitDate;

    var SECONDS = 1000,
        MIN = 60 * SECONDS,
        HOUR = MIN * 60,
        DAY = HOUR * 24,
        WEEK = DAY * 7,
        MONTH = WEEK * 4,
        YEAR = DAY * 365;

    var years = Math.floor(millisecondsSince / YEAR);
    if (years >= 1){
      return years + ' year(s)';
    }

    var months = Math.floor(millisecondsSince / MONTH);
    if (months >= 1) {
      return months + ' month(s)';
    }

    var weeks = Math.floor(millisecondsSince / WEEK);
    if (weeks >= 1) {
      return weeks + ' week(s)';
    }

    var days = Math.floor(millisecondsSince / DAY);
    if (days >= 1) {
      return days + ' day(s)';
    }

    var hours = Math.floor(millisecondsSince / HOUR);
    if (hours >= 1) {
      return hours + ' hour(s)';
    }

    var minutes = Math.floor(millisecondsSince / MIN);
    return minutes + ' minute(s)';
  }

  Handlebars.registerHelper('formatDate', formatDate);
  Handlebars.registerHelper('formatSize', formatSize);
  Handlebars.registerHelper('formatStatusClasses', formatStatusClasses);
  Handlebars.registerHelper('formatFingerPrint', formatFingerPrint);
  Handlebars.registerHelper('sinceDate', getSinceDate);

  return {
    formatStatusClasses: formatStatusClasses,
    formatSize: formatSize,
    formatMailBody: formatMailBody,
    formatFingerPrint: formatFingerPrint,
    moveCaretToEndOfText: moveCaretToEndOfText,
    quoteMail: quoteMail,
    sinceDate: getSinceDate,
    i18n: i18n
  };
});