qlik
v4.0.5
Published
A collection of helpful utilities for using the Qlik Capability APIs
Downloads
220
Maintainers
Readme
qlik
This module facilitates easy integration between Qlik Sense Enterprise/Cloud and web applications by leveraging the Qlik Capability API. Developers can seamlessly connect to multiple Qlik Sense applications and interact with the Qlik Sense API using the utilities provided in this package. Qlik helper for more details & other API's
This module provides a set of utilities to streamline the interaction between your web applications and the Qlik Sense API.
Table of Contents
- Qlik
- Features
- Installation
- Configuration
- Usage
- Advanced Usage
- API Documentation
- Example
- Contributing
- License
Features
- Simplifies connection to Qlik Sense environments
- Facilitates communication with multiple Qlik Sense applications
- Interacts with various Qlik Sense API endpoints
- Enhances development experience with Qlik Sense integrations
Installation
To install the Qlik Capability API Wrapper, use npm:
$ npm install qlik
Or with yarn:
$ yarn add qlik
Configuration
Create a configuration object with the following properties:
host
(string): The hostname of your Qlik Sense instance.port
(string | number): The port number to connect to Qlik Sense.prefix
(string): The prefix for the Qlik Sense resources (default: /).isSecure
(boolean): Whether to use HTTPS (default: true).ticket
(string, optional): Ticket for authentication.webIntegrationId
(string, optional): Web integration ID for Qlik Sense SaaS.
Example configuration:
const config = {
host: "your-qlik-sense-host",
port: 443,
prefix: "/",
isSecure: true,
ticket: "your-ticket",
webIntegrationId: "your-web-integration-id",
};
Usage
Initialization
Import and initialize the Qlik module with your configuration:
import Qlik from "qlik";
const qlik = new Qlik(config);
Authentication
Authenticate to Qlik Sense:
qlik
.authenticateToQlik()
.then(() => console.log("Authenticated to Qlik Sense"))
.catch((error) => console.error("Authentication failed", error));
Fetch User Information
Fetch authenticated user information:
qlik
.setAuthUser()
.then(() => {
console.log("User information set", qlik.user);
})
.catch((error) => console.error("Failed to fetch user information", error));
Fetch Data
Get List of Spaces:
qlik
.getSpaceList()
.then((spaces) => console.log("Spaces:", spaces))
.catch((error) => console.error("Failed to fetch spaces", error));
Get List of Users:
qlik
.getUserList()
.then((users) => console.log("Users:", users))
.catch((error) => console.error("Failed to fetch users", error));
Get List of Apps:
qlik
.getAppList()
.then((apps) => console.log("Apps:", apps))
.catch((error) => console.error("Failed to fetch apps", error));
Get List of Themes:
qlik
.getThemeList()
.then((themes) => console.log("Themes:", themes))
.catch((error) => console.error("Failed to fetch themes", error));
Advanced Usage
Open an App and Fetch Data
async function fetchAppData(appId: string) {
try {
const app = await qlik.isAppOpen(appId);
const sheets = await qlik.getSheet(app);
const measures = await qlik.getMeasure(app);
const fields = await qlik.getFields(app);
const variables = await qlik.getVariable(app);
const bookmarks = await qlik.getBookmark(app);
console.log("Sheets:", sheets);
console.log("Measures:", measures);
console.log("Fields:", fields);
console.log("Variables:", variables);
console.log("Bookmarks:", bookmarks);
} catch (error) {
console.error("Failed to fetch app data", error);
}
}
fetchAppData("your-app-id");
API Documentation
Qlik Class
Constructor
new Qlik(config: IConfig)
remove this link aswell
Fetch the list of spaces.
getSpaceList(): Promise<any[]>
Fetch the list of users.
getUserList(): Promise<any[]>
Fetch the list of apps.
getAppList(): Promise<any[]>
Fetch the list of themes.
getThemeList(): Promise<any[]>
Fetch the list of documents.
getDocs(): Promise<IApp[]>
Fetch a list of objects from an app.
getList(app: IApp, type: ListTypes): Promise<any>
app
(Qlik app instance): Qlik app instance.type
(Type of objects to fetch): Type of objects to fetch.
Fetch measures from an app.
getMeasure(app: IApp): Promise<any>
Fetch variables from an app.
getVariable(app: IApp): Promise<any>
Fetch fields from an app.
getFields(app: IApp): Promise<any>
Fetch bookmarks from an app.
getBookmark(app: IApp): Promise<any>
Evaluate an expression in an app.
evaluateExpression(app: IApp, title: any): Promise<any>
app
: Qlik app instance.title
: Expression to evaluate.
Fetch properties of an object in an app.
objectProper(app: IApp, model: any): Promise<any>
app
: Qlik app instance.model
: Object model.
Fetch titles of an object in an app.
getQlikObjectTitles(app: IApp, id: string): Promise<any>
app
: Qlik app instance.id
: Object ID.
Fetch sheets from an app.
getSheet(app: IApp): Promise<any>
Fetch a specific object from an app.
callObject(app: IApp, id: string): Promise<any>
app
: Qlik app instance.id
: Object ID.
Fetch data from an app.
getApp(id: string): Promise<any[]>
id
: App ID.
Example
Enterprise
To get started with a sample module for React with Qlik Enterprise, clone the example project from GitHub and start the project.
Steps:
- Clone the repository:
$ git clone https://github.com/ranvithm/qlik.git
- Navigate to the example project directory:
$ cd qlik/example/with-enterprise
- Install the dependencies:
$ npm install
- Start the project:
$ npm start
Before utilizing the Qlik Capability API Wrapper, it's necessary to create a virtual proxy in your Qlik Sense environment to configure the prefix and whitelist the host (localhost) and port (3000).
Explore the sample project here.
Cloud
To get started with a sample module for React with Qlik Cloud, clone the example project from GitHub and start the project.
Steps:
- Clone the repository:
$ git clone https://github.com/ranvithm/qlik.git
- Navigate to the example project directory:
cd qlik/example/with-cloud
- Install the dependencies:
$ npm install
- Start the project:
$ npm start
Before utilizing the Qlik Capability API Wrapper, it's necessary to create a web integration id in your Qlik Sense environment to configure and whitelist the host (localhost) and port (3000).
Explore the sample project here.
Contributing
This library is still under construction and we are looking for contributors. If you would like to contribute, please contact me: [email protected]