atlas/web/_js/about.js
2024-01-12 18:43:55 +07:00

42 lines
1.5 KiB
JavaScript
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*!
* The 2022 r/place Atlas
* Copyright (c) 2017 Roland Rytz <roland@draemm.li>
* Copyright (c) 2022 Place Atlas Initiative and contributors
* Licensed under AGPL-3.0 (https://2022.place-atlas.stefanocoding.me/license.txt)
*/
const contributorsEl = document.querySelector('#entry-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].localeCompare(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))
// punctuation space ^
} else {
userEl.href = 'https://reddit.com/user/' + contributor
userEl.textContent = contributor
}
userEl.target = '_blank'
userEl.rel = 'noreferrer'
contributorsEl.appendChild(userEl)
contributorsEl.appendChild(document.createTextNode(' '))
}
})