-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
392 lines (364 loc) · 13.6 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
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
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
<!doctype html>
<html>
<head>
<title>Awesome Erlang list</title>
<meta name="title" content="Awesome Erlang List">
<meta name="description" content="An Awesome Erlang List containing references and resources for all curious developers.">
<meta name="keywords" content="erlang, awesome, list, projects, publications, books, resources, references">
<meta name="robots" content="index, follow">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta name="language" content="English">
<meta name="author" content="Mathieu Kerjouan">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/spectre.min.css">
<!-- <link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-exp.min.css"> -->
<!-- <link rel="stylesheet" href="https://unpkg.com/spectre.css/dist/spectre-icons.min.css"> -->
<style>
a {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
.fg-white:visited {
text-color: white;
}
.bg-neutral-500 {
background-color: #737373;
}
.m-0 {
margin: 0;
}
.mx-1 {
margin-left: 0.25rem;
margin-right: 0.25rem;
}
.mx-2 {
margin-left: 0.5rem;
margin-right: 0.5rem;
}
.p-0 {
padding: 0;
}
.p-1 {
padding: 0.25rem;
}
.px-1 {
padding-left: 0.25rem;
padding-right: 0.25rem;
}
.py-1 {
padding-top: 0.25rem;
padding-bottom: 0.25rem;
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
}
.pr-2 {
padding-right: 0.5rem;
}
.inline {
display: inline;
}
</style>
</head>
<body>
<noscript>
Oh no, you either have JavaScript turned off or your
browser doesn't support JavaScript. You can have access to the
data by using these links:
<ul>
<li>/api/projects.json</li>
<li>/api/books.json</li>
<li>/api/authors.json</li>
<li>/api/publications.json</li>
</ul>
</noscript>
<div id="application" class="container" style="max-width: 1280px;"></div>
<footer class="container" style="max-width: 1280px;">
<hr>
<p class="text-center text-tiny">
Copyright © 2024 |
Made with ♡ by the <a href="https://erlangpunch.com">ErlangPunch</a> project.
</p>
</footer>
<script src="https://unpkg.com/[email protected]/mithril.js"></script>
<!-- <script src="https://unpkg.com/mithril/stream/stream.js"></script> -->
<script>
var Api = {
projects: {
list: [],
github: { counter: 0},
gitlab: {counter: 0},
fetch: async function() {
m.request({
method: "GET",
url: "/api/projects.json"
})
.then(async (data) => {
Api.projects.list = await data.map((item) => {
if (item.provider === "github") {
Api.projects.github.counter += 1;
}
if (item.provider === "gitlab") {
Api.projects.gitlab.counter += 1;
}
return project_tile(item);
})
})
}
},
books: {
list: [],
fetch: function() {
m.request({
method: "GET",
url: "/api/books.json"
})
.then(function(data) {
Api.projects.list = data
})
}
},
publications: {
list: [],
fetch: async function() {
m.request({
method: "GET",
url: "/api/publications.json"
})
.then(async function(data) {
Api.publications.list = data.map((item) => {
return publication_tile(item);
})
})
}
}
}
// Returns CSS class for active header
function header_link(name, target) {
var active_link = "p-1 bg-secondary text-primary text-large";
var passive_link = "p-1 text-large";
var css_class = name === target ? active_link : passive_link ;
return m(m.route.Link, {class: css_class, href: "/" + name}, name);
}
var Header = {
view: function(vnode) {
var name = vnode.children[0];
var description = vnode.children[1];
return [
m("header", {class: "bg-gray columns"}, [
m("div", {class: "m-2 p-2 column col-auto col-2 text-large", style: "width: 3rem; height: 3rem;"}, [
m("img", {class: "img-responsive img-fit-contain p-centered", src: "https://erlangpunch.com/assets/images/erlang-punch.png"}, [])
]),
m("div", {class: "column col p-0"}, [
m(m.route.Link, {class: "p-1 text-bold", href: "/home"}, "Awesome Erlang List"),
m("div", {class: ""}, [
header_link("projects", name),
header_link("books", name),
header_link("publications", name),
header_link("authors", name),
header_link("about", name),
]),
m("div", {class: "p-1 bg-secondary text-primary text-small"}, description)
])
])
];
}
}
function project_tile_github(item) {
return m("div", {class: "py-2 tile"}, [
m("div", {class: "tile-content"}, [
m("div", {class: "d-inline-flex title-title"}, [
m("div", {class: "text-large"}, [
m("a", {class: "text-bold", href: item.repository}, item.name),
m("a", {href: item.repository + "/stargazers"}, [
m("span", {class: "chip text-tiny bg-primary mx-2"}, [
item.stars, " \u{2B50}"
])
])
])
]),
m("div", {class: "px-2"}, [
m("div", {class: "tile-subtitle text-normal"}, [item.description]),
m("div", {class: "text-tiny"}, [
m("a", {href: item.repository + "/watchers"}, [
m("span", {class: "chip bg-secondary"}, [
item.watchers + " watchers"
])
]),
m("span", {class: "chip bg-secondary"}, item.size + " kB"),
m("a", {href: item.repository + "/issues"}, [
m("span", {class: "chip bg-secondary"}, [
item.open_issues + " open issues"
])
]),
m("a", {href: item.repository + "/forks"}, [
m("span", {class: "chip bg-secondary"}, [
item.forks + " forks"
])
]),
m("span", item.labels.map(label => {
return m("a", {href: item.repository + "/topics/cozo"}, [
m("span", {class:"chip"}, [
label
])
]);
}))
])
])
])
])
}
function project_tile_gitlab(item) {
return m("div", {class: "py-2 tile"}, [
m("div", {class: "tile-content"}, [
m("div", {class: "d-inline-flex title-title"}, [
m("div", {class: "text-large"}, [
m("a", {class: "text-bold", href: item.repository}, item.name),
m("a", {href: item.repository + "/-/starrers"}, [
m("span", {class: "chip text-tiny bg-primary mx-2"}, [
item.stars, " \u{2B50}"
])
])
])
]),
m("div", {class: "px-2"}, [
m("div", {class: "tile-subtitle text-normal"}, [item.description]),
m("div", {class: "text-tiny"}, [
m("a", {href: item.repository + "/-/issues"}, [
m("span", {class: "chip bg-secondary"}, [
item.open_issues + " open issues"
])
]),
m("a", {href: item.repository + "/-/forks"}, [
m("span", {class: "chip bg-secondary"},[
item.forks + " forks"
])
]),
m("span", item.labels.map(label => {
return m("span", {class:"chip"}, [
label
]);
}))
])
])
])
])
}
function project_tile(item) {
if (item.provider === "github") {
return project_tile_github(item);
}
else {
return project_tile_gitlab(item);
}
}
function publication_tile(item) {
return m("div", {class: "py-2 tile"}, [
m("div", {class: "tile-content"}, [
m("div", {class: "d-inline-flex title-title"}, [
m("div", {class: "text-large"}, [
m("a", {class: "text-bold", href: item.url}, item.title),
" (", item.date, ")"
])
])
])
])
}
var Projects = {
oninit: Api.projects.fetch,
view: function(vnode) {
return [
m(Header, "projects", [
"A list of",
" (", Api.projects.list.length, ") ",
"Awesome Erlang Open-source Projects. ",
Api.projects.github.counter, " projects are hosted on github. ",
Api.projects.gitlab.counter, " projects are hosted on gitlab."
]),
m("main", [
Api.projects.list
])
]}
}
var Books = {
oninit: Api.books.fetch,
view: function(vnode) {
return [
m(Header, "books", "A list of Awesome Erlang Books."),
m("main", [
])
];
}
}
var Publications = {
oninit: Api.publications.fetch,
view: function(vnode) {
return [
m(Header, "publications", [
"A list of",
" (", Api.publications.list.length, ") ",
"Awesome Erlang Academic Publications.",
]),
m("main", [
Api.publications.list
])
];
}
}
var Resources = {
view: function(vnode) {
return [
m(Header, "resources", "A list of Awesome Erlang Resources."),
m("main", [
])
];
}
}
var Authors = {
view: function(vnode) {
return [
m(Header, "authors", "A list of Awesome Erlang Authors."),
m("main", [
])
];
}
}
var About = {
view: function(vnode) {
return [
m(Header, "about", "About Awesome Erlang List project..."),
m("main", {class: "text-justify"}, [
m("p", [
"It started as a simple list update, and it's becoming a full mapping of Erlang projects. ",
"One of the goal is to offer an accurate view of everything related to Erlang, from projects ",
"books, documentations to academic publications and trainings."
]),
m("p", [
"This static website is currently a way to experiment how to sort all information. ",
"Please be aware it will change often."
])
])
];
}
}
var root = document.getElementById("application");
m.route(root, "/", {
"/": Projects,
"/projects": Projects,
"/books": Books,
"/publications": Publications,
"/resources": Resources,
"/authors": Authors,
"/about": About
});
</script>
</body>
</html>