diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2017-05-15 22:22:03 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2017-05-20 09:57:40 +0200 |
commit | 65fcc3119c334b75dd13bcfdebf186afdc580a8f (patch) | |
tree | 4f2158c61a9b7c3f47cfa233d01413b946ee53c0 /server/models/utils.ts | |
parent | d5f345ed4cfac4e1fa84dcb4fce1cda4d32f9c73 (diff) | |
download | PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.gz PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.tar.zst PeerTube-65fcc3119c334b75dd13bcfdebf186afdc580a8f.zip |
First typescript iteration
Diffstat (limited to 'server/models/utils.ts')
-rw-r--r-- | server/models/utils.ts | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/server/models/utils.ts b/server/models/utils.ts new file mode 100644 index 000000000..601811913 --- /dev/null +++ b/server/models/utils.ts | |||
@@ -0,0 +1,21 @@ | |||
1 | // Translate for example "-name" to [ 'name', 'DESC' ] | ||
2 | function getSort (value) { | ||
3 | let field | ||
4 | let direction | ||
5 | |||
6 | if (value.substring(0, 1) === '-') { | ||
7 | direction = 'DESC' | ||
8 | field = value.substring(1) | ||
9 | } else { | ||
10 | direction = 'ASC' | ||
11 | field = value | ||
12 | } | ||
13 | |||
14 | return [ field, direction ] | ||
15 | } | ||
16 | |||
17 | // --------------------------------------------------------------------------- | ||
18 | |||
19 | export { | ||
20 | getSort | ||
21 | } | ||