chisana
TypeScript icon, indicating that this package has built-in type declarations

0.1.0 • Public • Published

Chisana

Jotai like atomic state management for vue

status

npm npm bundle size GitHub npm

  • alpha
  • atoms
    • writable
    • derived readonly
    • derived read-write

based on the amazing work of

goals

  • [x] keep API similar
  • [x] Don't complicate core
  • [x] small bundle size
  • [ ] code splitting
  • [ ] ...

docs

first create a primitive atom

An atom represents a piece of state. All you need is to specify an initial value, which can be primitive values like strings and numbers, objects and arrays. You can create as many primitive atoms as you want.

import { atom } from 'chisana';
import { computed, ref } from 'vue';

// pass a ref as state, it should be a ref as a atom can only be a primitive 
// i.e. string, number, array, object
export const counterAtom = atom(ref(0));

use the atom in your components

<script setup lang="ts">
import { useAtom } from 'chisana';
import { counterAtom } from './atom';

// setValue accepts both value and a callback function returning a value
// the previous value of the atom will be the argument of the callback function
const [val, setVal] = useAtom(counterAtom);

function setValueFunction(val: number) {
  return val + 1;
}
</script>
<template>
  <div>
    <div>Base atom :: {{ val }}</div>

    <button @click="setVal(setValueFunction)">inc</button>
  </div>
</template>

create derived atoms with computed values

A new read-only atom can be created from existing atoms by passing a read function as the first argument. get allows you to fetch the contextual value of any atom. For now we need to wrap the return value inside computed to retain reactivity. This can be improved

export const doubledAtom = atom((get) =>
  // need to wrap the return value inside computed to retain reactivity
  computed(() => get(counterAtom).value * 2),
);
<script setup lang="ts">
import { useAtom } from 'chisana';
import { doubledAtom } from './atom';

const [double] = useAtom(doubledAtom);

</script>
<template>
  <div>
    <div>Derived atom :: {{ double }}</div>
  </div>
</template>

You can create a writable derived atom

Specify a write function at the second argument. get will return the current value of an atom. set will update an atoms value.

// read write derived atoms
export const baseAtom = atom(ref(1));

export const tripledAtom = atom(
  (get) => computed(() => get(baseAtom).value * 3),
  (get, set, update) => {
    // update any atom here
    // set(someAtom, get(someAtom).value + 1);
    set(baseAtom, update + 2);
  },
);
<script setup lang="ts">
import { useAtom } from 'chisana';
import { doubledAtom } from './atom';

const [baseTripleVal] = useAtom(baseAtom);
// read write derived
const [tripleVal, setTripleVal] = useAtom(tripledAtom);

function setValueFunction(val: number) {
  return val + 1;
}
</script>
<template>
  <div>
    <h3>Read write derived</h3>
    <div>Base triple val :: {{ baseTripleVal }}</div>
    <div>Tripled derived atom :: {{ tripleVal }}</div>

    <button @click="setTripleVal(setValueFunction)">inc tripledAtom</button>  </div>
</template>

approach

  • atoms -> ref
  • createAtom -> create atom, register it, returns a unique key to retrive atom
  • useAtom -> pick atom from injected global atoms registry
  • only [get, set]
    • get -> inject -> pick -> maintain reactive connection
    • set -> pick -> update
  • only valid inside components
  • createRoot -> create registry and inject
  • chisana._r -> global atoms registry -> reactive<{[key: string]: S}>()

issues

  • there is a memory leak issue i think

need help

I don't have a deep knowledge on the vue reactivity internals and I feel this lib can be improved a lot. Please help me with your knowledge, Thanks

Readme

Keywords

none

Package Sidebar

Install

npm i chisana

Weekly Downloads

0

Version

0.1.0

License

MIT

Unpacked Size

13.5 kB

Total Files

15

Last publish

Collaborators

  • soulsam480