diff options
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 | } | ||