* init * profile header * merge * two headers * centerd * link fix * remove comments * whoops * Fix specs Co-authored-by: rhymes <rhymes@hey.com>
35 lines
1.2 KiB
JavaScript
35 lines
1.2 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('block');
|
|
|
|
// 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>`;
|
|
});
|
|
}
|
|
}
|
|
}
|
|
}
|