Code Monkey home page Code Monkey logo

meteor-reactivevariable's Introduction

Meteor-ReactiveVariable


A simple wrapper class for easy creation/access to Meteor reactive variables (using session or not)

now wrapped up as a meteorite package.

install:


mrt add reactive-variable

usage:


examples


  1. Vanilla example using memory as store
 
       var showEditingPanel = new ReactiveVariable({
           name: "showEditingPanel"
           ,defaultValue: false
       });
 
       showEditingPanel.get();   // returns false!
  1. modifying the return value elegantly with a hook
 
       var showEditingPanel = new ReactiveVariable({
           name: "showEditingPanel"
           ,defaultValue: false
           ,afterGet: function(value){
                return (value) ? 'show' : 'hidden';
           }
       });
 
       showEditingPanel.get();   // returns hidden - makes {{showEditingPanel}} like simple!
       showEditPanel.set(true);  // using the saner true/false to switch values
       showEditingPanel.get();   // now it returns 'show'! magic!
  1. or maybe you wanna munge the value a bit before setting it, or perhaps run some other supporting functions before it gets set.
 
       var showEditingPanel = new ReactiveVariable({
           name: "showEditingPanel"
           ,defaultValue: "ruzz"
           ,beforeSet: function(value){
                return value + 'is awesome!'
           }
       });
 
       showEditingPanel.get();   // returns 'ruzz is awesome'
       showEditPanel.set('bill');
       showEditingPanel.get();   // returns 'bill is awesome'
  1. Vanilla example using Meteor Session as store
       var showEditingPanel = new ReactiveVariable({
           name: "showEditingPanel"
           ,defaultValue: false
           ,dictionary: Session
       });

works the exact same as example 1 but now uses the Session to store the value

Session.get('showEditingPanel'); // returns 'false';

meteor-reactivevariable's People

Contributors

ruzz avatar

Watchers

 avatar James Cloos avatar

meteor-reactivevariable's Issues

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.