Giter VIP home page Giter VIP logo

deact's Introduction

deact

A type enforced Deno module for state management.

Announcement

This module is in development and is not recommended for production use. If you would like to contribute, then please make sure you clone the repo and have Prettier installed. Also, run deno test before submitting an PRs. Furthermore, deact's behavior is much like to the Vue Composition API. Thank you!

Getting Started

First, install and setup Deno on your environment by following their setup guide. After that, you can import the deacivity module via the following code:

import { ref } "https://deno.land/x/deact/mod.ts";

Obviously, you should know what the above code does already before using a state management framework for Deno, so let's get started!

Usage

The ref is a function that creates a stateful object. That basically means that you can observe changes to refs using functions. Here is a basic counter app with the module:

import { ref } from "https://deno.land/x/deact/mod.ts";

const counter = ref(0); // initial value is `0`
console.log(counter.value); // logs out `0`

As you can see, the value that you enter as a parameter for the ref function is the initial value. An important thing to note is that the current value of the ref is always going to be in the value property. This means that you are able to set and get the value of the ref by accessing the value property.

Now, you may be remembering that we said above that this module is type-enforced, well let's just see what happens when we try to assign different types to our counter ref.

import { ref } from "https://deno.land/x/deact/mod.ts";

const counter = ref(0); // value is implicitly a `number` type

console.log(counter.value); // logs out `0`
counter.value = 5;

console.log(counter.value); // logs out `5`
counter.value = "a string";

After that last line, our console spits out the following error:

> error: TS2322 [ERROR]: Type 'string' is not assignable to type 'number'.
> counter.value = "a string";
> ~~~~~~~~~~~~~
>   at Deno.cwd()

As you can see, Typescript automatically infers the type of the ref.value via generics; therefore, you can also pass in the type of the ref with generics! I advise you to always keep a type variable for the type of your refs, as it makes it a lot easier to edit and use the ref later. Here's a working counter that can be a number or string:

import { ref } from "https://deno.land/x/deact/mod.ts";

type CounterType = number | string;
const counter = ref<CounterType>(0); // value is explicitly a `number | string` type
console.log(counter.value); // logs out `0`

counter.value = 5;
console.log(counter.value); // logs out `5`

counter.value = "a string";
console.log(counter.value); // logs out `"a string"`

Now, our code is working beautifully and is perfectly typed! Now, let's actually get into the lifecycle hooks with deact! Currently, we only have one that is called watch; it runs a callback function with the old and new values of the given ref as parameters. Here is an example:

import { ref, watch } from "https://deno.land/x/deact/mod.ts"; // note that we imported `watch`

type CounterType = number;
const counter = ref<CounterType>(0);

watch(counter, (oldValue: CounterType, newValue: CounterType) => {
  console.log(
    `The score went from ${oldValue} to ${newValue} with a ${
      newValue - oldValue
    } point gain!`
  );
});

counter.value = 23;

After running the above code, the console will show "The score went from 0 to 23 with a 23 point gain!". You're probably starting to understand the necessity of storing your types for refs. Here is an example using an interval that increments counter.value by a random number between 5 and 20:

import { ref, watch } from "https://deno.land/x/deact/mod.ts";

type CounterType = number;
const counter = ref<CounterType>(0);

watch(counter, (oldValue: CounterType, newValue: CounterType) => {
  console.log(
    `The score went from ${oldValue} to ${newValue} with a ${
      newValue - oldValue
    } point gain!`
  );
});

setInterval(() => (counter.value += Math.floor(Math.random() * 15) + 5), 500);

After running the code, our console should show something like this:

> The score went from 0 to 15 with a 15 point gain!
> The score went from 15 to 23 with a 8 point gain!
> The score went from 23 to 29 with a 6 point gain!
> The score went from 29 to 46 with a 17 point gain!
> The score went from 46 to 52 with a 6 point gain!
> The score went from 52 to 66 with a 14 point gain!
> The score went from 66 to 72 with a 6 point gain!
> The score went from 72 to 82 with a 10 point gain!
> The score went from 82 to 97 with a 15 point gain!
> The score went from 97 to 114 with a 17 point gain!
> The score went from 114 to 126 with a 12 point gain!
> The score went from 126 to 137 with a 11 point gain!
> The score went from 137 to 146 with a 9 point gain!

We now know all of the basic usage of the deact module, but wait! There's more! Not really, you can just use isRef to check whether something is a ref or not. Obviously, though, this module is type-enforced, so there isn't really a point of using it unless if you are using boring old vanilla javascript.

What? You want an example? Ok, sure, here's how you can use it:

import { ref, isRef } from "https://deno.land/x/deact/mod.ts";

type CounterType = number;
const counter = ref<CounterType>(0);

console.log(isRef(counter));
console.log(isRef({})); // throws type error
console.log(isRef(23)); // throws type error

After running that code, the console will show the following:

>  error: TS2345 [ERROR]: Argument of type '{}' is not assignable to parameter of type 'Ref<any>'.
>    Type '{}' is missing the following properties from type 'Ref<any>': #value, #watchers, value, _watch
>    console.log(isRef({}));
>                      ~~
>    at Deno.cwd()

>  TS2345 [ERROR]: Argument of type 'number' is not assignable to parameter of type 'Ref<any>'.
>    console.log(isRef(23));
>                      ~~
>    at Deno.cwd()

>  Found 2 errors.

If you were using vanilla javascript, though, then that function would be more useful. Another important thing to note is that all types, interfaces, and classes are exported from the module, so everything is open for you to use or extend.

Well, you finished reading the Usage walkthrough. Bye and good luck coding!

deact's People

Contributors

sno2 avatar

Stargazers

 avatar  avatar

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.