25 lines
1.1 KiB
JavaScript
25 lines
1.1 KiB
JavaScript
'use strict';
|
|
|
|
function initializeUserProfilePage() {
|
|
const profileDropdownDiv = document.getElementsByClassName("profile-dropdown")[0];
|
|
if (profileDropdownDiv) {
|
|
const currentUser = userData();
|
|
if (currentUser && (currentUser.username === profileDropdownDiv.dataset.username)) {
|
|
profileDropdownDiv.hidden = true;
|
|
}
|
|
else {
|
|
profileDropdownDiv.hidden = false;
|
|
const userProfileDropdownButton = document.getElementById('user-profile-dropdown');
|
|
if (userProfileDropdownButton) {
|
|
const userProfileDropdownMenu = document.getElementById('user-profile-dropdownmenu');
|
|
userProfileDropdownButton.addEventListener('click', () => {
|
|
userProfileDropdownMenu.classList.toggle('showing');
|
|
|
|
// Add actual link location (SEO doesn't like these "useless" links, so adding in here instead of in HTML)
|
|
var reportAbuseLink = profileDropdownDiv.querySelector('.report-abuse-link-wrapper');
|
|
reportAbuseLink.innerHTML = `<a href="${reportAbuseLink.dataset.path}" class="crayons-link crayons-link--block">Report Abuse</a>`
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|