npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@reaqtive/components

v0.0.0-beta.18

Published

A react library to speed up the development of Qlik mash ups and data visualization apps

Downloads

26

Readme

@reaqtive/components

This package helps creating guided analytics using Qlik APIs. It provides a set of reusable react components to speed up mash up developments. You can choose to use stand alone components and build your own navigation and routing functionalities or you can use RqtvApp and RqtvPage for built-in page navigation functionalities.

Installation

npm install @reaqtive/components

@reaqtive/q will be installed as well, since @reaqtive/components depends on it. @reaqtive/q will help you interact with Qlik engine and Qlik Capability APIs

PROVIDED FEATURES

FILTERS

RqtvButtonBar

RqtvButtonBar it is a paginated listbox shaped as a buttonbar It does not ask for selection confirmation, but just toggle the selection when a button is clicked

You can twek its behavuiour using props.

You can customize its styles using css or using props.

Example:

import React from 'react'
import {RqtvButtonBar} from '@reaqtive/components'

const MyRqtvButtonBar = props =>
<RqtvButtonBar
  qFieldExpr = "$Field"
/>

export default MyRqtvButtonBar

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- buttonSize | String | 'btn-sm' | :x: | The bootstrap class to apply large (btn-lg), standard (btn) or small (btn-sm) size to a button. buttonsClassName | String | '' | :x: | css classes applied to the buttons (it can be overwritten by selections color coding) buttonsStyle | Object | {} | :x: | style object to customize buttons style (it can be overwritten by selections color coding) goToFirstPageAfterSelection | Boolean | true | :x: | If true it resets pagination (back to first page) after a selection is made qDataPageHeight | Number | 5 | :x: | The number of records asked to the engine for each page qFieldExpr | String | | :white_check_mark: | The expression which will be used in the listbox. It can be a fieldname or a valid expression qSortObject | Shape | { qSortByState: 1, qSortByFrequency: 0, qSortByNumeric: 0, qSortByAscii: 1, qSortByLoadOrder: 0, qSortByExpression: 0 } | :x: | An array that tells the engine how to sort listbox data. You can set only the relevant properties of the object to 1. qSortObject.qExpression | Shape | | :x: | Sort by expression. qSortObject.qExpression.qv | String | | :x: | qSortObject.qSortByAscii | Number | | :x: | Sorts the field by alphabetical order. qSortObject.qSortByExpression | Number | | :x: | Sorts the field by expression. qSortObject.qSortByFrequency | Number | | :x: | Sorts the field values by frequency (number of occurrences in the field). qSortObject.qSortByGreyness | Number | | :x: | qSortObject.qSortByLoadOrder | Number | | :x: | Sorts the field values by the initial load order. qSortObject.qSortByNumeric | Number | | :x: | Sorts the field values by numeric value. qSortObject.qSortByState | Number | | :x: | Sorts the field values according to their logical state (selected, optional, alternative or excluded). qState | String | "" | :x: | state of the listbox toggle | Boolean | true | :x: | if true uses toggle select

RqtvDropdownFilter

RqtvDropdownFilter It is a listbox shaped as a dropdown. It has the same responsive behaviour as bootstrap dropdown when wrapped in a collapse

You can twek its behavuiour using props.

You can customize its styles using css or using props.

Example:

import React from 'react'
import {RqtvDropdownFilter} from '@reaqtive/components'

const MyRqtvDropdownFilter = props =>
<RqtvDropdownFilter
  qFieldExpr="Customer"
  dropdownMenuItemStyle={{textTransform:'uppercase'}}
/>

export default MyRqtvDropdownFilter

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- align | String | 'left' | :x: | It allows to align the dropdown menu to the left or to rhe right of the button buttonClassName | String | 'primary text-light' | :x: | className for the dropdown button buttonStyle | Object | {} | :x: | style object to customize the dropdown button clickAwayAccept | Boolean | false | :x: | if true selections are accepted when clicking away from the listbox in selection mode dropdownMenuHeight | Number | 300 | :x: | Height of the dropdown when is open dropdownMenuItemStyle | Object | {} | :x: | style object to customize the style of the dropdown menu items (it can be overwritten by selections color coding) dropdownMenuStyle | Object | {} | :x: | style object to customize the dropdown menu dropdownMenuWidth | Number | 265 | :x: | Width of the dropdown when is open hideHorizontalScrollbar | Boolean | false | :x: | Show/hide overflowX qFieldExpr | String | | :white_check_mark: | The expression which will be used in the listbox. It can be a fieldname or a valid expression qFieldLabelExpr | String | | :x: | The expression of the title used in the dropdown button (by default it shows the name of the field and the count distinct of that field or the selected value if there is only one selected value) qSortObject | Shape | { qSortByState: 1, qSortByFrequency: 0, qSortByNumeric: 0, qSortByAscii: 0, qSortByLoadOrder: 0, qSortByExpression: 0 } | :x: | qSortObject.qExpression | Shape | | :x: | Sort by expression. qSortObject.qExpression.qv | String | | :x: | qSortObject.qSortByAscii | Number | | :x: | Sorts the field by alphabetical order. qSortObject.qSortByExpression | Number | | :x: | Sorts the field by expression. qSortObject.qSortByFrequency | Number | | :x: | Sorts the field values by frequency (number of occurrences in the field). qSortObject.qSortByGreyness | Number | | :x: | qSortObject.qSortByLoadOrder | Number | | :x: | Sorts the field values by the initial load order. qSortObject.qSortByNumeric | Number | | :x: | Sorts the field values by numeric value. qSortObject.qSortByState | Number | | :x: | Sorts the field values according to their logical state (selected, optional, alternative or excluded). qState | String | "" | :x: | state of the listbox quickSelectionMode | Boolean | false | :x: | if true uses Qlik Sense selection behaviour (begin selection and asks confirmation to apply), if false it uses Qlik View selection behaviour (apply selections immediately) showCaret | Boolean | true | :x: | Show/hide the caret in the dropdown button showSearch | Boolean | true | :x: | Show/hide the search input when the dropdown is open toggle | Boolean | true | :x: | if true uses toggle select

RqtvListbox

RqtvListbox It looks like a Qlik Sense listbox, but is always expanded (does'not turn into a drop down). It will fill its container width

You can twek its behavuiour using props.

You can customize its styles using css or using props.

Example:

import React from 'react'
import {RqtvListbox} from '@reaqtive/components'

const MyRqtvListbox = props => {
  return(
    <RqtvListbox
      qFieldExpr="Customer"
      qLabelExpr="=count(distinct Customer)"
      height={300}
    />
  )
}

export default MyRqtvListbox

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- alwaysShowSearch | Boolean | false | :x: | if true the search input is alway shown clickAwayAccept | Boolean | false | :x: | if true selections are accepted when clicking away from the listbox in selection mode focus | Boolean | true | :x: | if true the search input is automatically focused when mounted headerStyle | Object | {} | :x: | style object to customize listbox header height | Number | 500 | :x: | the height of the listbox itemStyle | Object | {} | :x: | style object to customize the style of the items displayed by the listbox (it can be overwritten by selections color coding) listStyle | Object | {} | :x: | style object to customize the list that wraps the records qFieldExpr | String | | :white_check_mark: | The expression which will be used in the listbox. It can be a fieldname or a valid expression qFieldLabelExpr | String | | :x: | The expression shown in the header of the listbox qSortObject | Shape | { qSortByState: 1, qSortByFrequency: 0, qSortByNumeric: 0, qSortByAscii: 0, qSortByLoadOrder: 0, qSortByExpression: 0 } | :x: | An array that tells the engine how to sort listbox data. You can set only the relevant properties of the object to 1. qSortObject.qExpression | Shape | | :x: | Sort by expression. qSortObject.qExpression.qv | String | | :x: | qSortObject.qSortByAscii | Number | | :x: | Sorts the field by alphabetical order. qSortObject.qSortByExpression | Number | | :x: | Sorts the field by expression. qSortObject.qSortByFrequency | Number | | :x: | Sorts the field values by frequency (number of occurrences in the field). qSortObject.qSortByGreyness | Number | | :x: | qSortObject.qSortByLoadOrder | Number | | :x: | Sorts the field values by the initial load order. qSortObject.qSortByNumeric | Number | | :x: | Sorts the field values by numeric value. qSortObject.qSortByState | Number | | :x: | Sorts the field values according to their logical state (selected, optional, alternative or excluded). qState | String | "" | :x: | state of the listbox quickSelectionMode | Boolean | false | :x: | if true uses Qlik Sense selection behaviour (begin selection and asks confirmation to apply), if false it uses Qlik View selection behaviour (apply selections immediately) showHeader | Boolean | true | :x: | Show/hide listboxheader. showHeaderButtonbar | Boolean | false | :x: | Show/hide the buttons in listbox header (showHeader must be set to true to show the buttons) showListboxDropdownMenu | Boolean | true | :x: | Show/hide the listbox menu as a dropdown in listbox header titleAction | Function | ()=>false | :x: | function called when clicking on the listbox title titleStyle | Object | {} | :x: | style object to customize listbox title toggle | Boolean | true | :x: | if true uses toggle select

RqtvModalListbox

RqtvModalListbox It allows you to wrap a listbox inside a modal: the listbox will be hidden and a button will be shown. Clicking the button the listbox will appear inside a modal

Example:

import React from 'react'
import {RqtvModalListbox} from '@reaqtive/components'

const MyRqtvModalListbox = props =>
<RqtvModalListbox
  listboxProps={{
    qFieldExpr:"$Table",
    height:300
  }}
/>

export default MyRqtvModalListbox

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- buttonClassName | String | 'primary text-light' | :x: | className for the dropdown button buttonStyle | Object | {} | :x: | style object to customize the dropdown button listboxProps | Object | | :x: | the props which will be passed to the listbox qLabelExpr | String | | :x: | The expression used in the listbox title and in the button that toggles the listbox

RqtvSearchField

RqtvSearchField It provides you an input field to search a listbox. When the user starts typing a dropdown menu appears under the input field.

You can tweak its behaviour using props

You can customize style using props and css

Example:

import React from 'react'
import {RqtvSearchField} from '@reaqtive/components'

const MyRqtvSearchField = props =>
<RqtvSearchField
  qFieldExpr="Customer"
  placeholder="Search"
/>
export default MyRqtvSearchField

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- clickAwayAccept | Boolean | false | :x: | if true selections are accepted when clicking away from the listbox in selection mode dropdownMenuHeight | Number | 300 | :x: | Height of the dropdown when is open dropdownMenuWidth | Number | 265 | :x: | Width of the dropdown when is open hideHorizontalScrollbar | Boolean | false | :x: | Show/hide overflowX placeholder | String | 'Search' | :x: | The text shown in the input field when not searching qFieldExpr | String | | :white_check_mark: | The expression which will be used in the listbox. It can be a fieldname or a valid expression qSortObject | Shape | { qSortByState: 1, qSortByFrequency: 0, qSortByNumeric: 0, qSortByAscii: 0, qSortByLoadOrder: 0, qSortByExpression: 0 } | :x: | qSortObject.qExpression | Shape | | :x: | Sort by expression. qSortObject.qExpression.qv | String | | :x: | qSortObject.qSortByAscii | Number | | :x: | Sorts the field by alphabetical order. qSortObject.qSortByExpression | Number | | :x: | Sorts the field by expression. qSortObject.qSortByFrequency | Number | | :x: | Sorts the field values by frequency (number of occurrences in the field). qSortObject.qSortByGreyness | Number | | :x: | qSortObject.qSortByLoadOrder | Number | | :x: | Sorts the field values by the initial load order. qSortObject.qSortByNumeric | Number | | :x: | Sorts the field values by numeric value. qSortObject.qSortByState | Number | | :x: | Sorts the field values according to their logical state (selected, optional, alternative or excluded). qState | String | "" | :x: | state of the listbox quickSelectionMode | Boolean | false | :x: | if true uses Qlik Sense selection behaviour (begin selection and asks confirmation to apply), if false it uses Qlik View selection behaviour (apply selections immediately) toggle | Boolean | true | :x: | if true uses toggle select

RqtvMultibox

RqtvMultibox

It returns an accordion that shows a list of fields. A listbox is displayed for the active field. One field at a time can be active.

Example:

import React from 'react'
import {RqtvMultibox} from '@reaqtive/components'

const MyRqtvMultibox = props => {
  return(
    <RqtvMultibox
      fieldList={['$Table', '$Field']}
    />
  )
}

export default MyRqtvMultibox

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- clickAwayAccept | Boolean | false | :x: | if true selections are accepted when clicking away from an active listbox in selection mode fieldHeight | Number | 300 | :x: | The height of the listbox of the active field fieldList | Array | | :white_check_mark: | An array of fieldnames which will be displayed in the multibox qState | String | | :x: | The state of the multibox which will be passed to its listboxes

VISUALIZATIONS

QViz

QViz

It is a component that allows to retrieve Qlik visualizations. Qlik visualizations can be retrieved by id (if they already exists in the Qlik Sense app) or they can be created on the fly providing the properties to the engine. QViz also provide an imperative handle to inteact with Qlik visualizazion. To access the handle you have to provide a handle to the QViz component

Example:

import React from 'react'
import {QViz} from '@reaqtive/components'

const MyQVizExamples = () =>
  <>
    <MyQVizFromApp/>
    <MyQVizOnTheFly/>
  </>


const MyQVizFromApp = props => {
  return(
    <QViz
      id="QYthJs"
      height={250}
    />
  )
}

const MyQVizOnTheFly = props =>{
  return(
    <QViz
      id="VizExample1"
      chartProps={{
        chartType:'barchart',
        chartColumns: [
          {
            "qDef":{
              "qFieldDefs": ["[Product Sub Group Desc]"],
               "qFieldLabels": ["Product Sub Group"],
               "qSortCriterias":[{qSortByExpression:1,qExpression:"=Sum([Sales Quantity]*[Sales Price])"}],
               "qReverseSort":true
             }
           },
          "Customer Type",
          {
            "qDef":{
              "qDef":"=Sum([Sales Quantity]*[Sales Price])",
              "qLabel":"Revenue"
            }
          }
        ],
        rest: {
          "showTitles": false,
          "title": "Revenue",
          "barGrouping":{grouping:"stacked"}
        }
      }}
      height={300}
    />
  )
}

export default MyQVizExamples

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- chartProps | Object | | :x: | the properties of the object to be created on the fly chartProps must be passed as: {'chartType':'string', 'columns':'array', 'rest':'object'} see this link for details https://help.qlik.com/en-US/sense-developer/February2019/Subsystems/APIs/Content/Sense_ClientAPIs/CapabilityAPIs/VisualizationAPI/VisualizationAPI.htm id | String | | :white_check_mark: | the id of the visualization to be retrieved and of the div that will contain it showTitle | Boolean | false | :x: | show/hide the title in Qlik visualization

RqtvVizContainer

RqtvVizContainer

It provides a container to a visualization. It accepts multiple children. In case i detects more tha one child, it shows one child at a time and a dropdown menu to toggle the desired child. If its children provide exports methods it automatically shows export buttons

Example:

import React, {useState, useEffect, useRef} from 'react'
import {RqtvVizContainer, QViz, RqtvMaximizePortalEl} from '@reaqtive/components'

const MyRqtvContainer = props =>
<RqtvVizContainer
  height={'300px'}
  showExportExcel={true}
  showExportPdf={true}
  showExportImg={true}
  maximizeElRef={props.maximizeElRef}
  onMaximize={props.onMaximize}
>
  <QViz id="nRxXG" title="bar chart"/>
</RqtvVizContainer>

const MyMultiVizRqtvContainer = props =>
<RqtvVizContainer
  style={{height:'300', maxHeight:'300'}}
  maximizeElRef={props.maximizeElRef}
  onMaximize={props.onMaximize}
  vizRef={props.vizRef}
>
  <QViz key="pDKRhr" id="pDKRhr" title="scatter chart"/>
  <QViz key="nvqpV" id="nvqpV" title="line chart"/>
</RqtvVizContainer>

const MyRqtvContainerExample = props => {
  const maximizeElRef = useRef()
  const vizRef = useRef()

  const viz = vizRef.current&&vizRef.current.getQViz()
  /**
    * HTML overflow is handled by RqtvApp if the RqtvMaximizePortalEl and RqtvVizContainer
    * are inside it, otherwise you will have to handle it in your code, below an example
    */

  const [isMaximized, setIsMaximized] = useState(false)

  useEffect(()=>{
    const html = document.getElementsByTagName("html")[0];
    const maximize = () => {
      html.style.overflow ='hidden'
      html.scrollTop=0
    }
    const minimize = () => {
      html.style.overflow ='auto'
    }
    isMaximized?maximize():minimize()
  }, [isMaximized])

  const onMaximize = () => {
    setIsMaximized(!isMaximized)
  }

  return(
    <>
      <RqtvMaximizePortalEl maximizeElRef={maximizeElRef}/>
      <MyRqtvContainer
        maximizeElRef={maximizeElRef}
        onMaximize={onMaximize}
      />
      <MyMultiVizRqtvContainer
        maximizeElRef={maximizeElRef}
        onMaximize={onMaximize}
        vizRef={vizRef}
      />
    </>
  )
}
export default MyRqtvContainerExample

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- className | String | '' | :x: | Container css classes containerClassName | String | '' | :x: | Container header css classes height | Union<Number\|String> | 300 | :x: | The height of the container pixels or % can be used height<1> | Number | | :x: | height<2> | String | | :x: | hideScrollWhenMaximized | Boolean | true | :x: | If true window scrollbar will be hidden when the container is maximized showExportExcel | Boolean | true | :x: | Show/hide export to excel button showExportImg | Boolean | true | :x: | Show/hide export to img button showExportPdf | Boolean | true | :x: | Show/hide export to pdf button vizRef | Union<Function\|Object> | | :x: | Ref to the currently shown Viz vizRef<1> | Function | | :x: | vizRef<2> | Object | | :x: |

APP OBJECTS

RqtvCurrentSelections

RqtvCurrentSelections

it is a toolbar that displays the current selection status and the buttons to go back, forward and clear current selections. Clicking on the button displayin the number of current selections, a modal will appear showing the current selection box (fields and selected values) It currently does not support alternate states. It always display the default state. Styles can be customized via css (or scss)

Example:

import React from 'react'
import  {RqtvCurrentSelections} from '@reaqtive/components'

const MyRqtvCurrentSelections = props =>
    <RqtvCurrentSelections
      useCurrentSelectionModal={true}
      isResponsive={true}
      showModalToggler={true}
      alwayShowToolbar={true}
      hidePrefix={'%'}
    />

export default MyRqtvCurrentSelections

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- alwaysShowToolbar | Boolean | false | :x: | if true the current selection toolbar is always shown even if no selection history exists (0 current, selection 0 back-count and 0 forward count) breakPoint | Enum('xl', 'lg', 'md', 'sm') | 'lg' | :x: | screentype from which current selections are responsive excludeHidden | Boolean | | :x: | if true field hidden from current selections are not considered in selection count hidePrefix | String | | :x: | prefix of the fields to be hidden from current selections modal isResponsive | Boolean | true | :x: | when true it transform the toolbar into a fixed positioned floating button qState | String | '' | :x: | the alternate state from which to display current selections showModalToggler | Boolean | true | :x: | it allows to show/hide the modal toggler useCurrentSelectionModal | Boolean | true | :x: | it allows to turnoff the current selections box modal

RqtvSearchObject

RqtvSearchObject

It dispays a search object to search a single string in multiple fields.

If rendered inside the rqtv-navbar it will have fixed position and search results will colver the underlying page

Example:

import React from 'react'
import {RqtvSearchObject} from '@reaqtive/components'

const MyRqtvSearchObject =  props =>
   <RqtvSearchObject
      useBackdrop={false}
      alwaysExpanded={false}
      expandFrom='left'
      resultsWidth='100%'
      placeholder="Search"
    />

export default MyRqtvSearchObject

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- alwaysExpanded | Boolean | false | :x: | If true the search input will always be displayed expandFrom | Enum('right', 'left') | 'left' | :x: | The direction from which the input will expand if not always expanded onClose | Function | | :x: | function fired after hiding the search input. (not called if alwaysExpanded is true) onOpen | Function | | :x: | function fired after showing the search input. (not called if alwaysExpanded is true) searchFields | Array | | :x: | the fields of the data model to search against width | Union<String\|Number> | '100%' | :x: | width of the component. It accept px or % width<1> | String | | :x: | width<2> | Number | | :x: |

RqtvNavbar

RqtvNavbar

It is a component that renders the top navbar of the reaqtive app and add spacing to the top of the page if the navbar is fixed top. It includes the RqtvCurrentSelections component and the RqtvSearchObject component. It is based on bootstrap navbar, its styles can be customized using navbarClassName prop which will be passed to the navbar itself or via sass/css

Example:

import React from 'react'
import {RqtvNavbar} from '@reaqtive/components'

const MyRqtvNavbar = props => {
  return(
  <>
    <div className="border border-primary">
      <RqtvNavbar
        showSideMenuToggle={false}
        title="RqtvNavbar"
        fixedTop={false}
      />
      <div className="container py-5">
        <p>Below your content</p>
      </div>
    </div>
  </>
  )

}

export default MyRqtvNavbar

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- brandImgStyle | Object | | :x: | brandImgUrl | String | | :x: | brandUrl | String | | :x: | fixedTop | Boolean | true | :x: | if true the navbar would be fix positioned at the top of the page navbarBrandAction | Function | | :x: | navbarClassName | String | '' | :x: | css classes that will be passed to the navbar div onToggleMenu | Function | | :x: | function fired when clicking on the HamburgerMenu button searchResultsHeight | Union<String\|Number> | 500 | :x: | searchResultsHeight<1> | String | | :x: | searchResultsHeight<2> | Number | | :x: | showCurrentSelections | Boolean | true | :x: | show/hide the current selections toolbar showSearch | Boolean | true | :x: | show/hide the global search-object showSideMenuToggle | Boolean | true | :x: | show/hide hamburger menu

RqtvSideMenu

RqtvSideMenu

It returns toggleable fixed-positioned side menu displayed on the left of the page. Default tabs are the list of pages of the app and a multibox with filters. The open/close state has to be managed in parent component

Example:

import React, {useState} from 'react'
import {RqtvSideMenu, RqtvSideMenuMain} from '@reaqtive/components'

const MyRqtvSideMenu = props => {
  const [open, setOpen] = useState(false)

  const toggleSideMenu = () => {
    setOpen(!open)
  }

  const closeSideMenu = () => {
    setOpen(false)
  }

  return(
    <div style={{position:'relative'}}>
      <RqtvSideMenu
        isOpen={open}
        onClose={closeSideMenu}
      >
        <div className="text-light text-center">Here you can display your content</div>
      </RqtvSideMenu>
      <RqtvSideMenuMain isOpen={open}>
        <div className="container-fluid border border-primary">
          <div className="my-2">
            <button className="btn btn-primary" onClick={toggleSideMenu}>Toggle Menu</button>
          </div>
          <div className="py-2">Your content Here</div>
        </div>
      </RqtvSideMenuMain>
    </div>
  )
}

export default MyRqtvSideMenu

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- additionalTabs | Array[]<Shape> | [] | :x: | additional tabs to display after pages and filters additionalTabs[].icon | ReactElement | | :x: | additionalTabs[].label | String | | :x: | additionalTabs[].tab | ReactElement | | :x: | alwaysShowBackdrop | Boolean | false | :x: | if tru backdrop is always shown when RqtvSideMenu is open clickAwayAccept | Boolean | false | :x: | if true selections are accepted when clicking away from an active listbox in selection mode in the multibox isOpen | Boolean | | :white_check_mark: | open/close the menu onClose | Function | | :white_check_mark: | function to set isOpen to false useFieldList | Boolean | false | :x: | show hide the multibox usePageList | Boolean | false | :x: | show/hide the page list tab useTabs | Boolean | false | :x: | if true it uses the the tabs to display different views in the side menu, if false it just shows its children

APP

Components described in this section are supposed to work together: it is suggested to use RqtvApp if you want to use the other components describe here.

RqtvApp

RqtvApp

It provides routing using react router and a context that allows you to store app info to be available everywhere inside your app.

Example:

import React from 'react'
import {RqtvApp} from '@reaqtive/components'
import {HomePage, FirstPage, SecondPage} from './rqtv-page'

const MyRqtvApp = (props) => {
  return(
    <RqtvApp title="Example App" brandUrl='/' hidePrefix="Prod" >
        <FirstPage path="/first-page"/>
        <SecondPage path="/second-page"/>
        <HomePage path="/" linkName="HOME"/>
    </RqtvApp>
  )
}

export default MyRqtvApp

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- brand | String | | :x: | the brand of the app displayed in the navbar. An image is expected: import it in the app and pass it as a prop brandAction | Function | | :x: | a function called when clicking on the navbar brand. If defined will prevent navigating to brandUrl brandStyle | Object | | :x: | styles to be applied to the image container brandUrl | String | | :x: | the url to redirect to when clicking on the brand hidePrefix | String | '%' | :x: | Prefix to hide a field in current selections modal. Hidden fields will be considered in selectins count and in back, forward actions neverToggleFieldsMatch | Shape | | :x: | matching fields will have toggle set to false and quickSelectionMode set to true in when appearing in side menu and in current selections box. neverToggleFieldsMatch.mask | Array[]<String> | | :x: | neverToggleFieldsMatch.method | Enum('include', 'exclude') | | :x: | pages | Array[]<Shape> | | :x: | pages[].exactActiveMatch | Boolean | | :x: | pages[].linkName | String | | :x: | pages[].path | PropTypes.path | | :x: | searchFieldsMatch | Shape | {method:'exclude', mask:['**']} | :x: | fields to be used in the search object in the navbar. '' can be used as a wildcard (e.g. 'Q' will include consider all fields starting with 'Q') searchFieldsMatch.mask | Array[]<String> | | :x: | searchFieldsMatch.method | Enum('include', 'exclude') | | :x: | sideMenuFieldsMatch | Shape | {method:'include', mask:['**']} | :x: | fields to be displayed in the side menu. '' can be used as a wildcard (e.g. 'Q' will include consider all fields starting with 'Q') sideMenuFieldsMatch.mask | Array[]<String> | | :x: | sideMenuFieldsMatch.method | Enum('include', 'exclude') | | :x: | title | String | | :x: | the title of the app displayed in the navbar triggers | Array | [] | :x: | triggers to fire when opening the app (do not abuse triggers) useRouter | Boolean | true | :x: | if true the application will be wrapped in react router and in a switch

RqtvPage

RqtvPage

It is a container based on the Route component of the React Router. It can't be used outside RqtvApp. It is a dummy component which provides a the RqtvPageContext and a QGenericObject with 2 experessions: qTitleExpr --> providing the qTitle result qConditionExpr --> providing the qCondition result When navigating among RqtvPages you can use query strings to select values in fields. Here an example of a query string: ?selections=Customer:Benedict;Zocalo&selections=Account:61099 . Place your query string at the end of the url you are navigating to. RqtvPage also accept triggers which are fired when the page mounts. Like Routes RqtvPages can be nested. RqtvPage does not unMount when the route change, to force unmount add a key prop (it has to be unique among pages).

Example:

import React from 'react'
import {RqtvStandardTemplate, RqtvPage, RqtvCurrentSelections, RqtvDropdownFilter,  RqtvListbox, RqtvModalListbox} from '@reaqtive/components'
import {useRouteMatch, NavLink} from 'react-router-dom'
import {useQFieldReducer} from '@reaqtive/q'
import MyRqtvStandardTemplate from './rqtv-standard-template'
import MyRqtvContainerExample from './rqtv-viz-container'
import TabsExample from './tabs'


const HomePage = props =>
<RqtvPage {...props} exact={true} qTitleExpr="'Homepage'">
  <RqtvStandardTemplate sideMenuFieldsMatch={{method:'include', mask:['Product*']}}>
    <div>Home Page</div>
    <MyRqtvContainerExample/>
    <RqtvCurrentSelections qState="comparison"/>
    <RqtvListbox alwaysOneSelected={true} defaultValue={'Zocalo'} qFieldExpr={"Customer"} />
  </RqtvStandardTemplate>
</RqtvPage>

const FirstPage = props =>{
  return(
    <RqtvPage {...props}>
      <RqtvStandardTemplate sideMenuFieldsMatch={{method:'include', mask:['Customer*', 'Account*']}}>
        <RqtvListbox qFieldExpr="Customer" />
        <MyFirstNestedPage/>
      </RqtvStandardTemplate>
    </RqtvPage>
  )
}


const MyFirstNestedPage = props =>{
  const { path, url } = useRouteMatch();

  return(
    <>
      <RqtvPage
        path={`${path}/with-condition`}
        qConditionExpr={'=count(distinct Customer)=1'}
        fallbackPage={`${path}`}
      >
        <div>this is a nested page with a condition</div>
        <MyRqtvContainerExample/>
      </RqtvPage>
      <RqtvPage path={`${path}`} exact={true}>
        <div>this is a nested page with no condition</div>
        <div>
          <NavLink to={`${url}/with-condition/?selections=Customer:Benedict&selections=Account:61099`}><button>go to page with condition</button></NavLink>
          <MyRqtvContainerExample/>
        </div>
      </RqtvPage>
    </>
  )
}

const SecondPage = props =>
<RqtvPage {...props} qTitleExpr="'Revenue is: '&Sum([Sales Quantity]*[Sales Price])" exactActiveMatch={false}>
  <MyRqtvStandardTemplate>
    <TabsExample/>
  </MyRqtvStandardTemplate>
</RqtvPage>

export {HomePage, FirstPage, SecondPage}

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- exact | Boolean | false | :x: | shows the route only if the path match exactly with the addressbar. See the React Router docs for details fallbackPage | String | | :x: | the page the user is redicrected to when the qConditionExpr returns false (0) linkName | String | | :x: | the name of the page displayed in the side-menu of the app. If not set it will be equal to the path, replacing '-' with ' ' loadingComponent | ReactElement | | :x: | the component displayed while triggers fired path | String | | :white_check_mark: | the path to reach the page. See React Router for details qConditionExpr | String | "" | :x: | a qlik espression that returns a value, used in combination with the fallback page prop, it redirects when false qTitleExpr | String | "'My Reaqtive Page'" | :x: | the expression that can be used to make the title dynamic as in Qlik Sense sheets triggers | Array | [] | :x: | triggers fired when the page is mounted see @reaqtive/q docs for details

RqtvStandardTemplate

RqtvStandardTemplate

It is a component that allows you to use Reaqtive main components without having to declare them one by one. Of course does not allow the same flexibility as recreating a template manually. It includes the RqtvSideMenu, the RqtvNavbar and the RqtvPageHeader. It is suggested to use this component inside the RqtvApp

Example:

import React from 'react'
import {RqtvStandardTemplate, RqtvPage} from '@reaqtive/components'


const MyRqtvStandardTemplate = props => {
  return(
    <RqtvStandardTemplate sideMenuClickAwayAccept={false}>
      <div>Standard Template Example</div>
      {props.children}
    </RqtvStandardTemplate>
  )
}

export default MyRqtvStandardTemplate

Props:

prop | type | default | required | description ---- | :----: | :-------: | :--------: | ----------- containerClassName | String | | :x: | the css classes of the container wrapping the page containerStyle | Object | | :x: | it allows to set the styles of the div conatining the page (the components you will develop) currentSelectionsBreakPoint | Enum('xl', 'lg', 'md', 'sm') | | :x: | screentype from which current selections are responsive searchFieldsMatch | Shape | | :x: | fields to be used in the search object in the navbar. '' can be used as a wildcard (e.g. 'Q' will include consider all fields starting with 'Q') searchFieldsMatch.mask | Array[]<String> | | :x: | searchFieldsMatch.method | Enum('include', 'exclude') | | :x: | showSearch | Boolean | true | :x: | show/hide the search object in the navbar sideMenuClickAwayAccept | Boolean | false | :x: | if true selections are accepted when clicking away from an active listbox in selection mode in the side menu multibox sideMenuFieldsMatch | Shape | | :x: | fields to be displayed in the side menu. '' can be used as a wildcard (e.g. 'Q' will include consider all fields starting with 'Q') sideMenuFieldsMatch.mask | Array[]<String> | | :x: | sideMenuFieldsMatch.method | Enum('include', 'exclude') | | :x: | useContainerFluid | Boolean | true | :x: | it lets you choose between a bootstrap container or container-fluid to wrap the page usePageHeader | Boolean | true | :x: | show/hide the page header that would contain only the title of the page and can't be customized useSideMenu | Boolean | true | :x: | show/hide the side menu

TRIGGERS

RqtvApp and RqtvPage accept arrays of triggers as props. They are fired before rendering the app or the page. This is still an experimental feature, but data structures are very unlikely to change. Below you can find the types of triggers you can use described as PropTypes


/*Select one value of one field*/
const fieldSelectionTrigger = PropTypes.shape({
    type: 'fieldSelection',
    params: PropTypes.shape({
      fieldName:PropTypes.string,
      value:PropTypes.string,
    })
  })

/*Select multiple values of one field*/
const fieldSelectionsTrigger = PropTypes.shape({
  type: 'fieldSelections',
  params: PropTypes.shape({
    fieldName:PropTypes.string,
    value:PropTypes.arrayOf(PropTypes.shape({
      qText: PropTypes.string,
      qIsNumeric: PropTypes.bool,
      qNumber: PropTypes.number
    })),
  })
})

/*Clear one field*/
const clearFieldTrigger =  PropTypes.shape({
  type: 'clearField',
  params: PropTypes.shape({
    fieldName:PropTypes.string,
  })
})

const triggerType = PropTypes.oneOf([clearFieldTrigger,fieldSelectionsTrigger,fieldSelectionTrigger])

STYLES

Styles are based on bootstrap classes and components. In reaqtive components plain boostrap classes have been used and they are scoped using the name of the Reaqtive components they are used into. For example the wrapper div of a RqtvListbox has rqtv-listbox class, the RqtvSideMenu a rqtv-side-menu class. You can customize the styles the components referring to these classes in your scss files. Moreover you can customize Reaqtive theme by including a theme file and changing theme variables values. You can add your theme creating an index.scss file and a theme.scss file. Below an example.

theme.scss

...
$primary: #5C88DA;
$side-menu-field-list-border-color:rgba(0,0,0,0);
$navbar-bg:#fff;
$navbar-color:$primary;
...

index.scss

// import files with this order otherwise Reaqtive theme will overwrite yours
@import "./styles/theme.scss";
@import "~@reaqtive/components/dist/index.scss";
...

index.js

...
import './index.scss'
...

You can find the complete list of Reaqtive theme variable here and the complete list of Bootstrap variables here