npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@lolocompany/ra-lolo

v1.0.0-alpha.0

Published

A library to handle auth and data layer compatible with react-admin

Downloads

361

Readme

ra-lolo

npm version

ra-lolo is a set of providers compatible with react-admin, specifically designed to integrate with Amazon Cognito. It provides both an authentication provider and a data provider to enable seamless backend communication for applications using react-admin.

Features

  • Authentication Provider: Integrates with Amazon Cognito to handle user authentication via oidc-client-ts. Supports login, logout, and identity verification.
  • Data Provider: A flexible data provider to handle API requests, compatible with react-admin standards.
  • React-Admin Integration: Built to work out-of-the-box with react-admin, providing standard data fetching capabilities (CRUD operations).

Installation

To install ra-lolo in your project, use npm or yarn:

npm install ra-lolo

or

yarn add ra-lolo

Usage

Setup LoloAdmin


const apiUrl = 'YOUR_BACKEND_URL';

const options = {
  itemsKey: 'records',
  headers: {
    'X-Custom-Header': 'value'
  }
};

const App = () => (
  <LoloAdmin
    authProvider={authProvider()}
    dataProvider={dataProvider(apiUrl, options)}
  />
);

export default App;

Configuration

  • Authentication Flow: The authentication provider (LoloAuthProvider) uses the oidc-client-ts library to interact with Amazon Cognito, supporting login and logout flows.
  • API Communication: The data provider (LoloDataProvider) uses RESTful API conventions to interact with backend endpoints, including pagination, filtering, sorting, and more.

Data Provider Options

The dataProvider function accepts an optional second argument, options, which allows you to customize the behavior of the data provider:

  • itemsKey: Specifies the key used to extract the list of items from the server response. This can either be a string or a function that takes the resource name and returns the key.
  • headers: Custom headers that should be added to every request. You can add any additional headers needed by your API.

Example:

const options = {
  itemsKey: 'records',
  headers: {
    'X-Custom-Header': 'value'
  }
};

const dataProviderInstance = dataProvider(apiUrl, options);

UserManager Configuration

The userManager configuration includes:

  • authority: The URL of your Amazon Cognito identity provider.
  • client_id: Your Cognito app client ID.
  • redirect_uri: The URL for redirecting after authentication (must be registered in the Cognito app settings).

You can modify these in the userManager instance located in userManager.js.

Project Structure

ra-lolo/
  |- index.js
  |- authProvider.js
  |- dataProvider.js
  |- userManager.js
  • index.js: Exports the main components of the package.
  • authProvider.js: Contains LoloAuthProvider for handling authentication.
  • dataProvider.js: Contains LoloDataProvider for API operations.
  • userManager.js: Configures and exports the UserManager instance for handling authentication.

License

This project is licensed under the ISC License. See the LICENSE file for details.

Contributing

Contributions are welcome! Feel free to submit issues and pull requests to help improve this project.

Acknowledgments

This project leverages react-admin and oidc-client-ts. We appreciate the amazing work done by their respective communities.

Contact

If you have any questions, suggestions, or issues, feel free to open an issue on GitHub.


We hope ra-lolo makes your journey with react-admin and Amazon Cognito easier and more efficient. Give it a try, and let us know how it works for you!