New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

react-create-view

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-create-view

A utility to standardize creating react views that go through different states like loading, success, empty, error

latest
Source
npmnpm
Version
1.0.0
Version published
Maintainers
1
Created
Source

react-create-view

A utility to standardize creating views that go through different states like loading, success, empty, error.

Inspired by redwoodjs Cells which you can peep here

Example

There is an example of how to use the createView utility in example/src/App.tsx.

You can also check out test.tsx here

import { createView, ViewModelProps } from 'react-create-view';

// note: models can contain callbacks, etc!
type SuccessModel = {
  name: string;
};

type FailureModel = {
  error: Error;
};

type LoadingModel = {
  icon: string;
};

type EmptyModel = {
  msg: string;
};

type VMProps = ViewModelProps<
  SuccessModel,
  FailureModel,
  LoadingModel,
  EmptyModel
>;

const useViewModel = (): VMProps => {
  // note: this is just for demo purposes. not a full example. use react-query!
  const [isLoading, setIsLoading] = useState(false);
  const [isError, setIsError] = useState(false);
  const [isEmpty, setIsEmpty] = useState(false);
  const [name, setName] = useState('Chris Fields');

  if (isError) {
    return {
      status: 'error',
      model: {
        error: new Error('Failed to get data'),
      },
    };
  }

  if (isLoading) {
    return {
      status: 'loading',
      model: {
        icon: 'loadingIcon',
      },
    };
  }

  if (isEmpty) {
    return {
      status: 'empty',
      model: {
        msg: 'No items',
      },
    };
  }

  return {
    status: 'success',
    model: {
      name: 'chris',
    },
  };
};

const MyView = createView<SuccessModel, FailureModel, LoadingModel, EmptyModel>(
  {
    Success({ name }) {
      return <h1>{name}</h1>;
    },
    Failure({ error }) {
      return <h1>{error.message}</h1>;
    },
    Loading({ icon }) {
      return <h1>{icon}</h1>;
    },
    Empty({ msg }) {
      return <h1>{msg}</h1>;
    },
  }
);

const MyComponent = () => {
  const vm = useViewModel();
  return <MyView {...vm} />;
};

// use <MyComponent /> anywhere!

Improvements

The one thing I feel can be approved is it would be nice to pass the ViewModelProps type to createView so dont have to redo generics, but I don't know this TS wizardry. So if you do, help!

Keywords

react

FAQs

Package last updated on 21 Sep 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts