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
|
import {V} from '#composite';
import Thing from '#thing';
import {isStringNonEmpty, strictArrayOf} from '#validators';
import {
compareCaseLessSensitive,
sortByDate,
sortByDirectory,
sortByName,
} from '#sort';
import {exposeConstant} from '#composite/control-flow';
import {SortingRule} from './SortingRule.js';
export class ThingSortingRule extends SortingRule {
static [Thing.getPropertyDescriptors] = () => ({
// Update & expose
properties: {
flags: {update: true, expose: true},
update: {
validate: strictArrayOf(isStringNonEmpty),
},
},
// Expose only
isThingSortingRule: exposeConstant(V(true)),
});
static [Thing.yamlDocumentSpec] = {
fields: {
'By Properties': {property: 'properties'},
},
};
sort(sortable) {
if (this.properties) {
for (const property of this.properties.toReversed()) {
const get = thing => thing[property];
const lc = property.toLowerCase();
if (lc.endsWith('date')) {
sortByDate(sortable, {getDate: get});
continue;
}
if (lc.endsWith('directory')) {
sortByDirectory(sortable, {getDirectory: get});
continue;
}
if (lc.endsWith('name')) {
sortByName(sortable, {getName: get});
continue;
}
const values = sortable.map(get);
if (values.every(v => typeof v === 'string')) {
sortable.sort((a, b) =>
compareCaseLessSensitive(get(a), get(b)));
continue;
}
if (values.every(v => typeof v === 'number')) {
sortable.sort((a, b) => get(a) - get(b));
continue;
}
sortable.sort((a, b) =>
(get(a).toString() < get(b).toString()
? -1
: get(a).toString() > get(b).toString()
? +1
: 0));
}
}
return sortable;
}
}
|