rjx
|
- |
getChildrenProperty
|
- |
should return the children of an RJX Object
|
- |
should get the children from rjx.props._children property
|
- |
should get the children from rjx.props.children property
|
- |
getChildrenProps
|
- |
should return child RJX if not passing props
|
- |
should pass props except for styles
|
- |
getRJXChildren
|
- |
should return RJX Child Objects
|
- |
rjx components
|
- |
getBoundedComponents
|
- |
should bind this to reactComponents
|
- |
getComponentFromMap
|
- |
should return a function if rjx.component is not a string
|
- |
should return the dom element string if a valid DOM elmenet in ReactDOM
|
- |
should return a custom element
|
- |
should return a component library react element
|
- |
should handle errors
|
- |
getComponentFromLibrary
|
- |
should return undefined if not valid
|
- |
should return a function if selecting valid component library
|
- |
componentMap
|
- |
should accept components from a window property
|
- |
getFunctionFromEval
|
- |
should return a new function
|
- |
getReactComponent
|
- |
should create a React Component
|
- |
rjx props
|
- |
getComputedProps
|
- |
should return resolved computed props
|
- |
getRJXProps
|
- |
should return resolved dynamic prop
|
- |
should return resolved dynamic prop with undefined values if reference is invalid
|
- |
getEvalProps
|
- |
should return evaluated props dangerously using eval
|
- |
getWindowComponents
|
- |
should return react element from rjx.__windowComponents
|
- |
getFunctionProps
|
- |
should resolve functions from rjx.__functionProps from function strings
|
- |
getFunctionFromProps
|
- |
should return an empty function by default
|
- |
should return a library function like this.props.reduxRouter.push
|
- |
should return a function on this.props like this.props.onClick
|
- |
should return a window function like window.print or window.localStorage.getItem
|
- |
getComponentProps
|
- |
should return evaluated props dangerously using eval
|
- |
getReactComponentProps
|
- |
should return react component props dangerously using eval
|
- |
rjx
|
- |
getRenderedJSON
|
- |
should return an instance of a react element
|
- |
should handle errors with empty components
|
- |
should throw an error with invalid components
|
- |
rjxHTMLString
|
- |
should return an HTML string
|
- |
__express
|
- |
should return an HTML string
|
- |
rjxRender
|
- |
should render component inside of querySelector
|
- |
rjx utils
|
- |
displayComponent
|
- |
should display by default return true
|
- |
should display if left !== null||undefined
|
- |
should display if left === null||undefined
|
- |
should display if left == right
|
- |
should display if left === right
|
- |
should display if left != right
|
- |
should display if left !== right
|
- |
should display if left > right
|
- |
should display if left >= right
|
- |
should display if left < right
|
- |
should display if left <= right
|
- |
should display if multiple comprisons are true
|
- |
should display if one or more using comparisonorprops comprisons are true
|
- |
getAdvancedBinding
|
- |
should return true if browser supports deep nesting
|
- |
should return false on all versions of IE/Trident
|
- |
should return false on old Android Browser
|
- |
should return false on old Chrome Browser
|
- |
should return false unknown browser
|
- |
traverse
|
- |
should return properties from an object from the array of paths
|
- |
should return the entire object if no paths provided
|
- |
should return undefined if paths are invalid
|
- |
should throw an error if paths are not an array of strings or numeric indexes
|
- |
validateRJX
|
- |
should return true if RJX is valid
|
- |
should return string and warn of invalid RJX props
|
- |
should throw a syntax error if RJX is missing a component
|
- |
should throw multiple errors if returnAllErrors is true
|
- |
should throw a type error if RJX props is not an object, props.children or props._children
|
- |
should throw a type error if RJX children is not an array or RJX docs or a string
|
- |
should validate child objects
|
- |
should validate dynamic props[asyncprops,resourceprops,thisprops,windowprops]
|
- |
should validate eval props[dangerouslyEvalProps,dangerouslyBindEvalProps]
|
- |
should validate __dangerouslyEvalProps javascript
|
- |
should validate __dangerouslyBindEvalProps as a function that can be bound javascript
|
- |
should validate __dangerouslyInsertComponents are valid RJX objects
|
- |
should validate __functionProps are valid function strings
|
- |
should validate __windowComponentProps is an object
|
- |
should validate __windowComponents are valid function strings
|
- |
should validate comparisonorprops is boolean
|
- |
should validate comparisonprops is an array of comaprisons
|
- |
should validate passprops is boolean
|
- |
validSimpleRJXSyntax
|
- |
should invalidate shorthard simple syntax
|
- |
should validate shorthard simple syntax
|
- |
simpleRJXSyntax
|
- |
should return valid RJX from simple RJX syntax
|
- |
should produce equivalent RXJ
|
- |
getSimplifiedRJX
|
- |
should produce equivalent SimpleRJX
|
- |
should return SimpleRJX if already simple
|
- |