forked from caracal-js/Incognito
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgs.js
147 lines (129 loc) · 5.19 KB
/
gs.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
async function gs(app) {
app.search.input.placeholder = 'Search library'
app.search.back.style.display = 'inline';
app.search.back.href = '#';
app.main.library = app.createElement('div', await compileGs(app), {
class: 'gs-library',
style: {}
});
app.main.emptySearch = app.createElement('div', [
app.createElement('p', 'No results found.'),
app.createElement('p', '<p>Want to suggest a game to be added? Reach out to any staff in our <a href="https://discord.gg/unblock">community</a>.</p>')
], {
class: 'gs-empty',
style: {
display: 'none'
}
});
app.main.player = app.createElement('div', [
app.createElement('iframe', [], {
class: 'gs-frame',
events: {
focus(event) {
event.target.contentWindow.focus();
}
},
attrs: {
tabindex: 1,
src: 'about:blank'
}
}),
app.createElement('p', [], {
class: 'author'
}),
app.createElement('div', [], {
class: 'description'
})
], {
class: 'gs-player',
style: {
display: 'none',
}
});
app.search.input.setAttribute(
'oninput',
'(' + (function() {
let count = 0;
app.main.library.querySelectorAll('.gs-entry').forEach(node => {
if (node.getAttribute('data-title').toLowerCase().includes(app.search.input.value.toLowerCase())) {
node.style.display = 'block';
count++;
} else {
node.style.display = 'none';
};
});
if (!count) {
app.main.library.style.display = 'none';
app.main.emptySearch.style.display = 'block';
} else {
app.main.library.style.removeProperty('display');
app.main.emptySearch.style.display = 'none';
};
}).toString() + ')()'
)
};
async function compileGs(app) {
const res = await fetch('./gs.json');
const json = await res.json();
const arr = [];
for (const entry of json) {
arr.push(
app.createElement('div', [], {
class: 'gs-entry',
style: {
background: `url(${entry.img})`,
'background-size': 'cover'
},
attrs: {
'data-title': entry.title
},
events: {
click(event) {
app.main.library.style.display = 'none';
app.main.player.style.display = 'block';
app.search.input.style.display = 'none';
app.search.title.style.display = 'block';
app.search.title.textContent = entry.title;
app.nav.fullscreen = app.createElement('button', 'fullscreen', {
class: 'submit',
style: {
'font-family': 'Material Icons',
'font-size': '30px',
color: 'var(--accent)',
background: 'none',
border: 'none',
cursor: 'pointer'
},
events: {
click() {
app.main.player.querySelector('iframe').requestFullscreen();
app.main.player.querySelector('iframe').contentWindow.focus();
}
}
});
app.main.player.querySelector('iframe').src = entry.location;
app.main.player.querySelector('.author').textContent = entry.author || '';
app.main.player.querySelector('.description').textContent = entry.description || '';
app.search.back.setAttribute(
'onclick',
'(' + (() => {
if (window.location.hash !== '#gs') return this.removeAttribute('onclick');
event.preventDefault();
app.main.library.style.removeProperty('display');
app.search.input.style.removeProperty('display');
app.search.title.style.display = 'none';
app.search.title.textContent = '';
app.main.player.style.display = 'none';
app.main.player.querySelector('iframe').src = 'about:blank';
delete app.nav.fullscreen;
this.removeAttribute('onclick');
}).toString() + ')()'
)
}
}
})
)
};
return arr;
};
export { gs };