Giter Club home page Giter Club logo

objectobserver's Introduction

ObjectObserver

small js library to watch objects for changes

What gets created by this script

The script creates an object on the window with the name 'ObjectObserver'.

The interface of the 'ObjectObserver' object

  • methods
    • observe (object, property, callback)
      • listens for changes of the given property on the given object and invokes the callback with the new value, if the value gets set
      • callbacks only get invoked, if the new value is different from the old one
      • unique callbacks get only added once
    • unobserve (object, property, callback)
      • removes the listeners for the property changes of the given object

Example

var f = {
        foo: 'foo'
    },

    cb = function (newVal) {
        console.log(newVal);
    },

    i = document.getElementById('foo');

ObjectObserver.observe(f, 'foo', cb);

console.log(f.foo) // >> foo
f.foo = 'bar'; // >> bar

ObjectObserver.unobserve(f, 'foo', cb);
f.foo = 'baz'; // >> [no output]

Notes

  • when deleting an object property which gets observed, the observing of that property gets lost
    • to reenable observing, you have to call ObjectObserver.observe() again

objectobserver's People

Contributors

mightyplow 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.