@aioha/react-provider
v1.7.0
Published
React provider for Aioha
Maintainers
Readme
Aioha React Provider
React provider for Aioha for React apps that are not using the ready-made UI.
This module is used and provided in the ready-made UI so there is no need to install this separately.
Installation
pnpm i @aioha/react-provider @aioha/aiohaUsage
- Initialize Aioha and setup provider at the root of your application. This may be in
index.jsx,index.tsxorApp.tsxdepending on the framework you use.
import { initAioha } from '@aioha/aioha'
import { AiohaProvider } from '@aioha/react-provider'
// See options: https://aioha.dev/docs/core/usage#instantiation
const aioha = initAioha()
const App = () => {
return (
<AiohaProvider aioha={aioha}>
<TheRestOfYourApplication />
</AiohaProvider>
)
}- Use Aioha anywhere within
AiohaProviderthroughuseAioha().
import { useAioha } from '@aioha/react-provider'
export const AiohaPage = () => {
const { aioha, user, provider, otherUsers } = useAioha()
// rest of your page goes here
}Logged in username and provider may be retrieved through user and provider variables. Other authenticated accounts can be retrieved through otherUsers variable.
