UNPKG

rds-spinner

Version:

A Cordova plugin for showing a progress indicator based on Paldom/SpinnerDialog

42 lines (35 loc) 2.06 kB
// cordova-plugin-spinnerdialog // Copyright © 2015 filfat Studios AB // Repo: https://github.com/filfat-Studios-AB/cordova-plugin-spinnerdialog /* global Windows, cordova */ var progressIndicator; cordova.commandProxy.add("SpinnerDialog",{ show: function (successCallback, errorCallback, data) { if (typeof Windows !== 'undefined' && typeof Windows.UI !== 'undefined' /* Check that we have a UI to work with */ && typeof Windows.UI.ViewManagement.StatusBar !== 'undefined' /* Check that we have the StatusBar to work with*/) { var data = data[0] || { title: undefined }; progressIndicator = Windows.UI.ViewManagement.StatusBar.ProgressIndicator || Windows.UI.ViewManagement.StatusBar.getForCurrentView().progressIndicator; if (data.title == null) data.title = undefined; progressIndicator.text = typeof data.title !== 'undefined' ? data.title : 'Loading...'; progressIndicator.showAsync(); Windows.UI.ViewManagement.StatusBar.getForCurrentView().showAsync(); } else if (typeof Windows !== 'undefined' && typeof Windows.UI !== 'undefined' /* Check that we have a UI to work with */) { //TODO: Support Desktop, Xbox, etc } }, hide: function (successCallback, errorCallback, data) { if (typeof Windows !== 'undefined' && typeof Windows.UI !== 'undefined' /* Check that we have a UI to work with */ && typeof Windows.UI.ViewManagement.StatusBar !== 'undefined' /* Check that we have the StatusBar to work with*/) { progressIndicator.hideAsync(); Windows.UI.ViewManagement.StatusBar.getForCurrentView().hideAsync(); //TODO } else if (typeof Windows !== 'undefined' && typeof Windows.UI !== 'undefined' /* Check that we have a UI to work with */) { //TODO: Support Desktop, Xbox, etc } } });