cordova-sdk
Cordova plugin for integrating Queue-it's virtual waiting room into Cordova/Ionic apps.
Sample app
A sample app project to try out functionality of the library can be found in the example directory.
Installation
Before starting please download the whitepaper Mobile App Integration from the Go Queue-it Platform. This whitepaper contains the needed information to perform
a successful integration.
You can install this plugin in the following ways:
- Using the Github repository:
cordova plugin add https://github.com/queueit/cordova-sdk.git
cordova plugin add @queue-it/cordova-sdk
This plugin adds a new Android Activity so you might need to add it to your manifest.
<activity android:name="com.queue_it.androidsdk.QueueActivity"/>
Usage
To protect parts of your application you'll need to make a QueueIt.run
call and wait for it's result in a callback.
The callback is called with different states as you can see in the example:
function enqueue(){
var customerId = "myCustomerId";
var waitingRoomIdOrAlias = "waitingRoom";
var layoutName = null;
var language = null;
var clearCache = false;
QueueIt.run(customerId, waitingRoomId, layoutName, language, clearCache, function(result){
console.log("QueueIt run result", JSON.stringify(result));
if(result.Error){
console.warn("Errored out: " + result.Message);
return;
}
switch (result.State){
case "Passed":
console.log("User got his turn with token: " + result.QueueITToken);
break;
case "Disabled":
console.log("Waiting room is disabled");
break;
case "Unavailable":
console.log("Waiting room is not available");
break;
case "ViewWillOpen":
console.log("Waiting room WebView is being opened");
break;
case "CloseClicked":
console.log("User clicked on a `queueit://close` link, so webview was closed")
break;
}
})
}
As the App developer you must manage the state (whether user was previously queued up or not) inside your app's storage.
After you get the callback call with State: Passed
, the app must remember this, possibly with a date/time expiration.
When the user goes to another page/screen - you check his state,
and only call run in the case where the user was not previously queued up.
When the user clicks back, the same check needs to be done.
License
MIT