Socket
Socket
Sign inDemoInstall

mvcobject

Package Overview
Dependencies
Maintainers
2
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mvcobject

An implementation of Google Maps' MVCObject for Node.js and browers


Version published
Maintainers
2
Created
Source

MVCObject NPM version Build Status Dependencies Status

An implementation of Google Maps' MVCObject for Node.js and browers.

This is a standalone class - you can use it in any of your JavaScript applications, it doesn't have to be Google Maps related.

mvcobject

APIs

MethodsReturn ValueDescription
bindTo(key: string, target: MVCObject, targetKey?: string, noNotify?: boolean)thisBinds a View to a Model.
changed(key: string)?Generic handler for state changes. Override this in derived classes to handle arbitrary state changes.
get(key: string)*Gets a value.
notify(key: string)thisNotify all observers of a change on this property. This notifies both objects that are bound to the object's property as well as the object that it is bound to.
set(key: string, value: any)thisSets a value.
setValues(values: object)thisSets a collection of key-value pairs.
unbind(key: string)thisRemoves a binding. Unbinding will set the unbound property to the current value. The object will not be notified, as the value has not changed.
unbindAll()thisRemoves all bindings.
addListener(eventName: string, handler: Function)EventListeneradd listener for ${key}_changed event
addListenerOnce(eventName: string, handler: Function)EventListeneradd listener for ${key}_changed event once
removeListener(eventListener: EventListener)voidremove event listener

Usage

  • ES6

    import MVCObject from 'mvcobject'
    
    class Foo extends MVCObject{
        constructor(){
            super()
        }
    }
    
  • ES5

    var MVCObject = require('mvcobject').MVCObject;
    function Foo(){}
    Foo.prototype = new MVCObject();
    

test

Thanks to @twpayne, the test suites are based on his mvcobject_test.js.

npm install
npm run test

LICENSE

The MIT License (MIT)

Copyright (c) 2013 - present Wyntau wyntau@outlook.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Keywords

FAQs

Package last updated on 17 Dec 2018

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

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc