mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-05 23:29:43 +01:00
39 lines
No EOL
1.4 KiB
JavaScript
39 lines
No EOL
1.4 KiB
JavaScript
/*!
|
|
* The 2022 r/place Atlas
|
|
* Copyright (c) 2017 Roland Rytz <roland@draemm.li>
|
|
* Copyright (c) 2022 Place Atlas contributors
|
|
* Licensed under AGPL-3.0 (https://place-atlas.stefanocoding.me/license.txt)
|
|
*/
|
|
|
|
const contributorsEl = document.querySelector('#contributors-wrapper')
|
|
|
|
// <i aria-label="GitHub" class="bi bi-github"></i>
|
|
const gitHubEl = document.createElement("i")
|
|
gitHubEl.ariaLabel = "GitHub:"
|
|
gitHubEl.className = "bi bi-github"
|
|
|
|
fetch('all-authors.txt')
|
|
.then(response => response.text())
|
|
.then(text => text.trim().split('\n').sort((a, b) => {
|
|
const aSplit = a.split(':')
|
|
const bSplit = b.split(':')
|
|
return aSplit[aSplit.length - 1] > bSplit[bSplit.length - 1]
|
|
}))
|
|
.then(contributors => {
|
|
document.querySelector('#contributors-count').textContent = contributors.length
|
|
for (const contributor of contributors) {
|
|
const userEl = document.createElement('a')
|
|
const contributorSplit = contributor.split(':')
|
|
if (contributorSplit[0] === "gh") {
|
|
const contributor1 = contributorSplit[1]
|
|
userEl.href = 'https://github.com/' + contributor1
|
|
userEl.appendChild(gitHubEl.cloneNode())
|
|
userEl.appendChild(document.createTextNode(' ' + contributor1))
|
|
} else {
|
|
userEl.href = 'https://reddit.com/user/' + contributor
|
|
userEl.textContent = contributor
|
|
}
|
|
contributorsEl.appendChild(userEl)
|
|
contributorsEl.appendChild(document.createTextNode(' '))
|
|
}
|
|
}) |