update lots of reader fixes

This commit is contained in:
2026-07-23 00:15:21 -07:00
parent 88aaab2e00
commit c6b95e23c7
10 changed files with 510 additions and 150 deletions
+8 -1
View File
@@ -44,6 +44,7 @@ const tarotSectionEl = document.getElementById("tarot-section");
const tarotFrameSectionEl = document.getElementById("tarot-frame-section");
const tarotHouseSectionEl = document.getElementById("tarot-house-section");
const astronomySectionEl = document.getElementById("astronomy-section");
const skySectionEl = document.getElementById("sky-section");
const natalSectionEl = document.getElementById("natal-section");
const planetSectionEl = document.getElementById("planet-section");
const cyclesSectionEl = document.getElementById("cycles-section");
@@ -96,6 +97,7 @@ const openNumbersEl = document.getElementById("open-numbers");
const openNumbersBrowseEl = document.getElementById("open-numbers-browse");
const openNumbersTheoryEl = document.getElementById("open-numbers-theory");
const openZodiacEl = document.getElementById("open-zodiac");
const openSkyEl = document.getElementById("open-sky");
const openNatalEl = document.getElementById("open-natal");
const openQuizEl = document.getElementById("open-quiz");
const openGodsEl = document.getElementById("open-gods");
@@ -104,6 +106,7 @@ const latEl = document.getElementById("lat");
const lngEl = document.getElementById("lng");
const nowSkyLayerEl = document.getElementById("now-sky-layer");
const nowPanelEl = document.getElementById("now-panel");
const homeWelcomeEl = document.getElementById("home-welcome");
const nowOverlayToggleEl = document.getElementById("now-overlay-toggle");
const connectionGateEl = document.getElementById("connection-gate");
const connectionGateBaseUrlEl = document.getElementById("connection-gate-base-url");
@@ -281,7 +284,7 @@ appRuntime.init?.({
calendarVisualsUi,
homeUi,
hasTarotAccess: () => hasTarotFeatureAccess(),
shouldPollNow: () => (sectionStateUi.getActiveSection?.() || "home") === "home" && document.hidden !== true,
shouldPollNow: () => (sectionStateUi.getActiveSection?.() || "home") === "sky" && document.hidden !== true,
nowPollIntervalMs: 5 * 60 * 1000,
onStatus: (text) => setStatus(text),
services: {
@@ -554,6 +557,7 @@ sectionStateUi.init?.({
calendarEl,
monthStripEl,
nowPanelEl,
homeWelcomeEl,
settingsSectionEl,
timelineSectionEl,
calendarSectionEl,
@@ -564,6 +568,7 @@ sectionStateUi.init?.({
tarotFrameSectionEl,
tarotHouseSectionEl,
astronomySectionEl,
skySectionEl,
natalSectionEl,
planetSectionEl,
cyclesSectionEl,
@@ -615,6 +620,7 @@ sectionStateUi.init?.({
openNumbersBrowseEl,
openNumbersTheoryEl,
openZodiacEl,
openSkyEl,
openNatalEl,
openQuizEl,
openGodsEl,
@@ -739,6 +745,7 @@ navigationUi.init?.({
openNumbersBrowseEl,
openNumbersTheoryEl,
openZodiacEl,
openSkyEl,
openNatalEl,
openQuizEl,
openGodsEl,