6 Commits

Author SHA1 Message Date
YouHaveTrouble bc0e866956 bump version 2025-12-20 18:44:58 +01:00
YouHaveTrouble 6beca6a8ea don't render invisible nodes if possible 2025-12-20 18:34:24 +01:00
YouHaveTrouble fe8e7eb098 display time left to node expiry on active nodes 2025-12-20 18:30:40 +01:00
YouHaveTrouble 98008ca288 update depends 2025-12-20 17:58:13 +01:00
YouHaveTrouble 1db76089bc try a bit older vite 2025-04-23 22:52:57 +02:00
YouHaveTrouble 001a8bab3b Revert "update vite"
This reverts commit 56b053fc7f.
2025-04-23 22:51:13 +02:00
5 changed files with 773 additions and 382 deletions
+701 -372
View File
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -1,6 +1,6 @@
{
"name": "discipleofland",
"version": "0.0.10",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
@@ -20,7 +20,7 @@
"@vue/eslint-config-typescript": "^12.0.0",
"eslint": "^8.51.0",
"eslint-plugin-vue": "^9.17.0",
"vite": "6.2.6",
"vite": "^5.4.18",
"vue-eslint-parser": "^9.3.2",
"vite-plugin-eslint": "^1.8.1"
},
+32 -5
View File
@@ -2,12 +2,28 @@
<article
class="node"
:class="{active: gatheringNode.isActive(eorzeaTime)}"
>
<div
v-if="!gatheringNode.isActive(eorzeaTime)"
>
<div class="timer">
{{
gatheringNode.isActive(eorzeaTime) ? 'Active' : prettyTimer(gatheringNode.getSecondsToNextActiveTime(eorzeaTime))
prettyTimer(gatheringNode.getSecondsToNextActiveTime(eorzeaTime))
}}
</div>
</div>
<div
v-else
>
<div class="timer">
Active
<div class="countdown">
{{
prettyTimer(gatheringNode.getSecondsToNextInactiveTime(eorzeaTime))
}}
</div>
</div>
</div>
<div class="job">
<div class="icon">
<img
@@ -29,7 +45,9 @@
<div class="info">
<span>{{ zones[gatheringNode.nearestAetheryte.position.zone]?.name?.en }}</span>
<span>{{ gatheringNode.nearestAetheryte.name.en }}</span>
<span>{{ gatheringNode.nearestAetheryte.position.x.toFixed(1) }}, {{ gatheringNode.nearestAetheryte.position.y.toFixed(1) }}</span>
<span>{{
gatheringNode.nearestAetheryte.position.x.toFixed(1)
}}, {{ gatheringNode.nearestAetheryte.position.y.toFixed(1) }}</span>
</div>
</div>
<div class="items">
@@ -78,9 +96,15 @@ export default defineComponent({
<style scoped lang="scss">
@keyframes pulsing {
0% {background-color: rgba(255,255,255, 0.05);}
50% {background-color: rgba(255,255,255, 0.075);}
100% {background-color: rgba(255,255,255, 0.05);}
0% {
background-color: rgba(255, 255, 255, 0.05);
}
50% {
background-color: rgba(255, 255, 255, 0.075);
}
100% {
background-color: rgba(255, 255, 255, 0.05);
}
}
.node {
@@ -93,6 +117,7 @@ export default defineComponent({
border: 1px solid #fff;
padding: 0.5rem;
border-radius: 0.25rem;
content-visibility: auto;
&.active {
animation: infinite pulsing 6s;
@@ -102,6 +127,8 @@ export default defineComponent({
min-width: 7rem;
font-size: 2rem;
display: flex;
height: 100%;
flex-direction: column;
justify-content: center;
align-items: center;
}
+22
View File
@@ -47,6 +47,15 @@ export default class Node {
return countdown;
}
getCountdownToInactive(eorzeaTime: EorzeaTime): number {
let countdown: number = Infinity;
for (const timeRange of this.times) {
const endTimeFrame: number = timeRange.getEndTimeFrame(eorzeaTime);
if (endTimeFrame < countdown) countdown = endTimeFrame;
}
return countdown;
}
getNextActiveTime(eorzeaTime: EorzeaTime): EorzeaTime {
let countdownTimeStamp: number = Infinity;
for (const timeRange of this.times) {
@@ -56,8 +65,21 @@ export default class Node {
return EorzeaTime.fromEorzeaTime(new Date(this.getCountdownToActive(eorzeaTime)));
}
getNextInactiveTime(eorzeaTime: EorzeaTime): EorzeaTime {
let countdownTimeStamp: number = Infinity;
for (const timeRange of this.times) {
const endTimeFrame: number = timeRange.getEndTimeFrame(eorzeaTime);
if (endTimeFrame < countdownTimeStamp) countdownTimeStamp = endTimeFrame;
}
return EorzeaTime.fromEorzeaTime(new Date(this.getCountdownToInactive(eorzeaTime)));
}
getSecondsToNextActiveTime(eorzeaTime: EorzeaTime): number {
return Math.floor((this.getNextActiveTime(eorzeaTime).realDate.getTime() - eorzeaTime.realDate.getTime()) / 1000);
}
getSecondsToNextInactiveTime(eorzeaTime: EorzeaTime): number {
return Math.floor((this.getNextInactiveTime(eorzeaTime).realDate.getTime() - eorzeaTime.realDate.getTime()) / 1000);
}
}
+13
View File
@@ -29,4 +29,17 @@ export default class TimeRange {
return targetDate.getTime();
}
/**
* Returns the timestamp when the current time range will end
* @param eorzeaTimeFrom
*/
public getEndTimeFrame(eorzeaTimeFrom: EorzeaTime): number {
const targetDate = new Date(eorzeaTimeFrom.eorzeaDate.getTime());
targetDate.setUTCHours(this.to[0], 0, 0, 0);
if (eorzeaTimeFrom.getHours() >= this.to[0]) {
targetDate.setUTCHours(this.to[0] + 24);
}
return targetDate.getTime();
}
}