1.0.5 • Published 6 years ago

playground-js-api v1.0.5

Weekly downloads
13
License
ISC
Repository
github
Last release
6 years ago

Qlik Playground JavaScript API

A JavaScript API for use when connecting to the Qlik Playground

##Installation

npm install playground-js-api

##Usage

<link rel="stylesheet" href="/node_modules/playground-js-api/dist/playground-ui.min.css" media="screen" title="no title" charset="utf-8">
<script type="text/javascript" src="/node_modules/playground-js-api/dist/playground-js-api.min.js"></script>
<script type="text/javascript" src="/node_modules/playground-js-api/dist/playground-ui.min.js"></script>

Loading the JavaScript files will create a new global object called Playground.

##API The main API consists of the following methods - ###authenticate() The Authenticate method is a promise that accepts the following parameters -

  • config - contains all of the information require to authenticate and create a connection
  • connectionMethod (optional) - determines the behaviour of the authentication workflow

####Authentication for qSocks

var config = {...};
Playground.authenticate(config, "qsocks").then(function(ticket){

});

When using qSocks the promise returns a ticket which can then be added to your config object and used to create an authenticate connection to the Qlik Sense Engine.

var config = {...};
Playground.authenticate(config, "qsocks").then(function(ticket){
  config.ticket = ticket
  qsocks.ConnectOpenApp(config).then(function(result){
    //we're now connected
  });
});

####Authentication for the Qlik Sense Capability APIs In order to consume content from the Qlik Sense Capability APIs you first need to establish a valid Qlik Sense session. Calling Playground.authenticate() will automatically redirect the page in order to establish the session. If successful you will be redirected back to localhost:8000/main. This means that your project should have a separate page to initialize the authentication flow.

######Authentication Page

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title></title>
    <link rel="stylesheet" href="/node_modules/playground-js-api/dist/playground-ui.min.css" media="screen" title="no title" charset="utf-8">
  </head>
  <body>
    <script type="text/javascript" src="/node_modules/playground-js-api/dist/playground-js-api.min.js"></script>
    <script type="text/javascript" src="/node_modules/playground-js-api/dist/playground-ui.min.js"></script>
    <script type="text/javascript" src="/resources/script.js"></script>
    <script type="text/javascript">
      authenticate();
    </script>
  </body>
</html>

######Triggering authentication On page load of our authenticate.html we call the authenticate() function.

var config = {...};
function authenticate(){
  Playground.authenticate(config);
}

If authentication was successful we're redirected to the main.html page. To load the necessary resources for the Qlik Sense Capability APIs we also need to include script tags to load RequireJS library from the Qlik Playground instance. ######Main Page

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8"/>
    <title></title>
    <link rel="stylesheet" href="/node_modules/playground-js-api/dist/playground-ui.min.css" media="screen" title="no title" charset="utf-8">
  </head>
  <body>
    <script type="text/javascript" src="https://playground.qlik.com/playground/resources/assets/external/requirejs/require.js"></script>
    <script type="text/javascript" src="/node_modules/playground-js-api/dist/playground-js-api.min.js"></script>
    <script type="text/javascript" src="/node_modules/playground-js-api/dist/playground-ui.min.js"></script>
    <script type="text/javascript" src="/resources/script.js"></script>
    <script type="text/javascript">
      main();
    </script>
  </body>
</html>

######Connecting to the Qlik Sense Capability APIs

On page load of our main.html we call the main() function

var config = {...};
function authenticate(){
  Playground.authenticate(config);
}
function main(){
  require.config({
    baseUrl: ( config.isSecure ? "https://" : "http://" ) + config.host + (config.port ? ":" + config.port: "") + config.prefix + "resources",
  });

  require(['js/qlik'], function(qlik) {
    //we're now connected
  );
}

##UI Components The Qlik Playground JavaScript API also contains UI components which you can use to simplify development. ###Notifier A simple notification control to add visual cues during interactions with the API, for example, the authentication progress. ####Usage

<playground component="notifier" id='myNotifier' class="notifier-cover"></playground>

The notifier will listen for any messages sent to it by the Qlik Playground JavaScript API but it is also possible to deliver your own messages. ####Playground.notification.deliver() This method accepts the following parameters -

  • sentiment - defaults to 'info'. This will set the data-sentiment attribute on the control.
  • title - sets the main text on the notification.
  • message - sets the sub text on the notification.
  • duration (optional) - if set will close the notification after the specified number of milliseconds, otherwise the notification will be shown indefinitely
Playground.notification.deliver({
	title: "Please wait...",
	message: "Connecting"
});
1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.1.18

6 years ago

0.1.17

6 years ago

0.1.16

6 years ago

0.1.15

8 years ago

0.1.14

8 years ago

0.1.13

8 years ago

0.1.12

8 years ago

0.1.11

8 years ago

0.1.10

8 years ago

0.1.9

8 years ago

0.1.8

8 years ago

0.1.7

8 years ago

0.1.6

8 years ago

0.1.5

8 years ago

0.1.4

8 years ago

0.1.3

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago