forked from daniellandau/switcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil.js
219 lines (184 loc) · 6.26 KB
/
util.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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
const MainLoop = imports.mainloop;
const St = imports.gi.St;
const Clutter = imports.gi.Clutter;
const ExtensionUtils = imports.misc.extensionUtils;
const Me = ExtensionUtils.getCurrentExtension();
const Convenience = Me.imports.convenience;
const matchFuzzy = 1;
const orderByRelevancy = 1;
// from https://github.com/satya164/gjs-helpers
var setTimeout = (f, ms) => {
return MainLoop.timeout_add(ms, () => {
f();
return false; // Don't repeat
});
};
var clearTimeout = id => MainLoop.source_remove(id);
function debounce(f, ms) {
let timeoutId = null;
const debounced = function() {
if (timeoutId) clearTimeout(timeoutId);
timeoutId = setTimeout(f, ms);
};
debounced.cancel = function() {
if (timeoutId) clearTimeout(timeoutId);
};
return debounced;
}
function escapeChars(text) {
return text.replace(/[-[\]{}()*+?.,\\^$|#]/g, '\\$&');
}
function makeFilter(mode, text) {
return function(app) {
// start from zero, filters can change this up or down
// and the scores are summed
app.score = 0;
app.cachedDescription = escapeChars(mode.description(app).toLowerCase());
return text.split(' ').every(fragment => runFilter(mode, app, fragment));
};
}
function getCurrentWorkspace() {
if (global.screen) {
return global.screen.get_active_workspace_index();
} else {
let workspaceManager = global.workspace_manager;
return workspaceManager.get_active_workspace_index();
}
}
function runFilter(mode, app, fragment) {
if (fragment == '') return true;
fragment = escapeChars(fragment);
const matching = Convenience.getSettings().get_uint('matching');
const splitChar = matching == matchFuzzy ? '' : ' ';
const specialexp = new RegExp(/[-[\]{}()*+?.,\\^$|#]/);
const regexp = new RegExp(
fragment.split(splitChar).reduce(function(a, b) {
// In order to treat special charactes as a whole,
// we manually identify and concatenate them
if (b == '\\') return a + b;
else if (specialexp.test(b) && a.charAt(a.length - 1) == '\\')
return a.slice(0, a.length - 1) + '[^' + '\\' + b + ']*' + '\\' + b;
else return a + '[^' + b + ']*' + b;
}),
'gi'
);
let match;
let gotMatch = false;
let score = 0;
const filteredDescription = app.cachedDescription;
// go through each match inside description
while ((match = regexp.exec(filteredDescription))) {
// A full match at the beginning is the best match
if (match.index == 0 && match[0].length == fragment.length) {
score += 100;
}
// matches at beginning word boundaries are better than in the middle of words
const wordPrefixFactor =
match.index == 0 ||
(match.index != 0 && filteredDescription.charAt(match.index - 1) == ' ')
? 1.2
: 0.0;
// matches nearer to the beginning are better than near the end
const precedenceFactor = 1.0 / (1 + match.index);
// fuzzyness can cause lots of stuff to match, penalize by match length
const fuzzynessFactor =
(2.3 * (fragment.length - match[0].length)) / match[0].length;
// join factors by summing
const newscore = precedenceFactor + wordPrefixFactor + fuzzynessFactor;
score = Math.max(score, newscore);
gotMatch = true;
}
app.score += score;
return gotMatch;
}
function fixWidths(box, width, shortcutWidth) {
box.whole.set_width(width);
box.shortcutBox && box.shortcutBox.set_width(shortcutWidth);
}
let latestHighLightedText = null;
function reinit() {
latestHighLightedText = null;
}
function updateHighlight(boxes, query, cursor) {
boxes.forEach(box => {
box.whole.remove_style_class_name('switcher-highlight');
box.label.remove_style_pseudo_class('selected');
const highlightedText = highlightText(box.label.get_text(), query);
box.label.clutter_text.set_markup(highlightedText);
});
if (boxes.length > cursor) {
boxes[cursor].whole.add_style_class_name('switcher-highlight');
if (latestHighLightedText !== boxes[cursor].label.text) {
boxes[cursor].label.add_style_pseudo_class('selected');
}
latestHighLightedText = boxes[cursor].label.text;
}
}
function highlightText(text, query) {
// Don't apply highlighting if there's no input
if (query == '') return text.replace(/&/g, '&');
// Identify substring parts to be highlighted
const matching = Convenience.getSettings().get_uint('matching');
let queryExpression = '(';
let queries = matching == matchFuzzy ? query.split(/ |/) : query.split(' ');
let queriesLength = queries.length;
for (let i = 0; i < queriesLength - 1; i++) {
if (queries[i] != '') {
queryExpression += escapeChars(queries[i]) + '|';
}
}
queryExpression += escapeChars(queries[queriesLength - 1]) + ')';
let queryRegExp = new RegExp(queryExpression, 'i');
let tokenRegExp = new RegExp('^' + queryExpression + '$', 'i');
// Build resulting string from highlighted and non-highlighted strings
let result = '';
let tokens = text.split(queryRegExp);
let tokensLength = tokens.length;
for (let i = 0; i < tokensLength; i++) {
if (tokens[i].match(tokenRegExp)) {
result +=
'<u><span underline_color="#4a90d9" foreground="#ffffff">' +
tokens[i] +
'</span></u>';
} else {
result += tokens[i];
}
}
return result.replace(/&/g, '&');
}
function detachParent(child) {
if (child) {
let parent = child.get_parent();
if (parent) {
parent.remove_actor(child);
}
}
}
const launcherFilterCache = {};
function filterByText(mode, apps, text) {
const cacheKey = text + apps.length;
const get = () => {
let filteredApps = apps.filter(makeFilter(mode, text));
// Always preserve focus order before typing
const ordering = Convenience.getSettings().get_uint('ordering');
if (ordering == orderByRelevancy && text != '') {
filteredApps = filteredApps.sort(function(a, b) {
if (a.score > b.score) return -1;
if (a.score < b.score) return 1;
return 0;
});
}
return filteredApps;
};
if (mode.name() === 'Switcher') return get();
const update = () => {
launcherFilterCache[cacheKey] = get();
};
const cachedFiltered = launcherFilterCache[cacheKey];
if (!!cachedFiltered) {
setTimeout(update, 500);
return cachedFiltered;
}
update();
return launcherFilterCache[cacheKey];
}