Socket
Book a DemoInstallSign in
Socket

subject-object

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

subject-object

Simple Javascript class that implement the Subject part in a Observer-Subject relationship

1.0.2
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

SubjectObject

It's a simple Javascript class that implement the Subject part in a Observer-Subject relationship.

How to use

In order to create a Observable object (subject) you have to extend SubjectObject class, adding observable properties using 'createProperty' method

// Observable object
var Foo = function() {
    SubjectObject.call(this);

    this.createProperty('a');
    this.createProperty('b');

    this.a = "...";
    this.b = 12;
}

Foo.prototype = Object.create(SubjectObject.prototype);
Foo.prototype.constructor = Foo;

Then you can add a listener (Observer) using 'addObserver' method:

// Observer
var Bar = function() {

}

Bar.prototype.listen = function(object, changes) {
    var property = changes.property;

    console.log('Property "', property, '" has changed');
    console.log('New value: "', object[property], '"');
    console.log('Old value: "', changes.oldValue, '"');
}

// Link
var f = new Foo();
var b = new Bar();

f.addObserver(b.listen);

When a property of 'f' object is changed

f.a = 'Hello world';

all listeners are notified (called)

Property " a " has changed
New value: " Hello world "
Old value: " ... "

Keywords

Observer-Subject

FAQs

Package last updated on 19 Sep 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.