Code Monkey home page Code Monkey logo

frontend's Introduction

@kimkanu/frontend

Installation

npm install @kimkanu/frontend

or

yarn add @kimkanu/frontend

Usage

Refer to examples/ directory.

Recoil.js

import { RecoilStateFamily, setWithGuard } from "@kimkanu/frontend";
import { atom, selector, selectorFamily } from "recoil";

type ExampleStateType = number[]; // Actual datatype of a state
type ExampleSelector = {
  doubled: ["w", number[]]; // Writable, returns `number[]`
  asString: ["r", string[]]; // Readonly, returns `string[]`
  byIndex: ["w", (index: number) => number]; // Writable selector family indexed by `number` returning `number`
  asStringByIndex: ["r", (index: number) => string]; // Readonly selector family indexed by `number` returning `string`
};

const exampleStateFamily: RecoilStateFamily<ExampleStateType, ExampleSelector> =
  {
    atom: atom({
      key: "example",
      default: [],
    }),
    doubled: selector({
      key: "example__doubled",
      get: ({ get }) => get(exampleStateFamily.atom).map((x) => x * 2),
      set: setWithGuard(({ set }, value) => {
        set(
          exampleStateFamily.atom,
          value.map((x) => x / 2)
        );
      }),
    }),
    asString: selector({
      key: "example__asString",
      get: ({ get }) => get(exampleStateFamily.atom).map((x) => x.toString()),
    }),
    byIndex: selectorFamily({
      key: "example__byIndex",
      get:
        (index) =>
        ({ get }) =>
          get(exampleStateFamily.atom)[index],
      set: (index) =>
        setWithGuard(({ get, set }, value) => {
          const currentState = get(exampleStateFamily.atom);
          set(exampleStateFamily.atom, [
            ...currentState.slice(0, index),
            value,
            ...currentState.slice(index + 1),
          ]);
        }),
    }),
    asStringByIndex: selectorFamily({
      key: "example__asStringByIndex",
      get:
        (index) =>
        ({ get }) =>
          get(exampleStateFamily.atom)[index].toString(),
    }),
  };

frontend's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.