@normellis/react-network

0.2.1 • Public • Published

React Networking

Table of Contents

The gist

This library provides abstractions of common networking logic to keep components clean, and their behavior predictable. This is done with classes:

  • ApiConfig can be instantiated to define your base api configuration.
  • Api can be extended to create an api interface.

Lastly, the consumer hook useEndpoint takes in an endpoint from your Api class and produces a controller and state to be used in a functional component or React context.

Getting Started

Install

yarn add @normellis/react-networking

Create your ApiConfig

This configuration can be thought of as the bedrock on which your Api interfaces will sit. To create a new configuration:

export const config = new ApiConfig({
  root: "http://localhost:8080/api",
  headers: {
      Authorization: "Bearer [token]"
  }
})

Create an Api interface class

Once you have your base configuration set up, you will use it to instantiate new Api child classes. But first, you must define one. Each Api interface class will contain members that return EndpointConfigs to be consumed by the useEndpoint hook inside a component. Underneath the hood, the Api class comes with a configure() method which we will use to generate consistent endpoints.

class TestApi extends Api {
  /* Get array of test data */
  getTestList(): EndpointConfig<T> {
    return super.configure<T>({
      method: "GET",
      url: this.basePath,
    });
  }
}

export const testApi = new TestApi(config, "test");

Note: While only method and url are required, you can utilize any property of the AxiosRequestConfig type.


Consume your endpoints

Lastly, inside a React component or context, at the base level per React's Hook rules, you'll import the useEndpoint hook and pass in your new api's endpoint.

const response = useEndpoint<T>(testApi.getTestList())

Your response object looks like this:

{
    loading: boolean;
    data: T;
    sattus: number;
    message: string;
}

Utilities

Hooks

useCursorManager

This hook is pretty simple, but very useful for building out a React-ive network layer. When plugged into a reactive network call, this cursor manager will trigger an update when controller.goTo() is called. This is how you select your cursor from the cursor map.

interface ICursorValues {
    cursor: string;
    cursors: CursorMap;
    currentIndex: number;
    hasPrev: boolean;
    hasNext: boolean;
}

interface ICursorController {
    addNextCursor: (val: string) => void;
    goTo: (i: number) => void;
}

Admittedly, I tried to leave it as unopinionated as possible, providing both a controller and all the internal values for a wide variety of consumption methods. My favorite pattern is to use this as a part of a Context that manages your API call, whatever query/filter state values needed, and the cursor. When a response is received, you can call controller.addNextCursor to provide the next cursor in your map. The hook detects duplicates and will not add the cursor if it already exists.

const TestContext = createContext<ITestContext>(/* initial value */)

const TestProvider = (props: PropsWithChildren) => {
    const { values, controller } = useCursorManager()
    // ... 
    useEffect(() => {
        // ...
        controller.addNextCursor(res.nextCursor)
    })
    
    const payload = { 
        paginator: controller,
        // ...
    }
    return (
        <TestContext.Provider value={payload}>
            {children}
        </TestContext.Provider>
    )
}

In the above example, the TestProvider will consume the values as needed, but pass on the controller so a child component containing pagination buttons can control the paginator for the context. Then, other components suited to render this data can consume the return value from the context and one will react to the other.


Useful Bits

Customize configure to handle custom logic

The Api class has a method that builds your config for you. Overriding it in your Api interface class allows you to perform any transformative logic needed, such as adding query params to the url, or dynamically setting headers.

class NewApi extends Api {
  static configure(params: NewParams): EndpointConfig<T> {
    /* Perform transformations and other logic */
    return super.configure<ConfigParams<NewItem[]>>(transformedConfig)
  }
}

Note: This, additionally, can serve as a universal typecast, eliminating the need to cast each time you call the method.

Package Sidebar

Install

npm i @normellis/react-network

Weekly Downloads

1

Version

0.2.1

License

MIT

Unpacked Size

27.7 kB

Total Files

15

Last publish

Collaborators

  • normellis