Git Product home page Git Product logo

can-reflect's Introduction

can-reflect

Build Status

Reflect allows you to reflection on unknown data types.

By looking for symbols in [can-symbol], can-reflect lets someone act upon any data type without having to have prior knowledge of it.

var Thing = function(){

};
Thing.prototype.method = function(){}

var canReflect = require("can-reflect");
canReflect.isConstructorLike(Thing) //-> true

The different reflections you can use are grouped by reflection type as follows:

  • Type Reflections - Tell you what the value is.
    • .isConstructorLike
    • .isFunctionLike
    • .isIteratorLike
    • .isListLike
    • .isMapLike
    • .isMoreListThanMapLike (lists can often still be maps)
    • .isObservableLike
    • .isValueLike
    • .isSymbolLike
  • Shape Reflections - Give you information about the value.
    • own and enumerable
      • .eachIndex
      • .eachKey
      • .each
      • .getOwnEnumerableKeys (aka .keys)
      • .toArray
    • own
      • .getOwnKeys
      • .getOwnKeyDescriptor
    • all (pending)
  • Getter / Setter Reflections - get or set some value on another value.
    • .getKeyValue, .setKeyValue, .deleteKeyValue - for maps (get, set, and delete are aliases)
    • .getValue, .setValue - for things like computes
    • .splice, .addKeys(keyValues[,index]), .removeKeys(keysOrValues[,index]) (PENDING?)
  • Function Reflections - call functions or create instances
    • .call
    • .apply
    • .new
  • Observe Reflections - listen to when things change
    • .onKeyValue, .offKeyValue
    • .onKeys - when anything changes
    • .onKeysAdded, .onKeysRemoved
    • .getKeyDependencies - for debugging
    • .keyHasDependencies
    • .onValue, .offValue
    • .getValueDependencies
    • .valueHasDependencies
    • .onEvent, .offEvent - listen to an event on something

TODO:

  • .deleteKeyValue, .get and .set aliases
  • addKeys / removeKeys
  • isInitializing

can-reflect's People

Contributors

justinbmeyer avatar phillipskevin avatar bmomberger-bitovi avatar sinjhin avatar andrejewski avatar chasenlehara avatar nlundquist avatar web-mech avatar

Watchers

James Cloos avatar Jeroen Cornelissen 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.