JS refactor and new contact page
All checks were successful
Deploy / deploy (push) Successful in 9s

This commit is contained in:
elijah 2024-11-04 15:42:18 +01:00
parent d6960d0980
commit 2746f73cff
3 changed files with 263 additions and 198 deletions

View File

@ -5,7 +5,6 @@
--text-bright: #cef0f0;
--glow-color: rgba(42, 90, 90, 0.6);
}
@keyframes pulse {
0% {
box-shadow: 0 0 5px var(--glow-color);
@ -20,7 +19,6 @@
opacity: 0.5;
}
}
@keyframes slideInBorder {
0% {
width: 0;
@ -31,7 +29,6 @@
opacity: 1;
}
}
html {
scroll-snap-type: y mandatory;
scroll-behavior: smooth;
@ -40,7 +37,6 @@ html {
-ms-user-select: none;
user-select: none;
}
body {
background: var(--bg-color);
color: var(--text-bright);
@ -51,7 +47,6 @@ body {
position: relative;
overflow-x: hidden;
}
body::before {
content: "";
position: fixed;
@ -69,14 +64,12 @@ body::before {
pointer-events: none;
z-index: 1000;
}
.terminal {
margin-left: 80px;
padding: 20px;
max-width: 800px;
position: relative;
}
.terminal::before {
content: "";
position: absolute;
@ -89,7 +82,6 @@ body::before {
opacity: 0.5;
clip-path: polygon(0 2%, 98% 0, 100% 98%, 2% 100%);
}
.sidebar {
position: fixed;
left: 0;
@ -106,7 +98,6 @@ body::before {
box-shadow: 1px 0 15px var(--glow-color);
clip-path: polygon(0 0, 90% 0, 100% 2%, 100% 98%, 90% 100%, 0 100%);
}
.nav-icon {
color: var(--text-muted);
cursor: pointer;
@ -117,12 +108,10 @@ body::before {
flex-direction: column;
align-items: center;
}
.nav-icon .icon {
font-size: 24px;
transition: color 0.3s ease;
}
.nav-icon .nav-label {
position: absolute;
top: 100%;
@ -138,35 +127,28 @@ body::before {
pointer-events: none;
color: var(--text-muted);
}
.nav-icon.active .nav-label {
opacity: 1;
transform: translateX(-50%) translateY(0);
color: var(--text-muted);
}
.nav-icon:hover .nav-label {
opacity: 1;
transform: translateX(-50%) translateY(0);
}
.nav-icon:hover .icon {
color: var(--text-bright);
}
.nav-icon.active .icon {
color: var(--text-bright);
}
.nav-icon.active {
color: var(--text-bright);
position: relative;
}
.nav-icon:hover {
color: var(--text-bright);
}
.section {
height: 100vh;
padding: 20px 0;
@ -175,12 +157,10 @@ body::before {
position: relative;
overflow-y: auto;
}
#contact {
height: auto;
min-height: 100vh;
}
.section-title {
color: var(--text-muted);
margin-bottom: 20px;
@ -190,7 +170,6 @@ body::before {
position: relative;
padding-left: 20px;
}
.section-title::before {
content: "◈";
position: absolute;
@ -200,14 +179,12 @@ body::before {
text-shadow: 0 0 10px var(--glow-color);
background: none;
}
.header {
border-bottom: none;
padding-bottom: 10px;
margin-bottom: 20px;
position: relative;
}
.header::after {
content: "";
position: absolute;
@ -225,24 +202,20 @@ body::before {
pulse 2s infinite,
slideInBorder 1s ease-out;
}
.timestamp {
font-size: 0.9em;
color: var(--text-muted);
font-family: "Courier New", monospace;
line-height: 1;
}
.location {
margin-top: 4px;
color: var(--text-muted);
padding-bottom: 5px;
}
.entry-list {
margin-top: 10px;
}
.nested-entries {
margin-left: 20px;
margin-top: 5px;
@ -250,7 +223,6 @@ body::before {
padding-left: 15px;
position: relative;
}
.nested-entries::before {
content: "";
position: absolute;
@ -261,31 +233,26 @@ body::before {
background: var(--border-color);
box-shadow: 0 0 8px var(--glow-color);
}
.entry {
margin: 10px 0;
padding-left: 20px;
position: relative;
}
.entry::before {
content: "▹";
position: absolute;
left: 0;
margin-right: 10px;
}
.entry-link {
color: inherit;
text-decoration: none;
transition: all 0.3s ease;
position: relative;
}
.entry-link:hover {
color: var(--text-bright);
}
.entry-link::after {
content: "";
position: absolute;
@ -306,12 +273,10 @@ body::before {
box-shadow: 0 0 8px var(--glow-color);
opacity: 0.8;
}
.entry-link:hover::after {
transform: scaleX(1);
transform-origin: left;
}
.project-item,
.status-item {
border: 1px solid var(--border-color);
@ -349,7 +314,6 @@ body::before {
border-left: 3px solid rgba(42, 90, 90, 0.6);
border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.project-item:hover,
.status-item:hover {
border-color: var(--text-bright);
@ -361,35 +325,29 @@ body::before {
transform: translateY(-2px) translateZ(10px);
animation: pulse 2s infinite;
}
.project-header {
display: flex;
justify-content: space-between;
align-items: center;
}
.project-header .entry::before {
content: "◈";
color: var(--text-muted);
text-shadow: 0 0 5px var(--glow-color);
transition: all 0.3s ease;
}
.project-item:hover .project-header .entry::before {
color: var(--text-bright);
text-shadow: 0 0 10px var(--glow-color);
transform: rotate(45deg);
}
.expand-icon {
color: var(--text-muted);
transition: transform 0.3s ease;
}
.project-item.expanded .expand-icon {
transform: rotate(45deg);
}
.project-content {
max-height: 0;
overflow: hidden;
@ -401,13 +359,11 @@ body::before {
opacity: 0;
transform: translateY(-10px);
}
.project-content.expanded {
max-height: 500px;
opacity: 1;
transform: translateY(0);
}
.project-link {
display: inline-block;
color: var(--text-bright);
@ -422,17 +378,14 @@ body::before {
position: relative;
overflow: hidden;
}
.project-link:hover {
border-color: var(--text-bright);
background: rgba(42, 90, 90, 0.1);
}
.status-grid {
display: grid;
gap: 15px;
}
.status-indicator {
display: inline-block;
width: 8px;
@ -440,22 +393,18 @@ body::before {
border-radius: 50%;
margin-right: 10px;
}
.status-online {
background-color: #4caf50;
box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}
.status-offline {
background-color: #f44336;
box-shadow: 0 0 10px rgba(244, 67, 54, 0.3);
}
.status-warning {
background-color: #ff9800;
box-shadow: 0 0 10px rgba(255, 152, 0, 0.3);
}
.status-details {
max-height: 0;
overflow: hidden;
@ -467,20 +416,17 @@ body::before {
opacity: 0;
transform: translateY(-10px);
}
.status-details.expanded {
max-height: 500px;
opacity: 1;
transform: translateY(0);
}
.contact-links {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 20px;
}
.contact-link {
border: 1px solid var(--border-color);
padding: 15px;
@ -517,7 +463,6 @@ body::before {
border-left: 3px solid rgba(42, 90, 90, 0.6);
border-top: 2px solid rgba(255, 255, 255, 0.15);
}
.contact-link:hover {
border-color: var(--text-bright);
background: rgba(42, 90, 90, 0.1);
@ -528,53 +473,43 @@ body::before {
transform: translateY(-2px) translateZ(10px);
animation: pulse 2s infinite;
}
.contact-icon {
margin-right: 15px;
font-size: 24px;
}
@media (max-width: 768px) {
.terminal {
margin-left: 60px;
padding: 15px;
}
.sidebar {
width: 60px;
}
.nav-icon {
font-size: 20px;
}
.project-item,
.contact-link,
.status-item {
padding: 10px;
}
}
@media (max-width: 480px) {
.terminal {
margin-left: 50px;
padding: 10px;
}
.sidebar {
width: 50px;
}
.nav-icon {
font-size: 18px;
margin: 15px 0;
}
.section-title {
font-size: 1em;
}
}
.status-average {
font-size: 0.9em;
color: var(--text-muted);
@ -582,7 +517,6 @@ body::before {
margin-top: 4px;
color: var(--text-muted);
}
.header-metrics {
display: flex;
align-items: baseline;
@ -592,7 +526,133 @@ body::before {
font-family: "Courier New", monospace;
line-height: 1;
}
.separator {
color: var(--border-color);
}
.contact-grid {
display: grid;
gap: 20px;
margin-top: 20px;
}
.contact-card {
background: linear-gradient(
135deg,
rgba(42, 90, 90, 0.05) 0%,
rgba(42, 90, 90, 0.1) 100%
);
border: 1px solid var(--border-color);
clip-path: polygon(
0 0,
95% 0,
100% 20px,
100% 100%,
5% 100%,
0 calc(100% - 20px)
);
}
.contact-header {
padding: 15px;
border-bottom: 1px solid var(--border-color);
display: flex;
justify-content: space-between;
align-items: center;
}
.contact-type {
color: var(--text-bright);
font-size: 0.9em;
}
.connection-status {
display: flex;
align-items: center;
font-size: 0.8em;
color: var(--text-muted);
}
.status-dot {
width: 6px;
height: 6px;
background: var(--text-bright);
border-radius: 50%;
margin-right: 8px;
box-shadow: 0 0 8px var(--glow-color);
animation: pulse 2s infinite;
}
.contact-content {
padding: 15px;
}
.contact-method {
display: flex;
align-items: center;
padding: 12px;
margin: 8px 0;
text-decoration: none;
color: var(--text-muted);
border: 1px solid transparent;
background: rgba(42, 90, 90, 0.1);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}
.contact-method:hover {
color: var(--text-bright);
border-color: var(--border-color);
background: rgba(42, 90, 90, 0.2);
transform: translateX(5px);
}
.contact-method::before {
content: "";
position: absolute;
left: 0;
top: 0;
width: 2px;
height: 100%;
background: var(--text-bright);
box-shadow: 0 0 10px var(--glow-color);
opacity: 0;
transition: opacity 0.3s ease;
}
.contact-method:hover::before {
opacity: 1;
}
.method-icon {
font-size: 1.2em;
margin-right: 15px;
color: var(--text-bright);
}
.method-details {
flex: 1;
display: flex;
flex-direction: column;
}
.method-name {
font-size: 0.9em;
margin-bottom: 4px;
}
.method-address {
font-size: 0.8em;
color: var(--text-muted);
}
.connection-indicator {
margin-left: 10px;
transition: transform 0.3s ease;
}
.contact-method:hover .connection-indicator {
transform: translateX(5px);
}
@media (max-width: 768px) {
.contact-grid {
gap: 15px;
}
.contact-method {
padding: 10px;
}
}
@media (max-width: 480px) {
.contact-header {
flex-direction: column;
align-items: flex-start;
gap: 8px;
}
.method-details {
font-size: 0.9em;
}
}

View File

@ -1,8 +1,21 @@
// this is slop. i know. i'm sorry.
// atleast i'm not a reactfag.
// animation speeds (ms)
const TYPING_SPEED = 180;
const ERASE_SPEED = 100;
const STATUS_UPDATE_INTERVAL = 60000; // 1min
const TIME_UPDATE_INTERVAL = 1; // 1ms (still terrible)
// we add some fancy text typing animation blah blah blah
// it is quite overcomplicated. i have no hobbies
// status thresholds
const LATENCY_WARNING_THRESHOLD = 500000;
// mapping for group names because i'm lazy
const GROUP_NAMES = {
4: "INFRASTRUCTURE",
5: "SERVICES",
6: "API",
};
// fancy text typing animation for nav labels
// overcomplicated as fuck but whatever
function writeoutnavlabel(label) {
if (label.getAttribute("data-animating") === "true") return;
@ -26,18 +39,17 @@ function writeoutnavlabel(label) {
icon.hoverAnimationDone = true;
}
}
}, 180);
}, TYPING_SPEED);
label.setAttribute("data-animation-interval", animationInterval);
}
// erase animation for nav labels
// also terrible but consistent with the above
function eraselabel(label) {
if (label.getAttribute("data-animating") === "true") {
// clear the existing interval
const existingInterval = label.getAttribute("data-animation-interval");
if (existingInterval) {
clearInterval(existingInterval);
}
if (existingInterval) clearInterval(existingInterval);
}
label.setAttribute("data-animating", "true");
@ -51,13 +63,13 @@ function eraselabel(label) {
label.setAttribute("data-animating", "false");
label.style.opacity = "0";
}
}, 100);
}, ERASE_SPEED);
// store the interval so we can clear it if needed
// this is a terrible way to do this like horrible
label.setAttribute("data-animation-interval", eraseInterval);
}
// time display updater
// still updates way too frequently but whatever
function updateTime() {
const now = new Date();
const timeString = now
@ -75,13 +87,9 @@ function updateTime() {
document.getElementById("current-time").textContent = timeString;
}
updateTime();
// this is a terrible way to update the time
setInterval(updateTime, 1);
// status helper functions
function calculateAverageUptime(services) {
if (!services || services.length === 0) return 0;
// did i ever mention that i hate math?
const totalUptime = services.reduce(
(sum, service) => sum + service.online_24_hours,
0,
@ -89,28 +97,6 @@ function calculateAverageUptime(services) {
return (totalUptime / services.length).toFixed(2);
}
// projects
const projectItems = document.querySelectorAll(".project-item");
projectItems.forEach((item) => {
item.addEventListener("click", function () {
const content = this.querySelector(".project-content");
const icon = this.querySelector(".expand-icon");
// close other expanded items
projectItems.forEach((otherItem) => {
if (otherItem !== item) {
otherItem
.querySelector(".project-content")
.classList.remove("expanded");
otherItem.querySelector(".expand-icon").textContent = "+";
}
});
content.classList.toggle("expanded");
icon.textContent = content.classList.contains("expanded") ? "" : "+";
});
});
// status updater
function formatLatency(latency) {
return (Math.round((latency / 1000) * 10) / 10).toFixed(1);
}
@ -121,20 +107,16 @@ function formatUptime(uptime) {
function getStatusClass(service) {
if (!service.online) return "status-offline";
if (service.latency > 500000) return "status-warning";
if (service.latency > LATENCY_WARNING_THRESHOLD) return "status-warning";
return "status-online";
}
// not sure if this is the best way to do this
function getGroupName(groupId) {
const groupNames = {
4: "INFRASTRUCTURE",
5: "SERVICES",
6: "API",
};
return groupNames[groupId] || `GROUP ${groupId}`;
return GROUP_NAMES[groupId] || `GROUP ${groupId}`;
}
// populate status page first
// creates the HTML for the status page
// groups services by their group_id
function createStatusHTML(services) {
const groups = services.reduce((acc, service) => {
const groupId = service.group_id;
@ -172,7 +154,7 @@ function createStatusHTML(services) {
.join("");
}
// status page func
// main status update function
function updateStatus() {
const statusContainer = document.getElementById("status-container");
const averageUptimeElement = document.getElementById("average-uptime");
@ -194,7 +176,9 @@ function updateStatus() {
.catch((error) => {
statusContainer.innerHTML = `
<div class="error-message">
UNABLE TO FETCH STATUS DATA
a(42, 90, 90, 0.3), 0 0 40px rgba(42, 90, 90, 0.2); } to { text-shadow: 0 0 40px rgba(42, 90, 90, 0.5), 0 0 80px rgba(42, 90, 90, 0.3); } }"
);
}); UNABLE TO FETCH STATUS DATA
<div style="font-size: 0.8em; margin-top: 5px;">
${error.message}
</div>
@ -204,20 +188,28 @@ function updateStatus() {
});
}
// initial update
updateStatus();
// status details toggle
document.querySelectorAll(".status-item .entry").forEach((item) => {
const details = item.nextElementSibling;
if (details && details.classList.contains("status-details")) {
// project expansion handlers
document.querySelectorAll(".project-item").forEach((item) => {
item.addEventListener("click", function () {
details.classList.toggle("expanded");
});
const content = this.querySelector(".project-content");
const icon = this.querySelector(".expand-icon");
// close other expanded items
document.querySelectorAll(".project-item").forEach((otherItem) => {
if (otherItem !== item) {
otherItem
.querySelector(".project-content")
.classList.remove("expanded");
otherItem.querySelector(".expand-icon").textContent = "+";
}
});
// navigation
content.classList.toggle("expanded");
icon.textContent = content.classList.contains("expanded") ? "" : "+";
});
});
// smooth scroll navigation
document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
anchor.addEventListener("click", function (e) {
e.preventDefault();
@ -227,7 +219,7 @@ document.querySelectorAll('a[href^="#"]').forEach((anchor) => {
});
});
// update active nav icon
// active nav icon updater
window.addEventListener("scroll", () => {
let current = "";
document.querySelectorAll("section").forEach((section) => {
@ -245,7 +237,6 @@ window.addEventListener("scroll", () => {
if (isCurrentSection) {
if (!wasActive) {
icon.classList.add("active");
// complete instantly
if (icon.isAnimating) {
const text = label.getAttribute("data-text") || label.textContent;
label.textContent = text;
@ -254,7 +245,6 @@ window.addEventListener("scroll", () => {
parseInt(label.getAttribute("data-animation-interval")),
);
}
// only start if not currently animating
if (!icon.hoverAnimationDone) {
writeoutnavlabel(label);
}
@ -271,6 +261,7 @@ window.addEventListener("scroll", () => {
});
});
// nav icon hover animations
document.querySelectorAll(".nav-icon").forEach((icon) => {
icon.hoverAnimationDone = false;
icon.isAnimating = false;
@ -292,36 +283,39 @@ document.querySelectorAll(".nav-icon").forEach((icon) => {
}
});
icon.addEventListener("click", (e) => {
icon.addEventListener("click", () => {
const label = icon.querySelector(".nav-label");
// continue if already active
// prevent mouseleave from erasing label
if (icon.isAnimating) {
icon.hoverAnimationDone = true;
}
// if no animation, start one
else if (!icon.hoverAnimationDone) {
} else if (!icon.hoverAnimationDone) {
writeoutnavlabel(label);
icon.isAnimating = true;
icon.hoverAnimationDone = true;
}
label.style.opacity = "1";
});
});
// dom (196 reference) content event listener
// initialization
document.addEventListener("DOMContentLoaded", () => {
// write out active nav icon label instantly
// start time updates
updateTime();
setInterval(updateTime, TIME_UPDATE_INTERVAL);
// start status updates
updateStatus();
setInterval(updateStatus, STATUS_UPDATE_INTERVAL);
// init active nav icon
const activeNavIcon = document.querySelector(".nav-icon.active");
if (activeNavIcon) {
const label = activeNavIcon.querySelector(".nav-label");
if (label) writeoutnavlabel(label);
}
// fancy console log
// fancy console log because why not
console.log(
"%cELIA.NETWORK",
"color: #2a5a5a; font-size: 24px; font-weight: bold; text-shadow: 2px 2px 4px rgba(42, 90, 90, 0.4), 4px 4px 8px rgba(42, 90, 90, 0.2), 6px 6px 12px rgba(42, 90, 90, 0.1), 0 0 20px rgba(42, 90, 90, 0.3); transform: perspective(1000px) rotateX(20deg) rotateY(-10deg) translateZ(50px); animation: console3d 8s infinite cubic-bezier(0.4, 0, 0.2, 1), glow 2s infinite alternate; @keyframes console3d { 0% { transform: perspective(1000px) rotateX(20deg) rotateY(-10deg) translateZ(50px); } 25% { transform: perspective(1000px) rotateX(-15deg) rotateY(15deg) translateZ(75px); } 50% { transform: perspective(1000px) rotateX(10deg) rotateY(20deg) translateZ(100px); } 75% { transform: perspective(1000px) rotateX(-20deg) rotateY(-15deg) translateZ(75px); } 100% { transform: perspective(1000px) rotateX(20deg) rotateY(-10deg) translateZ(50px); } } @keyframes glow { from { text-shadow: 0 0 20px rgba(42, 90, 90, 0.3), 0 0 40px rgba(42, 90, 90, 0.2); } to { text-shadow: 0 0 40px rgba(42, 90, 90, 0.5), 0 0 80px rgba(42, 90, 90, 0.3); } }",
"color: #2a5a5a; font-size: 24px; font-weight: bold; text-shadow: 2px 2px 4px rgba(42, 90, 90, 0.3);",
);
});

View File

@ -202,41 +202,52 @@
<section id="contact" class="section">
<div class="section-title">CONTACT</div>
<div class="contact-links">
<div class="project-item">
<div class="project-header">
<div class="entry">E-Mail</div>
<span class="expand-icon">+</span>
<div class="contact-grid">
<div class="contact-card">
<div class="contact-header">
<div class="contact-type">NETWORK</div>
<div class="connection-status">
<span class="status-dot"></span>
EMAIL
</div>
<div class="project-content">
<div class="project-links">
<a
href="mailto:alerts@elia.network"
class="project-link"
>⎔ ALERTS →</a
>
<a
href="mailto:noc@elia.network"
class="project-link"
>⎔ NOC →</a
>
</div>
<div class="contact-content">
<a href="mailto:alerts@elia.network" class="contact-method">
<span class="method-icon"></span>
<span class="method-details">
<span class="method-name">ALERTS</span>
<span class="method-address">alerts@elia.network</span>
</span>
<span class="connection-indicator"></span>
</a>
<a href="mailto:noc@elia.network" class="contact-method">
<span class="method-icon"></span>
<span class="method-details">
<span class="method-name">NOC</span>
<span class="method-address">noc@elia.network</span>
</span>
<span class="connection-indicator"></span>
</a>
</div>
</div>
<div class="project-item">
<div class="project-header">
<div class="entry">TELEGRAM</div>
<span class="expand-icon">+</span>
<div class="contact-card">
<div class="contact-header">
<div class="contact-type">DIRECT</div>
<div class="connection-status">
<span class="status-dot"></span>
INSTANT MESSAGING
</div>
<div class="project-content">
<div class="project-links">
<a
href="https://t.me/beslikmeister"
class="project-link"
>⎔ T.ME →</a
>
</div>
<div class="contact-content">
<a href="https://t.me/beslikmeister" class="contact-method">
<span class="method-icon"></span>
<span class="method-details">
<span class="method-name">TELEGRAM</span>
<span class="method-address">@beslikmeister</span>
</span>
<span class="connection-indicator"></span>
</a>
</div>
</div>
</div>