Coder Social home page Coder Social logo

mckravchyk / mobx-svelte-readable Goto Github PK

View Code? Open in Web Editor NEW
1.0 1.0 0.0 534 KB

A very simple, yet complete, integration between Svelte and MobX that connects MobX reaction with Svelte's readable auto-subscription

License: MIT License

JavaScript 53.05% TypeScript 46.95%

mobx-svelte-readable's Introduction

mobx-svelte-readable

A very simple, yet complete, integration between Svelte and MobX that connects MobX reaction with Svelte's readable auto-subscription.

Installation

npm install mobx-svelte-readable --save

Example

<script lang="ts">

import { readableReaction } from 'mobx-svelte-readable';

const store = getContext('store');

// That's all there is to it...
const isVisible = readableReaction(() => store.menu.isOpen);

$: visibilityStyle = $isVisible ? '' : 'display: none;';

</script>

<div id="Menu" style={visibilityStyle}></div>

For example's sake, a simple MobX store can be created like this:

import { makeObservable, observable } from 'mobx';

const menuSlice = {
  isOpen: false,
};

makeObservable(menuSlice, {
  isOpen: observable
});

const store = {
  menu: menuSlice,
};

The subscription will fire whenever menuSlice.isOpen changes its value - no custom objects, no update functions - just updating the value.

MobX is a standalone state management library and has more features than Svelte's built-in stores. MobX documentation can be found here.

mobx-svelte-readable's People

Contributors

mckravchyk avatar

Stargazers

 avatar

Watchers

 avatar

mobx-svelte-readable's Issues

Svelte 5 state usage

Came upon MobX as I'd like to use pure custom classes with svelte 5 and state. Does this package work with state yet ?

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.