@bobfrankston/rmfmail 1.2.190 → 1.2.192
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/TODO.md +8 -8
- package/client/android-bootstrap.bundle.js +10 -2
- package/client/android-bootstrap.bundle.js.map +2 -2
- package/client/app.bundle.js +12 -2
- package/client/app.bundle.js.map +2 -2
- package/client/app.js +18 -0
- package/client/app.js.map +1 -1
- package/client/app.ts +15 -0
- package/client/components/calendar-sidebar.js +6 -2
- package/client/components/calendar-sidebar.js.map +1 -1
- package/client/components/calendar-sidebar.ts +6 -2
- package/client/components/calendar.js +4 -1
- package/client/components/calendar.js.map +1 -1
- package/client/components/calendar.ts +3 -1
- package/client/package.json +1 -1
- package/package.json +3 -3
- package/packages/mailx-service/google-sync.d.ts.map +1 -1
- package/packages/mailx-service/google-sync.js +20 -3
- package/packages/mailx-service/google-sync.js.map +1 -1
- package/packages/mailx-service/google-sync.ts +21 -3
- package/packages/mailx-service/package.json +1 -1
- package/packages/mailx-store-web/android-bootstrap.d.ts.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.js +24 -2
- package/packages/mailx-store-web/android-bootstrap.js.map +1 -1
- package/packages/mailx-store-web/android-bootstrap.ts +25 -2
- package/packages/mailx-store-web/package.json +1 -1
- /package/packages/mailx-imap/{node_modules.npmglobalize-stash-12376 → node_modules.npmglobalize-stash-48056}/.package-lock.json +0 -0
package/client/app.js
CHANGED
|
@@ -3266,6 +3266,24 @@ onWsEvent((event) => {
|
|
|
3266
3266
|
case "connectProgress":
|
|
3267
3267
|
handleConnectProgress(event);
|
|
3268
3268
|
break;
|
|
3269
|
+
case "bootstrapStatus": {
|
|
3270
|
+
// C156: Android first-boot narration ("Signing into <email>…",
|
|
3271
|
+
// "Fetching settings from Google Drive…"). Rendered in the status
|
|
3272
|
+
// bar, the pre-UI startup banner, AND the folder tree's loading
|
|
3273
|
+
// slot — the tree is the big empty thing a fresh install stares
|
|
3274
|
+
// at, so that's where the progress needs to be.
|
|
3275
|
+
const msg = String(event.message || "");
|
|
3276
|
+
if (msg) {
|
|
3277
|
+
if (statusSync)
|
|
3278
|
+
statusSync.textContent = msg;
|
|
3279
|
+
if (startupStatus)
|
|
3280
|
+
startupStatus.textContent = msg;
|
|
3281
|
+
const slot = document.querySelector(".folder-loading");
|
|
3282
|
+
if (slot)
|
|
3283
|
+
slot.textContent = msg;
|
|
3284
|
+
}
|
|
3285
|
+
break;
|
|
3286
|
+
}
|
|
3269
3287
|
case "syncProgress": {
|
|
3270
3288
|
// Aggregate folders phases ("folders:<path>" when starting a folder,
|
|
3271
3289
|
// "folders-done" between folders) print as a proportion so the user
|