diff --git a/chat/ads/ad-coordinator-host.ts b/chat/ads/ad-coordinator-host.ts index 74faa05..65bfb3b 100644 --- a/chat/ads/ad-coordinator-host.ts +++ b/chat/ads/ad-coordinator-host.ts @@ -10,7 +10,7 @@ export class AdCoordinatorHost { static readonly MIN_DISTANCE = 5000; private lastPost = Date.now(); - async processAdRequest(event: IpcMainEvent, adId: string) { + async processAdRequest(event: IpcMainEvent, adId: string): Promise { await adCoordinatorThroat( async() => { const sinceLastPost = Date.now() - this.lastPost; diff --git a/electron/Index.vue b/electron/Index.vue index 0053baa..a89964a 100644 --- a/electron/Index.vue +++ b/electron/Index.vue @@ -3,9 +3,10 @@
-
+
Getting ready, please wait... + You should only experience this delay once per software update
@@ -113,6 +114,7 @@ import {defaultHost, GeneralSettings, nativeRequire} from './common'; import { fixLogs /*SettingsStore, Logs as FSLogs*/ } from './filesystem'; import * as SlimcatImporter from './importer'; + import Bluebird from 'bluebird'; // import Connection from '../fchat/connection'; // import Notifications from './notifications'; @@ -167,22 +169,40 @@ defaultCharacter?: number; l = l; settings!: GeneralSettings; + hasCompletedUpgrades!: boolean; importProgress = 0; profileName = ''; adName = ''; fixCharacters: ReadonlyArray = []; fixCharacter = ''; - showSpinner = true; + shouldShowSpinner = false; + + + async startAndUpgradeCache(): Promise { + const timer = setTimeout( + () => { + this.shouldShowSpinner = true; + }, + 250 + ); + + // tslint:disable-next-line no-floating-promises + await core.cache.start(this.settings, this.hasCompletedUpgrades); + + await Bluebird.delay(1000); + + clearTimeout(timer); + + parent.send('rising-upgrade-complete'); + + this.hasCompletedUpgrades = true; + } @Hook('created') async created(): Promise { - // tslint:disable-next-line no-floating-promises - await core.cache.start(this.settings); - - // await this.prepper; - this.showSpinner = false; + await this.startAndUpgradeCache(); if(this.settings.account.length > 0) this.saveLogin = true; keyStore.getPassword(this.settings.account) @@ -384,7 +404,7 @@ .initializer { - position: absolute; + position: fixed; top: 0; left: 0; right: 0; @@ -392,9 +412,21 @@ display: flex; align-items: center; justify-content: center; - transition: all 0.25s; + opacity: 0; backdrop-filter: blur(3px) grayscale(35%); + &.shouldShow { + transition: all 0.25s; + + &.visible { + opacity: 1; + } + } + + &.complete { + pointer-events: none !important; + } + i { font-size: 130pt; top: 50%; @@ -406,12 +438,17 @@ .title { position: absolute; top: 0; - background: rgba(19, 19, 19, 0.6); + background: rgba(147, 255, 215, 0.6); width: 100%; text-align: center; padding-top: 20px; padding-bottom: 20px; font-weight: bold; + + small { + display: block; + opacity: 0.8; + } } } diff --git a/electron/Window.vue b/electron/Window.vue index 2c10540..1e4d766 100644 --- a/electron/Window.vue +++ b/electron/Window.vue @@ -1,5 +1,5 @@