React API
aragonAPI for React
This module allows for interacting with aragonAPI with React Hooks. @aragon/api
is used under the hood, so being familiar with it can be useful.
Usage
This is a simple example demonstrating how we can use @aragon/api-react
to connect an app's frontend to its contract, fetch some data from its state (appState
), and trigger an action on it (api.increment(1)
). The full API is detailed below.
Installation
Install it alongside @aragon/api
:
Documentation
<AragonApi />
Before using any Hook provided, you need to declare this component to connect the app. It is generally a good idea to do it near the top level of your React tree. It should only be declared once.
It has an optional reducer
prop, which lets you process the state coming from the background script. If not provided, the state is passed as-is.
Example
useAragonApi()
A React Hook that returns the data needed to interact with the app contract.
As with any React Hook, please ensure that you follow the Rules of Hooks.
It returns an object containing the following entries:
api
This is the current AragonApp
instance. Use it to call methods on the contract.
Example:
appState
The app state, after having passed the background script state through the reducer
prop of AragonApi
.
Example:
connectedAccount
The connected Ethereum account. Its value is ""
(empty string) when there is no account connected.
Example:
currentApp
Details about the current app. Once loaded, it returns a single object with the following keys:
abi
: the app's ABIappAddress
: the app's contract addressappId
: the app's appIdappImplementationAddress
: the app's implementation contract address, if any (only available if this app is a proxied AragonApp)identifier
: the app's identifier, if anyisForwarder
: whether the app is a forwarderkernelAddress
: the app's attached Kernel address (i.e. organization address)name
: the app's name, if availableroles
(experimental): an array of this app's roles
Each app detail also includes an icon(size)
function, that allows you to query for the app's icon (if available) based on a preferred size.
Its value is null
until it gets loaded.
Example:
guiStyle
The GUI style sent by the client. It contains two entries: appearance
and theme
.
appearance
is currently one of light
or dark
. Other values could be passed in the future (e.g. black
for OLED screens). It is always present and should be respected by apps to display a corresponding theme, unless theme
is present.
theme
contains an entire theme object (e.g. aragonUI's light theme) that should be applied to the app. It is optional and apps should respect it when present. If not possible, apps should respect the value of appearance
.
Example:
Complete example if you are using aragonUI:
installedApps
The complete list of apps installed in the organization. Its value is an empty array ([]
) until the list of apps are loaded.
Each object in the array holds the same keys as currentApp
.
Example:
network
An object representing the current network using its id
and type
entries. Its value is null
until it gets loaded.
Example:
path
/ requestPath()
The app's current path. Its value is "/"
by default.
Use requestPath()
to request the app be navigated to another path. Note that the navigation request may be rejected, and in that case the path
will stay constant.
Example:
useApi()
This Hook returns the same data as the api
entry from the useAragonApi()
hook.
useAppState()
This Hook returns the same data as the appState
entry from the useAppState()
hook.
useConnectedAccount()
This Hook returns the same data as the connectedAccount
entry from the useAragonApi()
hook.
useCurrentApp()
This Hook returns the same data as the currentApp
entry from the useAragonApi()
hook.
useGuiStyle()
This Hook returns the same data as the guiStyle
entry from the useAragonApi()
hook.
useInstalledApps()
This Hook returns the same data as the installedApps
entry from the useAragonApi()
hook.
useNetwork()
This Hook returns the same data as the network
entry from the useAragonApi()
hook.
usePath()
This Hook returns an array holding two values from the useAragonApi()
hook:
path
, andrequestPath
Last updated