Telegram Web, preconfigured for usage in I2P. http://web.telegram.i2p/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

197 lines
5.3 KiB

11 years ago
/*!
10 years ago
* Webogram v0.3.2 - messaging web application for MTProto
11 years ago
* https://github.com/zhukov/webogram
* Copyright (C) 2014 Igor Zhukov <igor.beatle@gmail.com>
* https://github.com/zhukov/webogram/blob/master/LICENSE
*/
'use strict';
/* Filters */
angular.module('myApp.filters', ['myApp.i18n'])
11 years ago
.filter('userName', ['_', function(_) {
11 years ago
return function (user) {
if (!user || !user.first_name && !user.last_name) {
return _('user_name_deleted');
11 years ago
}
return user.first_name + ' ' + user.last_name;
}
}])
.filter('userFirstName', ['_', function(_) {
11 years ago
return function (user) {
if (!user || !user.first_name && !user.last_name) {
return _('user_first_name_deleted');
11 years ago
}
return user.first_name || user.last_name;
}
}])
.filter('userStatus', ['$filter', '_', function($filter, _) {
11 years ago
return function (user) {
if (!user || !user.status || user.status._ == 'userStatusEmpty') {
return _('user_status_offline');
11 years ago
}
if (user.status._ == 'userStatusOnline') {
return _('user_status_online');
11 years ago
}
return _('user_status_last_seen', $filter('relativeTime')(user.status.was_online));
11 years ago
}
}])
.filter('chatTitle', ['_', function(_) {
11 years ago
return function (chat) {
if (!chat || !chat.title) {
return _('chat_title_deleted');
11 years ago
}
return chat.title;
}
}])
.filter('dateOrTime', ['$filter', function($filter) {
var cachedDates = {},
dateFilter = $filter('date');
11 years ago
return function (timestamp) {
if (cachedDates[timestamp]) {
return cachedDates[timestamp];
}
11 years ago
var ticks = timestamp * 1000,
diff = Math.abs(tsNow() - ticks),
format = 'shortTime';
11 years ago
if (diff > 518400000) { // 6 days
format = 'shortDate';
}
else if (diff > 43200000) { // 12 hours
format = 'EEE';
}
return cachedDates[timestamp] = dateFilter(ticks, format);
11 years ago
}
}])
.filter('time', ['$filter', function($filter) {
var cachedDates = {},
dateFilter = $filter('date'),
format = Config.Mobile ? 'shortTime' : 'mediumTime';
return function (timestamp) {
if (cachedDates[timestamp]) {
return cachedDates[timestamp];
}
return cachedDates[timestamp] = dateFilter(timestamp * 1000, format);
10 years ago
}
}])
.filter('myDate', ['$filter', function($filter) {
var cachedDates = {},
dateFilter = $filter('date');
return function (timestamp) {
if (cachedDates[timestamp]) {
return cachedDates[timestamp];
}
return cachedDates[timestamp] = dateFilter(timestamp * 1000, 'fullDate');
}
}])
11 years ago
.filter('duration', [function() {
return function (duration) {
duration = parseInt(duration);
if (isNaN(duration)) {
duration = 0;
}
11 years ago
var secs = duration % 60,
mins = Math.floor((duration - secs) / 60.0);
if (secs < 10) {
secs = '0' + secs;
}
return mins + ':' + secs;
}
}])
.filter('phoneNumber', [function() {
return function (phoneRaw) {
10 years ago
var nbsp = ' ';
phoneRaw = (phoneRaw || '').replace(/\D/g, '');
if (phoneRaw.charAt(0) == '7' && phoneRaw.length == 11) {
10 years ago
return '+' + phoneRaw.charAt(0) + nbsp + '(' + phoneRaw.substr(1, 3) + ')' + nbsp + phoneRaw.substr(4, 3) + '-' + phoneRaw.substr(7, 2) + '-' + phoneRaw.substr(9, 2);
11 years ago
}
return '+' + phoneRaw;
}
}])
.filter('formatSize', [function () {
return function (size) {
if (!size) {
return '0';
}
else if (size < 1024) {
return size + ' b';
}
else if (size < 1048576) {
return (Math.round(size / 1024 * 10) / 10) + ' Kb';
}
return (Math.round(size / 1048576 * 100) / 100) + ' Mb';
}
}])
.filter('formatSizeProgress', ['$filter', '_', function ($filter, _) {
return function (progress) {
var done = $filter('formatSize')(progress.done),
doneParts = done.split(' '),
total = $filter('formatSize')(progress.total),
totalParts = total.split(' ');
if (totalParts[1] === doneParts[1]) {
return _('format_size_progress_mulitple', {done: doneParts[0], total: totalParts[0], parts: (doneParts[1] || '')});
}
return _('format_size_progress', {done: done, total: total});
11 years ago
}
}])
.filter('nl2br', [function () {
return function (text) {
return text.replace(/\n/g, '<br/>');
}
}])
.filter('richText', ['$filter', function ($filter) {
return function (text) {
return $filter('linky')(text, '_blank').replace(/\n|&#10;/g, '<br/>');
}
}])
.filter('relativeTime', ['$filter', '_', function($filter, _) {
var langMinutesPluralize = _.pluralize('relative_time_pluralize_minutes_ago'),
langHoursPluralize = _.pluralize('relative_time_pluralize_hours_ago');
11 years ago
return function (timestamp) {
var ticks = timestamp * 1000,
diff = Math.abs(tsNow() - ticks);
11 years ago
if (diff < 60000) {
return _('relative_time_just_now');
11 years ago
}
if (diff < 3000000) {
var minutes = Math.ceil(diff / 60000);
return langMinutesPluralize(minutes);
11 years ago
}
if (diff < 10000000) {
var hours = Math.ceil(diff / 3600000);
return langHoursPluralize(hours);
11 years ago
}
return $filter('dateOrTime')(timestamp);
}
}])