-
Notifications
You must be signed in to change notification settings - Fork 0
useAdapterEndpoint
A React hook designed to connect to an Odin Control Endpoint or adapter.
Usage allows for GET and PUT requests to be automated, as well as periodic GET calls for adapters that have constantly updating data that needs to be reflected in the GUI. This hook can then be passed to other components as a Property, allowing multiple components in your GUI to utilise the same endpoint, and will reflect changes potentially made by other components.
This hook maintains a local copy of the data it gets from the adapter, which can then be displayed in the GUI elements. When done this way, any data displayed will automatically update if and when the local copy within the hook updates (be this either automatically when the periodic value is set, or when the GET or SET methods are called)
This hook was designed with the intention of connecting to a single adapter. Therefore, if multiple adapters exist in a system that should be connected to, you should use one hook per adapter.
The Example react app within this Git Repo has a page designed to show the several potential use cases for the AdapterEndpoint hook.
- the name of the adapter within the Odin Control Instance that this endpoint should connect to
-
The URL of the Odin Control Instance, including IP and port address.
eg
http://192.168.0.1:1234
-
The API version, which is appended to the start of the adapter path. This defaults to
'0.1'
and likely will not need to change. -
Defaults to
null
. If set to a number of milliseconds, the AdapterEndpoint will periodically send a GET request to the adapter with that frequency, to update its local copy of the data.
// Creates an endpoint that will send a GET request to the following path once a second:
// http://localhost:8888/api/0.1/adapter
const exampleEndpoint = useAdapterEndpoint("adapter", "http://localhost:8888", {interval: 1000});