-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilters.js
62 lines (59 loc) · 1.5 KB
/
filters.js
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
'use strict';
/* Filters */
angular.module('appResume.filters', []).
filter('to_trusted', ['$sce', function($sce){
return function(text) {
return $sce.trustAsHtml(text);
};
}]).
filter('url_encode', function(){
return function(text) {
return encodeURIComponent(text);
};
}).
filter('length', function () {
return function(data, $scope) {
if($scope.isEmpty(data)){
return false;
} else {
return true;
}
}
}).
filter('newlines', function () {
return function(text) {
//return text.replace(/\n/g, '<br/>');
return text.replace(/(?:\r\n|\r|\n)/g, '<br />');
}
}).
filter('noHTML', function () {
return function(text) {
return text
.replace(/&/g, '&')
.replace(/>/g, '>')
.replace(/</g, '<');
}
}).
filter('strip_tags', function () {
return function(input, allowed){
allowed = (((allowed || '') + '')
.toLowerCase()
.match(/<[a-z][a-z0-9]*>/g) || [])
.join(''); // making sure the allowed arg is a string containing only tags in lowercase (<a><b><c>)
var tags = /<\/?([a-z][a-z0-9]*)\b[^>]*>/gi,
commentsAndPhpTags = /<!--[\s\S]*?-->|<\?(?:php)?[\s\S]*?\?>/gi;
return input.replace(commentsAndPhpTags, '')
.replace(tags, function ($0, $1) {
return allowed.indexOf('<' + $1.toLowerCase() + '>') > -1 ? $0 : '';
});
}
}).
filter('truncate', function () {
return function(str,length) {
if(str.length > length){
str = str.substring(0,length)+"...";
}
console.log(str);
return str;
}
})