This package provides a dataProvider, an authProvider, hooks and components to integrate Supabase with react-admin when using its default UI (ra-ui-materialui).
This project uses a local instance of Supabase. To set up your environment, run the following command:
make install supabase-start db-setup
This will:
.env
file with environment variables to target the supabase instanceYou can then start the application in development
mode with:
make run
Log in with the following credentials:
janedoe@atomic.dev
password
If you need debug the backend, you can access the following services:
When you invite a new user through the Authentication dashboard, or reset a password through the password reset form, you can see the email sent in Inbucket.
Clicking the link inside the email will take you to the /set-password
page where you can set or reset your password.
To test OAuth providers, you must configure the Supabase local instance. This is done by editing the ./supabase/config.toml
file as described in the Supabase CLi documentation.
For instance, to add support for Github authentication, you have to:
Go to the GitHub Developer Settings page:
http://localhost:8000
http://localhost:54321/auth/v1/callback
./supabase/config
file[auth.external.github]
enabled = true
client_id = "YOUR_GITHUB_CLIENT_ID"
secret = "YOUR_GITHUB_CLIENT_SECRET"
make supabase-stop supabase-start db-setup
Open the ./packages/demo/src/App.tsx
file and update it.
<Admin
dataProvider={dataProvider}
authProvider={authProvider}
i18nProvider={i18nProvider}
layout={Layout}
dashboard={Dashboard}
- loginPage={LoginPage}
+ loginPage={<LoginPage providers={['github']} />}
queryClient={queryClient}
theme={{
...defaultTheme,
palette: {
background: {
default: '#fafafb',
},
},
}}
>
We provide two language packages:
And there are also community supported language packages:
ra-supabase
already re-export ra-supabase-language-english
but you must set up the i18nProvider yourself:
// in i18nProvider.js
import { mergeTranslations } from 'ra-core';
import polyglotI18nProvider from 'ra-i18n-polyglot';
import englishMessages from 'ra-language-english';
import frenchMessages from 'ra-language-french';
import { raSupabaseEnglishMessages } from 'ra-supabase-language-english';
import { raSupabaseFrenchMessages } from 'ra-supabase-language-french';
const allEnglishMessages = mergeTranslations(
englishMessages,
raSupabaseEnglishMessages
);
const allFrenchMessages = mergeTranslations(
frenchMessages,
raSupabaseFrenchMessages
);
export const i18nProvider = polyglotI18nProvider(
locale => (locale === 'fr' ? allFrenchMessages : allEnglishMessages),
'en'
);
// in App.js
import { Admin, Resource, ListGuesser } from 'react-admin';
import { authRoutes } from 'ra-supabase';
import { dataProvider } from './dataProvider';
import { authProvider } from './authProvider';
import { i18nProvider } from './i18nProvider';
export const MyAdmin = () => (
<Admin
dataProvider={dataProvider}
authProvider={authProvider}
i18nProvider={i18nProvider}
customRoutes={authRoutes}
>
<Resource name="posts" list={ListGuesser} />
<Resource name="authors" list={ListGuesser} />
</Admin>
);