mirror of https://github.com/nealey/vail.git
Lots of debugging on startup
This commit is contained in:
parent
f8b5cf22af
commit
2380c28584
|
@ -42,6 +42,37 @@
|
|||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="modal is-active init">
|
||||
<div class="modal-background"></div>
|
||||
<div class="modal-content">
|
||||
<div class="message">
|
||||
<div class="message-header">
|
||||
Initializing...
|
||||
</div>
|
||||
<div class="message-body content">
|
||||
<p>
|
||||
If you can read this,
|
||||
it could mean
|
||||
your browser has disabled JavaScript,
|
||||
a browser extension is interfering with JavaScript,
|
||||
or your browser is too old to run Vail.
|
||||
</p>
|
||||
<p>
|
||||
Please post a screen shot in a new
|
||||
<a href="https://github.com/nealey/vail/discussions">Vail Discussions</a>
|
||||
thread,
|
||||
or in our
|
||||
<a href="https://discord.gg/GBzj8cBat7">Discord instance</a>,
|
||||
so we can help you out!
|
||||
</p>
|
||||
<ul>
|
||||
<li>Starting JavaScript application...</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<section class="section">
|
||||
<div class="columns is-multiline">
|
||||
<div class="column">
|
||||
|
|
|
@ -16,6 +16,21 @@ const globalAudioContext = new AudioContext({
|
|||
latencyHint: "interactive",
|
||||
})
|
||||
|
||||
function initLog(message) {
|
||||
for (let modal of document.querySelectorAll(".modal.init")) {
|
||||
if (!message) {
|
||||
modal.remove()
|
||||
} else {
|
||||
let ul = modal.querySelector("ul")
|
||||
while (ul.childNodes.length > 5) {
|
||||
ul.firstChild.remove()
|
||||
}
|
||||
let li = ul.appendChild(document.createElement("li"))
|
||||
li.textContent = message
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Pop up a message, using an notification.
|
||||
*
|
||||
|
@ -44,34 +59,34 @@ class VailClient {
|
|||
this.rxDelay = 0 * time.Millisecond // Time to add to incoming timestamps
|
||||
this.beginTxTime = null // Time when we began transmitting
|
||||
|
||||
// Outputs
|
||||
initLog("Initializing outputs")
|
||||
this.outputs = new Outputs.Collection(globalAudioContext)
|
||||
this.outputs.connect(globalAudioContext.destination)
|
||||
|
||||
// Noise
|
||||
initLog("Starting up noise")
|
||||
this.noise = new Noise.Noise(globalAudioContext)
|
||||
this.noise.connect(globalAudioContext.destination)
|
||||
|
||||
// App icon
|
||||
initLog("Setting app icon name")
|
||||
this.icon = new Icon.Icon()
|
||||
|
||||
// Keyers
|
||||
initLog("Initializing keyers")
|
||||
this.straightKeyer = new Keyers.Keyers.straight(this)
|
||||
this.keyer = new Keyers.Keyers.straight(this)
|
||||
this.roboKeyer = new Keyers.Keyers.robo(() => this.Buzz(), () => this.Silence())
|
||||
|
||||
// Set up various input methods
|
||||
// Send this as the keyer so we can intercept dit and dah events for charts
|
||||
initLog("Setting up input methods")
|
||||
this.inputs = new Inputs.Collection(this)
|
||||
|
||||
// If the user clicks anything, try immediately to resume the audio context
|
||||
initLog("Listening on AudioContext")
|
||||
document.body.addEventListener(
|
||||
"click",
|
||||
e => globalAudioContext.resume(),
|
||||
true,
|
||||
)
|
||||
|
||||
// Maximize button
|
||||
initLog('Setting up maximize button')
|
||||
for (let e of document.querySelectorAll("button.maximize")) {
|
||||
e.addEventListener("click", e => this.maximize(e))
|
||||
}
|
||||
|
@ -79,7 +94,7 @@ class VailClient {
|
|||
e.addEventListener("click", e => this.reset())
|
||||
}
|
||||
|
||||
// Set up inputs
|
||||
initLog("Initializing knobs")
|
||||
this.inputInit("#keyer-mode", e => this.setKeyer(e.target.value))
|
||||
this.inputInit("#keyer-rate", e => {
|
||||
let rate = e.target.value
|
||||
|
@ -122,14 +137,15 @@ class VailClient {
|
|||
})
|
||||
this.inputInit("#notes")
|
||||
|
||||
// Fill in the name of our repeater
|
||||
initLog("Filling in repeater name")
|
||||
document.querySelector("#repeater").addEventListener("change", e => this.setRepeater(e.target.value.trim()))
|
||||
window.addEventListener("hashchange", () => this.hashchange())
|
||||
this.hashchange()
|
||||
|
||||
initLog("Starting timing charts")
|
||||
this.setTimingCharts(true)
|
||||
|
||||
// Turn off the "muted" symbol when we can start making noise
|
||||
initLog("Setting up mute icon")
|
||||
globalAudioContext.resume()
|
||||
.then(() => {
|
||||
for (let e of document.querySelectorAll(".muted")) {
|
||||
|
@ -483,17 +499,23 @@ class VailClient {
|
|||
}
|
||||
}
|
||||
|
||||
function init() {
|
||||
async function init() {
|
||||
initLog("Starting service worker")
|
||||
if (navigator.serviceWorker) {
|
||||
navigator.serviceWorker.register("scripts/sw.js")
|
||||
}
|
||||
I18n.Setup()
|
||||
|
||||
initLog("Setting up internationalization")
|
||||
await I18n.Setup()
|
||||
|
||||
initLog("Creating client")
|
||||
try {
|
||||
window.app = new VailClient()
|
||||
} catch (err) {
|
||||
console.log(err)
|
||||
toast(err)
|
||||
}
|
||||
initLog(false)
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue