0.4.5 • Published 4 days ago

@hopara/react v0.4.5

Weekly downloads
-
License
UNLICENSED
Repository
github
Last release
4 days ago

@hopara/react

This package provides a react component to add Hopara visualizations to your project.

Requirements

The Hopara component is built on top of React and React-Redux. It requires the following dependencies:

  • react >= 18.2
  • react-redux >= 8.0
  • redux >= 4.2

Installing

Package manager

Using npm:

$ npm install --save @hopara/react

Using yarn:

$ yarn add @hopara/react

Once installed, you can import the library using import or require:

import {Hopara} from '@hopara/react';

Authentication

The component requires a valid accessToken. Use the Auth API to fetch it, as explained in our integration guide(https://docs.hopara.app/#/docs/integration-guide/2-authentication-integration.html)

Examples

Basic usage

<div className="HoparaEmbedded">
  <Hopara
    visualizationId="your-visualization-id"
    accessToken="your-access-token"
  />
</div>

Module API

You can further customize the integration by using the component props:

type HoparaProps = {
  // The visualization id
  visualizationId: string

  // The accessToken fetched from the auth API
  accessToken: string

  // Switch the theme mode to dark scheme (default: false)
  darkMode: boolean | undefined

  // Overwrites data at rendering time
  dataLoaders: DataLoader[] | undefined

  // The initial position to load the visualization
  initialPosition: InitialPosition | undefined

  // The initial row (e.g. asset) to load the visualization
  initialRow: InitialRow | undefined

  // The custom controller to be used on Hopara Visualization
  controller: HoparaController | undefined

  // Overrides the map style defined in the visualization studio. See the Map Style section for the available options
  mapStyle: string | undefined

  // Functions called when callback actions are triggered
  callbacks: CallbackFunction[]
}

Controller

You can provide a Hopara Controller to manually trigger a data refresh (i.e. fetch all data again).

Example

import {Hopara, HoparaController} from '@hopara/react'
const customController = new HoparaController()

<div className="HoparaEmbedded">
  <Hopara
    visualizationId="your-visualization-id"
    accessToken="your-access-token"
    controller={customController}
  />
</div>

Data Loader

By default Hopara will load the same visualization and data as seen as in hopara.app. You can use the data loader prop to provide a custom way to load the data.

type DataLoader = {
  // query name
  query: string

  // data source name
  source: string

  // callback to be used on data load
  loader: (filterSet: {limit: number, offset:number, filters: any[]}) => Promise<Record<string, any>[]>
}

Example

const dataLoaders = [{
  query: 'queryName',
  source: 'dataSourceName',
  loader: async () => {
    return [
      {
        id: 1,
        name: 'Eiffel Tower',
        country: 'France',
        longitude: 48.85845461500544,
        latitude: 2.294467845588995
      },
      {
        id: 2,
        name: 'Liberty Statue',
        country: 'USA',
        longitude: 40.68815550804761,
        latitude: -74.02620077137483
      },
      {
        id: 3,
        name: 'Great Wall of China',
        country: 'China',
        longitude: 40.43211592595951,
        latitude: 116.57040708445938,
      }
    ]
  }
}]
...
<div className="HoparaEmbedded">
  <Hopara
    visualizationId="your-visualization-id"
    accessToken="your-access-token"
    dataLoaders={dataLoaders}
  />

Initial Position

The initial position prop overrides the initial position of the visualization.

type InitialPosition = {
  latitude: number | undefined
  longitude: number | undefined
  x: number | undefined
  y: number | undefined
  z: number | undefined
  zoom: number | undefined
  bearing: number | undefined
}

Initial Row

The initial row prop centers the visualization around a specific row (e.g. asset, facility).

type InitialRow = {
  layerId: string
  rowId: string
}

Map Style

In a geo visualization this config overrides the map style defined in the visualization studio.

The available options are 'none', 'building', 'dark', 'light', 'light-street', 'navigation', 'satellite'.

Hopara.init({
  visualizationId: 'my-hopara-viz',
  accessToken: 'my-hopara-token',
  targetElementId: 'my-target-element',
  mapStyle: 'building',
})

Callback Function

You can implement custom interactions by adding callback actions to a layer. When the user selects an object in the visualization and click on the action the registered javascript function will be called with the associated row data.

type CallbackFunction = {
  name: string
  callback: (row) => void
}
Hopara.init({
  visualizationId: 'my-hopara-viz',
  accessToken: 'my-hopara-token',
  targetElementId: 'my-target-element',
  callbacks: [
    {
      name: 'my-callback-action',
      callback: (row) => {
        console.log('Callback triggered', row)
      }
    }
  ],
})
0.4.5

4 days ago

0.4.4

5 days ago

0.4.2

6 days ago

0.4.1

8 days ago

0.3.107

12 days ago

0.3.106

12 days ago

0.3.109

11 days ago

0.3.108

11 days ago

0.3.105

12 days ago

0.3.104

12 days ago

0.3.102

13 days ago

0.3.101

15 days ago

0.3.99

18 days ago

0.3.97

18 days ago

0.3.98

18 days ago

0.3.96-b

22 days ago

0.3.96-a

24 days ago

0.3.96

26 days ago

0.3.95

27 days ago

0.3.94

29 days ago

0.3.93

29 days ago

0.3.92

30 days ago

0.3.91

30 days ago

0.3.90

30 days ago

0.3.89

30 days ago

0.3.88-c

1 month ago

0.3.88-b

1 month ago

0.3.86

1 month ago

0.3.85

1 month ago

0.3.88

1 month ago

0.3.87

1 month ago

0.3.84

1 month ago

0.3.83

1 month ago

0.3.82

1 month ago

0.3.81

2 months ago

0.3.80

2 months ago

0.3.79

2 months ago

0.3.75

2 months ago

0.3.73

2 months ago

0.3.72

2 months ago

0.3.78

2 months ago

0.3.76

2 months ago

0.3.71

2 months ago

0.3.70

2 months ago

0.3.69

2 months ago

0.3.68

2 months ago

0.3.67

2 months ago

0.3.65

2 months ago

0.3.64

2 months ago

0.3.63

2 months ago

0.3.62

2 months ago

0.3.61

2 months ago

0.3.60

2 months ago

0.3.59

2 months ago

0.3.58

2 months ago

0.3.56

2 months ago

0.3.55

2 months ago

0.3.53

2 months ago

0.3.52

2 months ago

0.3.50-1

2 months ago

0.3.51

2 months ago

0.3.49-d

2 months ago

0.3.49-e

2 months ago

0.3.49-b

2 months ago

0.3.49-a

2 months ago

0.3.49-c

2 months ago

0.3.50

3 months ago

0.3.49

3 months ago

0.3.48

3 months ago

0.3.47

4 months ago

0.3.46

4 months ago

0.3.45

5 months ago

0.3.44

5 months ago

0.3.31

8 months ago

0.3.30

8 months ago

0.3.39

6 months ago

0.3.38

6 months ago

0.3.37

6 months ago

0.3.34

7 months ago

0.3.34-a

7 months ago

0.3.32

7 months ago

0.3.34-f

7 months ago

0.3.34-g

7 months ago

0.3.29

8 months ago

0.3.34-k

7 months ago

0.3.20

9 months ago

0.3.27

8 months ago

0.3.41-b

6 months ago

0.3.26

8 months ago

0.3.25

9 months ago

0.3.24

9 months ago

0.3.43-d

5 months ago

0.3.22

9 months ago

0.3.43-c

5 months ago

0.3.21

9 months ago

0.3.19

9 months ago

0.3.18

10 months ago

0.3.9

11 months ago

0.3.16

10 months ago

0.3.31-a

8 months ago

0.3.15

10 months ago

0.3.14

10 months ago

0.3.31-c

8 months ago

0.3.13

10 months ago

0.3.31-b

8 months ago

0.3.10

10 months ago

0.3.42

6 months ago

0.3.41

6 months ago

0.3.40

6 months ago

0.3.42-a

6 months ago

0.3.42-b

6 months ago

0.3.43

6 months ago

0.1.117

1 year ago

0.1.119

1 year ago

0.1.114

1 year ago

0.1.116

1 year ago

0.1.115

1 year ago

0.3.0

12 months ago

0.2.1

12 months ago

0.2.0

1 year ago

0.3.6

11 months ago

0.3.5

11 months ago

0.1.120

1 year ago

0.3.8

11 months ago

0.3.7

11 months ago

0.3.2

11 months ago

0.2.3

12 months ago

0.3.1

12 months ago

0.2.2

12 months ago

0.3.4

11 months ago

0.2.5

12 months ago

0.2.4

12 months ago

0.1.109

1 year ago

0.1.108

1 year ago

0.1.113

1 year ago

0.1.105

1 year ago

0.1.104

1 year ago

0.1.112

1 year ago

0.1.103

2 years ago

0.1.102

2 years ago

0.1.101

2 years ago

0.1.100

2 years ago

0.1.99

2 years ago

0.1.98

2 years ago

0.1.96

2 years ago