-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
236 lines (200 loc) · 6.56 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset='UTF-8'>
<title>Incremental Games Discord Servers</title>
<style>
:root {
--fg: #dcddde;
--bg: #36393f;
--hilite: hsl(227, 58%, 65%);
--hilite-dark: hsl(227, 58%, 44%);
--hilite-light: hsl(227, 58%, 74%);
--shadow: hsl(220, 8%, 11%);
}
body {
background: var(--bg);
color: var(--fg);
font-family: sans-serif;
margin: 15px;
}
h1 {
margin: 10px 0px 10px 0px;
font-size: 1.5em;
}
a {
background: var(--hilite);
color: var(--hilite-dark);
text-decoration: none;
font-weight: 600;
}
a:hover {
background: var(--hilite-light);
}
#listContainer {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
grid-gap: 10px;
margin-top: 10px;
}
.subLink {
color: var(--fg);
}
.subLink:hover {
filter: brightness(1.07);
}
.subContainer {
display: grid;
grid-template-columns: 100px auto;
grid-template-rows: 15px auto;
grid-template-areas:
". name"
"img desc";
align-items: center;
padding: 10px 10px 10px 0px;
background: var(--hilite);
border-radius: 5px;
box-shadow: 2px 2px 2px 0px hsl(220, 8%, 11%);
height: 120px;
overflow: hidden;
}
.subImg {
width: 64px;
height: 64px;
grid-area: img;
justify-self: center;
align-self: center;
border-radius: 5px;
}
.subName {
grid-area: name;
}
.subDesc {
grid-area: desc;
overflow: hidden;
max-height: 100%;
}
</style>
</head>
<body>
<h1 id='h1Title'></h1>
<div class='infoDiv'>To get your server on this list, visit <span id='spanParent'></span> and provide
your subreddit name.</div>
<div class='infoDiv'>Subreddit owners, set icon_img or community_icon to enable an image and set public_description to enable text.</div>
<div id='listContainer'></div>
<script>
//To make your own server list just update pageTitle, parentLink, and subList
const pageTitle = "Incremental Game Subreddits";
const parentLink = "<a href='https://discord.gg/pC9RY5B'>the r/incremental_games discord server</a>";
//A list of reddit subs
let subList = [
['forgeandfortune'],
['dldtg'],
['adventurecapitalist'],
['antimatterdimensions'],
['bitburner'],
['civclicker'],
['clickerheroes'],
['lostidols'],
['crushcrush'],
['cryptogrounds'],
['factoryidlegame'],
['groundhoglife'],
['idleaccelerator'],
['idleraiders'],
['idlesword'],
['idlesword2'],
['idletd'],
['learntofly'],
['perfecttower'],
['pickcrafter'],
['pokeidle'],
['prosperitygame'],
['reactoridle'],
['reactorincremental'],
['realmgrinder'],
['slurpyderpy'],
['spacecompany'],
['spaceplan'],
['swarmsim'],
['taptapinfinity'],
['timeclickers'],
['trimps'],
['warclicks'],
['zombidle'],
['pokeclicker'],
['airapport'],
['cityidle'],
['power_inc']
];
//convert html elements into characters. i.e. "<" => "<"
function decodeHtml(html) {
var txt = document.createElement("textarea");
txt.innerHTML = html;
return txt.value;
}
function loadSub(subName, subDiv, subURL) {
const url = `https://www.reddit.com/r/${subName}/about.json`;
//create placeholder for image
const img = document.createElement('img');
img.classList.add('subImg');
img.style.display = 'none';
subDiv.appendChild(img);
//create sub name link using placeholder text
const nameDiv = document.createElement('div');
nameDiv.classList.add('subName');
const nameLink = document.createElement('a');
nameLink.href = subURL;
nameLink.innerText = `r/${subName}`;
nameDiv.appendChild(nameLink);
subDiv.appendChild(nameDiv);
//create placeholder description div
const descDiv = document.createElement('div');
descDiv.classList.add('subDesc');
subDiv.appendChild(descDiv);
fetch(url , {mode: 'cors'}).then(response => response.json()).then(
data => {
//this is a list of possible image properties in the order we prefer them
const imgList = ['icon_img', 'community_icon']; //, 'banner_background_image', 'banner_img', 'header_img'];
//load best image available
imgList.some( prop => {
if (data.data[prop]) {
img.src = data.data[prop].split`?`[0];
img.style.display = 'block';
return true;
}
return false;
});
nameLink.innerText = `r/${data.data.display_name}`;
descDiv.innerHTML = decodeHtml(data.data.public_description_html);
}
).catch( error => {
console.log(error, subName);
});
}
function buildPage(pageTitle, parentLink, subList) {
//sort the list by sub name.
const subSort = (a, b) => {
return a[0].toLowerCase() > b[0].toLowerCase() ? 1 : -1;
};
subList.sort( subSort );
document.title = pageTitle;
document.getElementById('h1Title').innerText = pageTitle;
document.getElementById('spanParent').innerHTML = parentLink;
const eContainer = document.getElementById('listContainer');
subList.forEach( subName => {
const subLink = document.createElement('a');
subLink.classList.add('subLink');
const subURL = `https://reddit.com/r/${subName}`;
subLink.href = subURL;
const subDiv = document.createElement('div');
subDiv.classList.add('subContainer');
subLink.appendChild(subDiv);
loadSub(subName, subDiv, subURL);
eContainer.appendChild(subLink);
});
}
buildPage(pageTitle, parentLink, subList);
</script>
</body>
</html>