4.1.2 • Published 7 days ago

@enymo/react-resource-hook v4.1.2

Weekly downloads
-
License
MIT
Repository
github
Last release
7 days ago

React Resource Hook

React Hook for interacting with REST APIs.

Installation

The library may be installed from npm using

npm i @enymo/react-resource-hook

Features

  • Access REST resources using a simple, laravel-inspired naming scheme and a React-friendly declarative syntax
  • Create, update and destroy resources with easy-to-use methods
  • Upload files without needing to manually convert you payload to FormData
  • Easily incorporate WebSockets to keep your frontend up-to-date as data is changed by other processes.

Usage

In order to use the useResource hook in your components, you app has to be wrapped with the ResourceProvider to configure the hook

import React from "react";
import { RouteFunction, ResourceProvider } from "@enymo/react-resource-hook";
import route from "ziggy-js";
import axios from "axios";

function App() {
    return (
        <ResourceProvider value={{axios: axios, routeFunction: route as RouteFunction, reactNative: false}}>
            {/* Your app here */}
        </ResourceProvider>
    )
}

NOTE If you're using ziggy-js for the route function: As of 06/12/2023, the typing for ziggy-js is incorrect, but it's implementation isn't. Because of this, route has to be cast to RouteFunction to be used with the resource hook.

You can then access resource in your components like this:

import useResource from "@enymo/react-resource-hook";
import React from "react";

export default function Component() {
    const [items, {loading, store, update, destroy, extra, refresh}] = useResource<{
        id: number,
        text: string
    }>("my-resource");

    if (loading) {
        return null;
    }

    return (
        <div>
            {items.map(({id, text}) => (
                <button
                    key={id}
                    onClick={() => update(id, {
                        text: "Updated!"
                    })}
                >{text}</button>
            ))}
        </div>
    )
}

Configuration

The ResourceProvider allows to configure the behavior of the resource hook for all components placed within. The following options may be passed to the value-prop. | Option | Description | |---------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | axios | You can set a custom axios instance to be used for all requests the hook makes.If you don't need this, you can simply pass the global axios import | | routeFunction | The resource hook was developed to be used with Laravels resource routes and ziggy-js,but any function with the same signature as ziggy-js' 'route' may be used | | reactNative | Should be set to true when using this library in a react native project.This slightly alters the behavior of the hooks form data converter (see below) to accountfor react natives unique way of handling file uploads |

Resource naming and routing

WIP

Options

WIP (jsdoc available)

4.1.2

7 days ago

4.1.1

22 days ago

3.2.13

24 days ago

3.2.12

24 days ago

3.2.15

24 days ago

3.2.14

24 days ago

4.1.0

24 days ago

4.1.0-beta.3

1 month ago

4.1.0-beta.2

1 month ago

4.1.0-beta.0

1 month ago

4.1.0-beta.1

1 month ago

4.0.1

1 month ago

4.0.0

1 month ago

4.0.0-beta.19

1 month ago

4.0.0-beta.18

1 month ago

4.0.0-beta.17

2 months ago

4.0.0-beta.15

2 months ago

4.0.0-beta.16

2 months ago

4.0.0-beta.14

3 months ago

4.0.0-beta.13

3 months ago

4.0.0-beta.12

3 months ago

4.0.0-beta.11

4 months ago

2.2.7

4 months ago

3.2.9

8 months ago

3.2.8

8 months ago

3.2.7

8 months ago

4.0.0-beta.8

6 months ago

3.2.2

9 months ago

3.1.3

10 months ago

4.0.0-beta.7

6 months ago

3.2.1

9 months ago

3.1.2

10 months ago

4.0.0-beta.6

6 months ago

3.2.0

9 months ago

3.1.1

10 months ago

4.0.0-beta.5

6 months ago

3.1.0

10 months ago

4.0.0-beta.4

6 months ago

3.2.6

8 months ago

4.0.0-beta.10

6 months ago

3.2.5

8 months ago

3.1.6

10 months ago

4.0.0-beta.2

6 months ago

3.2.4

9 months ago

3.1.5

10 months ago

4.0.0-beta.1

6 months ago

3.2.3

9 months ago

3.1.4

10 months ago

3.2.11

7 months ago

3.2.10

7 months ago

4.0.0-beta.9

6 months ago

3.0.1

11 months ago

3.0.0

11 months ago