Omnipotent is a library combining Omniscient.js and immstruct, for providing opinionated helpers and tools for easier use.
Install omnipotent
through npm
$ npm install --save omnipotent
Omniscient
Omniscient is all about making composable UIs in a functional manner. Having pure, referentially transparent components that gives a simpler static mental model, much like the static HTML - but bringing the views in a more powerful context in a programming language. Views will still be declarative and expressive, but without having to work with clunky and weird DSLs/template engines.
Read more about Omniscient.js in the repository README or our homepage.
Decorators
Decorators are modifiers for functions or components. Without modifying the original target, it extends and creates a new entity which has additional features or different behavior. Read more about decorators in Reginald Braithwaite book Allongé.
observer(structure : ImmstructStructure, fields : string|Array<string>, component : Component)
The observer
decorator is a very useful one if you need horizontal data dependencies. If you require one of your components to get injected data automatically and update everytime that data changes.
Include
Require the decorator by doing:
var observer = ;// orvar observer = decoratorobserver;
Usage
var structure = ; var Title = ; var ObservedTitle = ; ; // Update structure and componentstructure; // Also for things like async fetch
ignore(fields : string|Array<string>, component : Component)
The ignore
decorator is used to create components which ignore change on certain property names on props passed to a component.
Include
Require the decorator by doing:
var ignore = ;// orvar ignore = decoratorignore;
Usage
var struct = ; var Title = ; var IgnoredTitle = ; { React;} ;struct; // Will updatestruct;// Will not updatestruct;// Will updatestruct;
Other Helpers
Other helpers are non-catogarized helpers that you can use to ease your development with Omniscient.js and immstruct.
Component Factory with JSX as default
Many use JSX as default with Omniscient.js. You can create your own module using withDefaults
on Omniscient with jsx: true
, but then you'd have to use relative paths or scoped paths in your application. For easier use, you can use omnipotents jsx-defaulted helper.
Include
var component = ;// orvar component = jsxComponent;
Usage
var component = ;var View = ;React;