forked from zensh/jsgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilters.js
141 lines (140 loc) · 3.53 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
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
'use strict';
/* Filters */
angular.module('jsGen.filters', []).
filter('role', function () {
return function (text) {
switch (text) {
case 5:
return '管理员';
case 4:
return '编辑';
case 3:
return '组员';
case 2:
return '会员';
case 1:
return '待验证';
case 0:
return '禁言';
default:
return text;
}
};
}).
filter('sex', function () {
return function (text) {
switch (text) {
case 'male':
return '男性';
case 'female':
return '女性';
default:
return text;
}
};
}).
filter('boolean', function () {
return function (text) {
if (text) {
return '开启';
} else {
return '关闭';
}
};
}).
filter('follow', function () {
return function (text) {
if (text) {
return '已关注';
} else {
return '关注';
}
};
}).
filter('favor', function () {
return function (text) {
if (text) {
return '已支持';
} else {
return '支持';
}
};
}).
filter('mark', function () {
return function (text) {
if (text) {
return '已标记';
} else {
return '标记';
}
};
}).
filter('oppose', function () {
return function (text) {
if (text) {
return '已反对';
} else {
return '反对';
}
};
}).
filter('checkName', function () {
return function (text) {
if (text) {
var reg = /^[(\u4e00-\u9fa5)a-z][(\u4e00-\u9fa5)a-zA-Z0-9_]{1,15}$/;
var len = utf8.stringToBytes(text).length;
if (!reg.test(text)) {
return '支持汉字、小写字母a-z、数字0-9、或下划线_,请以汉字或小写字母开头';
} else if (len > 0 && len < 5) {
return '长度必须大于5字节,一个汉字3字节';
} else if (len > 15) {
return '长度必须小于15字节,一个汉字3字节';
} else {
return false;
}
}
};
}).
filter('length', function () {
return function (text) {
if (text) {
return utf8.stringToBytes(text).length;
} else {
return 0;
}
};
}).
filter('cutText', function () {
return function (text, len) {
if (typeof text !== 'string') {
return text;
}
text = text.replace(/\s+/g, ' ');
var bytes = utf8.stringToBytes(text);
len = len || 0;
if (bytes.length > len) {
bytes.length = len;
text = utf8.bytesToString(bytes);
text = text.slice(0, -2) + '…';
}
return text;
};
}).
filter('formatDate', ['$filter',
function ($filter) {
return function (date) {
var o = Date.now() - date;
if (o > 259200000) {
return $filter('date')(date, 'yy-MM-dd HH:mm'); // 三天前直接显示标准日期格式
} else if (o > 86400000) {
return Math.floor(o / 86400000) + '天前';
} else if (o > 3600000) {
return Math.floor(o / 3600000) + '小时前';
} else if (o > 60000) {
return Math.floor(o / 60000) + '分钟前';
} else {
return "刚刚";
}
};
}
]);