-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
311 lines (272 loc) · 12.8 KB
/
Copy pathscript.js
File metadata and controls
311 lines (272 loc) · 12.8 KB
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
fetch('commands.json')
.then(response => response.json())
.then(data => {
// Store data globally for search functionality
window.commandsData = data;
// Apply fonts from JSON
if (data.fonts) {
document.querySelector('.header h1').style.fontFamily = data.fonts.title + ', monospace';
document.querySelector('.footer').style.fontFamily = data.fonts.footer + ', monospace';
document.body.style.fontFamily = data.fonts.description + ', monospace';
document.querySelector('.blurb').style.fontFamily = data.fonts.description + ', monospace';
}
const container = document.getElementById('commands-container');
data.sections.forEach(section => {
let sectionDiv;
if (section.dropdown) {
sectionDiv = document.createElement('details');
sectionDiv.className = 'dropdown';
const summary = document.createElement('summary');
summary.textContent = section.name;
summary.style.color = section.color;
sectionDiv.appendChild(summary);
} else {
sectionDiv = document.createElement('div');
sectionDiv.className = 'section';
const h2 = document.createElement('h2');
h2.textContent = section.name;
h2.style.color = section.color;
sectionDiv.appendChild(h2);
}
if (section.logo) {
const img = document.createElement('img');
img.src = section.logo;
img.alt = section.name + ' Logo';
sectionDiv.appendChild(img);
}
if (section.pfp) {
const img = document.createElement('img');
img.src = section.pfp;
img.alt = section.name + ' PFP';
sectionDiv.appendChild(img);
}
const ul = document.createElement('ul');
// Sort commands alphabetically by main command name
section.commands.sort((a, b) => {
const nameA = (a.main || a.name || '').toLowerCase();
const nameB = (b.main || b.name || '').toLowerCase();
return nameA.localeCompare(nameB);
});
section.commands.forEach(cmd => {
const li = document.createElement('li');
li.className = 'command';
li.style.color = section.color;
// Create wrapper for title and badge
const titleWrapper = document.createElement('div');
titleWrapper.className = 'command-title-wrapper';
const mainSpan = document.createElement('span');
mainSpan.className = 'main';
mainSpan.textContent = cmd.main || cmd.name;
if (data.fonts) mainSpan.style.fontFamily = data.fonts.commandMain + ', monospace';
titleWrapper.appendChild(mainSpan);
const badgeSpan = document.createElement('span');
badgeSpan.className = 'badge ' + (cmd.userType || 'all');
badgeSpan.textContent = cmd.userType || 'all';
titleWrapper.appendChild(badgeSpan);
li.appendChild(titleWrapper);
const cooldownsSpan = document.createElement('span');
cooldownsSpan.className = 'cooldowns';
cooldownsSpan.textContent = `Global: ${cmd.globalCooldown || 0}s, User: ${cmd.userCooldown || 0}s`;
li.appendChild(cooldownsSpan);
if ((cmd.triggers || []).length > 1) {
const details = document.createElement('details');
details.className = 'alternates';
const summary = document.createElement('summary');
summary.textContent = 'Triggers';
details.appendChild(summary);
const altUl = document.createElement('ul');
(cmd.triggers || [cmd.main || cmd.name]).forEach(trigger => {
const altLi = document.createElement('li');
altLi.textContent = trigger;
altUl.appendChild(altLi);
});
details.appendChild(altUl);
li.appendChild(details);
}
const descP = document.createElement('p');
descP.textContent = cmd.description || 'No description';
if (data.fonts) descP.style.fontFamily = data.fonts.description + ', monospace';
li.appendChild(descP);
ul.appendChild(li);
});
sectionDiv.appendChild(ul);
container.appendChild(sectionDiv);
});
})
.catch(error => console.error('Error loading commands:', error));
// Search functionality
function initializeSearch() {
const searchInput = document.getElementById('command-search');
const searchResults = document.getElementById('search-results');
searchInput.addEventListener('input', function() {
const query = this.value.toLowerCase().trim();
if (query.length === 0) {
searchResults.style.display = 'none';
return;
}
const results = performSearch(query);
displaySearchResults(results, query);
});
// Hide results when clicking outside
document.addEventListener('click', function(e) {
if (!searchInput.contains(e.target) && !searchResults.contains(e.target)) {
searchResults.style.display = 'none';
}
});
}
function performSearch(query) {
const results = {
commands: [],
triggers: [],
descriptions: [],
tags: [],
userTypes: []
};
window.commandsData.sections.forEach(section => {
section.commands.forEach(cmd => {
const commandName = (cmd.main || cmd.name).toLowerCase();
const description = (cmd.description || '').toLowerCase();
const triggers = (cmd.triggers || []).map(t => t.toLowerCase());
const tags = (cmd.tags || []).map(t => t.toLowerCase());
const userType = (cmd.userType || 'all').toLowerCase();
// Check command name
if (commandName.includes(query)) {
results.commands.push({
command: cmd.main || cmd.name,
section: section.name,
sectionColor: section.color,
description: cmd.description,
type: 'command'
});
}
// Check triggers
triggers.forEach(trigger => {
if (trigger.includes(query) && !results.commands.some(r => r.command === (cmd.main || cmd.name))) {
results.triggers.push({
command: cmd.main || cmd.name,
trigger: trigger,
section: section.name,
sectionColor: section.color,
description: cmd.description,
type: 'trigger'
});
}
});
// Check tags
tags.forEach(tag => {
if (tag.includes(query) &&
!results.commands.some(r => r.command === (cmd.main || cmd.name)) &&
!results.triggers.some(r => r.command === (cmd.main || cmd.name))) {
results.tags.push({
command: cmd.main || cmd.name,
tag: tag,
section: section.name,
sectionColor: section.color,
description: cmd.description,
type: 'tag'
});
}
});
// Check user type
if (userType.includes(query) &&
!results.commands.some(r => r.command === (cmd.main || cmd.name)) &&
!results.triggers.some(r => r.command === (cmd.main || cmd.name)) &&
!results.tags.some(r => r.command === (cmd.main || cmd.name))) {
results.userTypes.push({
command: cmd.main || cmd.name,
userType: cmd.userType || 'all',
section: section.name,
sectionColor: section.color,
description: cmd.description,
type: 'userType'
});
}
// Check description
if (description.includes(query) &&
!results.commands.some(r => r.command === (cmd.main || cmd.name)) &&
!results.triggers.some(r => r.command === (cmd.main || cmd.name)) &&
!results.tags.some(r => r.command === (cmd.main || cmd.name)) &&
!results.userTypes.some(r => r.command === (cmd.main || cmd.name))) {
results.descriptions.push({
command: cmd.main || cmd.name,
section: section.name,
sectionColor: section.color,
description: cmd.description,
type: 'description'
});
}
});
});
return results;
}
function displaySearchResults(results, query) {
const searchResults = document.getElementById('search-results');
searchResults.innerHTML = '';
const allResults = [...results.commands, ...results.triggers, ...results.tags, ...results.userTypes, ...results.descriptions];
if (allResults.length === 0) {
const noResults = document.createElement('div');
noResults.className = 'search-no-results';
noResults.textContent = 'No commands found matching "' + query + '"';
searchResults.appendChild(noResults);
} else {
allResults.forEach(result => {
const resultItem = document.createElement('div');
resultItem.className = 'search-result-item';
const commandSpan = document.createElement('div');
commandSpan.className = 'search-result-command';
commandSpan.textContent = result.command;
resultItem.appendChild(commandSpan);
if (result.type === 'trigger') {
const triggerSpan = document.createElement('div');
triggerSpan.className = 'search-result-trigger';
triggerSpan.textContent = 'Trigger: ' + result.trigger;
resultItem.appendChild(triggerSpan);
}
if (result.type === 'tag') {
const tagSpan = document.createElement('div');
tagSpan.className = 'search-result-tag';
tagSpan.textContent = 'Tag: ' + result.tag;
resultItem.appendChild(tagSpan);
}
if (result.type === 'userType') {
const userTypeSpan = document.createElement('div');
userTypeSpan.className = 'search-result-usertype';
userTypeSpan.textContent = 'User Type: ' + result.userType;
resultItem.appendChild(userTypeSpan);
}
const descSpan = document.createElement('div');
descSpan.className = 'search-result-description';
descSpan.textContent = result.description || 'No description';
resultItem.appendChild(descSpan);
const sectionSpan = document.createElement('div');
sectionSpan.className = 'search-result-section';
sectionSpan.textContent = result.section;
sectionSpan.style.color = result.sectionColor;
resultItem.appendChild(sectionSpan);
resultItem.addEventListener('click', function() {
// Scroll to the command in the main list
const commandElements = document.querySelectorAll('.command .main');
for (let elem of commandElements) {
if (elem.textContent.toLowerCase() === result.command.toLowerCase()) {
elem.scrollIntoView({ behavior: 'smooth', block: 'center' });
// Add a temporary highlight
elem.style.background = 'rgba(0, 255, 0, 0.2)';
setTimeout(() => {
elem.style.background = '';
}, 2000);
break;
}
}
searchResults.style.display = 'none';
document.getElementById('command-search').value = '';
});
searchResults.appendChild(resultItem);
});
}
searchResults.style.display = allResults.length > 0 ? 'block' : 'none';
}
// Initialize search when DOM is ready
document.addEventListener('DOMContentLoaded', function() {
// Wait for commands to load before initializing search
setTimeout(initializeSearch, 100);
});