I am working on an app for the windows store using HTML/CSS/JS and the WinJS framework.
My app needs to load configuration data on startup, either over the network if online or locally if not.
My problem is that ideally the app should just display the splash screen with a progress control, until the data has been loaded. But I no clue where to put my loading code to accomplish that.
I could do something like this:
(function () {
"use strict";
WinJS.Binding.optimizeBindingReferences = true;
var app = WinJS.Application;
var activation = Windows.ApplicationModel.Activation;
var nav = WinJS.Navigation;
function loadConfig() {
return WinJS.xhr({ url: myURL }).then(
function (xhr) {
// parse response stuff
},
function (xhr) {
// do error handling stuff
}
);
}
function initializeUI(args) {
// The generated code for setting up the navigation controller, but moved to a seperate function
args.setPromise(WinJS.UI.processAll().then(function () {
if (nav.location) {
nav.history.current.initialPlaceholder = true;
return nav.navigate(nav.location, nav.state);
} else {
return nav.navigate(Application.navigator.home);
}
}));
}
app.onactivated = function (args) {
if (args.detail.kind === activation.ActivationKind.launch) {
if (args.detail.previousExecutionState !== activation.ApplicationExecutionState.terminated) {
loadConfig().then(
function () {
initializeUI(args);
}
);
}
if (app.sessionState.history) {
nav.history = app.sessionState.history;
}
if ( config ) // check if configuration exists to prevent calling this twice
initializeUI(args)
}
};
app.start();
})();
But that would display my "default.html" page until the data is loaded, so I'd have to use my splash image in "default.html" and insert a progress control.
That doesn't feel like the correct solution for my problem?