Skip to content

dangkhoa99/ra-infra

 
 

Repository files navigation

RA Infra

Installation

Install through git

Usage

Refer IApplication type for more information!

<Ra
  urls={{
    base: '<your_api_endpoint>',
    auth: '<sign_in_path>', // Default is login
  }}
  resources={[
    { name: 'users', list: ListGuesser },
    { name: 'posts', list: ListGuesser },
  ]}
  requireAuth
  // Rest of parameters are same to React Admin
/>

Configuration

React app - Create React App

Config nothing
Note: There are warning from this lib, please just ignore it!

React app - Vite

export default defineConfig({
  ...
  // Add these lines to your vite.config.ts
  define: {
    process: {
      env: {},
    },
  },
});

Usage

Providers

const listLanguages = [
  { locale: 'en', name: 'English' },
  //...
];

const i18n = {
  en: {...},
  fr: {...},
  //...
};


const dataProvider = getDataProvider({
  baseUrl: 'YOUR_BASE_URL',
  authPath: 'YOUR-ENDPOINT', //api for login
});

//---------------------------------------------------
const authProvider = getAuthProvider({
  dataProvider,
  authPath: 'YOUR-ENDPOINT', //api for login
});

//---------------------------------------------------
const i18nProvider = getI18nProvider({
  i18n,
  listLanguages,
});

 <Admin
   requireAuth
   i18nProvider={i18nProvider}
   dataProvider={dataProvider}
   authProvider={authProvider}
   {...rest}
 >
 </Admin>

About

React + Vite Infra

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 99.7%
  • Shell 0.3%