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
|
export const SORTING_RULE_DATA_FILE = 'sorting-rules.yaml';
import {input} from '#composite';
import Thing from '#thing';
import {isStringNonEmpty, strictArrayOf} from '#validators';
import {documentModes} from '#yaml';
import {
compareCaseLessSensitive,
sortByDate,
sortByDirectory,
sortByName,
} from '#sort';
import {flag} from '#composite/wiki-properties';
export class SortingRule extends Thing {
static [Thing.friendlyName] = `Sorting Rule`;
static [Thing.getPropertyDescriptors] = () => ({
// Update & expose
active: flag(true),
});
static [Thing.yamlDocumentSpec] = {
fields: {
'Active': {property: 'active'},
},
};
static [Thing.getYamlLoadingSpec] = ({
documentModes: {allInOne},
thingConstructors: {DocumentSortingRule},
}) => ({
title: `Process sorting rules file`,
file: SORTING_RULE_DATA_FILE,
documentMode: allInOne,
documentThing: document =>
(document['Sort Documents']
? DocumentSortingRule
: null),
save: (results) => ({sortingRules: results}),
});
}
export class DocumentSortingRule extends SortingRule {
static [Thing.getPropertyDescriptors] = () => ({
// Update & expose
// TODO: glob :plead:
filename: {
flags: {update: true, expose: true},
update: {
validate: isStringNonEmpty,
},
},
properties: {
flags: {update: true, expose: true},
update: {
validate: strictArrayOf(isStringNonEmpty),
},
},
});
static [Thing.yamlDocumentSpec] = Thing.extendDocumentSpec(SortingRule, {
fields: {
'Sort Documents': {property: 'filename'},
'By Properties': {property: 'properties'},
},
});
apply(layout) {
const fresh = {...layout};
let sortable = null;
switch (fresh.documentMode) {
case documentModes.headerAndEntries:
sortable = fresh.entryThings =
fresh.entryThings.slice();
break;
case documentModes.allInOne:
sortable = fresh.things =
fresh.things.slice();
break;
default:
throw new Error(`Invalid document type for sorting`);
}
if (this.properties) {
for (const property of this.properties.slice().reverse()) {
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 fresh;
}
}
|