Coder Social home page Coder Social logo

newsy's Introduction

newsy

Use newsy to instantiate dynamic dependencies. This tool was built for instantiating subclasses that depend on the environment in which the code runs. For example, a different subclass may be needed in .com versus Admin.

Usage:

MySubView.js: MySubView = function() {...}; MySubView.newsy = 'MySubView' } project 1 entry file: // BuyerSubViewConstructor inherits prototype and static from MySubView newsy.register(BuyerSubViewConstructor);

project 2 entry file: // SellerSubViewConstructor inherits prototype and static from MySubView newsy.register(SellerSubViewConstructor);

In common parent view: // We call newsy here to instantiate a BuyerSubViewConstructor or // SellerSubViewConstructor depending on which MySubView subclass // constructor was registered in the entry file var mySubViewInstance = newsy('MySubView');

Dependencies can be declared and enforced per-constructor through a newsy property called 'builds':

BuyerMainView.js: var MainView = function () { newsy('MySubView'); } MainView.newsy = { name: 'MainView', builds: ['MySubView']; }

If newsy('MainView') is called before any constructor for MySubView is registered, an exception will be thrown that declares the missing dependencies.

The static newsy property: When a constructor is registered, the constructor is named according to the newsy property on the constructor. If the newsy property is a string, then the value of the newsy property is the registered name of the constructor. If the newsy property is an object, then the name of the constructor is taken from newsy.name. The constructor's dependencies are declared using newsy.builds.

newsy's People

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.