forked from wenzhixin/bootstrap-table-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
examples.js
71 lines (64 loc) · 2.05 KB
/
examples.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
/**
* @author zhixin wen <[email protected]>
* examples for projects
*/
var projects = {
bootstrap_table: {
data: function(req, res) {
var offset = +req.query.offset || 0,
limit = +req.query.limit || 20,
search = req.query.search,
name = req.query.sort,
order = req.query.order || 'asc',
i,
max = offset + limit,
rows = [],
result = {
total: 800,
rows: []
};
for (i = 0; i < result.total; i++) {
rows.push({
id: i,
name: 'Item ' + i,
price: '$' + i
});
}
if (search) {
rows = rows.filter(function(item) {
return item.name.indexOf(search) !== -1;
});
}
if (['id', 'name', 'price'].indexOf(name) !== -1) {
rows = rows.sort(function(a, b) {
var c = a[name],
d = b[name];
if (name === 'price') {
c = +c.substring(1);
d = +d.substring(1);
}
if (c < d) {
return order === 'asc' ? -1 : 1;
}
if (c > d) {
return order === 'asc' ? 1 : -1;
}
return 0;
});
}
if (max > rows.length) {
max = rows.length;
}
result.total = rows.length;
for (i = offset; i < max; i++) {
result.rows.push(rows[i]);
}
res.json(result);
}
}
};
module.exports = function(req, res) {
res.header('Access-Control-Allow-Origin', '*');
res.header('Access-Control-Allow-Headers', 'X-Requested-With');
projects[req.params.project][req.params.func](req, res);
};