(Actually the React part is just for easy integration. But it's not essential.)
Cyrena is an experimental UI framework. It allows to have streams in any position of a JSX: as child nodes, attributes, or even just parts of (object) attributes. Cyrena currently works on top of Cycle.js, xstream and React. To put it in a more scientific way, it's a transpositional extension, which turns Cycle.js components inside-out: instead of having views defined in streams, we're defining streams in views. It puts the view in the center, to make composition as easy and trivial as it is in React - while keeping all the benefits of a purely functional-reactive environment. Any regular Cycle.js and React component can be included seamlessly in a Cyrena app.
function Timer(sources) {
return (
<h2>Timer: {xs.periodic(1000)}</h2>
)
}
Examples:
- Hello World
- Timer
- Counter
- Scope
- Todo List - simple
- Todo List - advanced
- React component with Cycle state
- Tic Tac Toe
- Testing dashboard
Click to expand
React and Cycle.js have separate advantages and compromises, and I wanted to bring the good parts together.
React's benefits are that it's view-based, and imperative. Imperative means that the developer works with first-order values and nudges the application further by calling setState imperatively. This is by far the most accessible way for developers to proceed and get things done.
Being view-based means, that when we see a piece of React code, we immediately recognize the structure of the app or component by having a glimpse on the JSX part.
But all this comes at the price of an unconventional programming model, where the render function gets called many times by the runtime. And having the ability to return with completely different output VDOMs based on different inputs, defeats the purpose of the JSX as a structural overview. In idiomatic React code, most of the JSX is conceptually a static hierarchy, which contains changing bits and pieces. But in reality, not just the changing parts, but all the conceptually static parts, too, are re-evaluated and matched with the previous output. Sometimes it needs special awareness. And this reasoning goes for the logic as well, with the well-known Rules of Hooks. This might not be a big deal, you might think, but what I think is that we can do it better.
Cycle.js is a purely functional-reactive framework, and I won't detail how useful this fact is. It's also quite mature in its current state. Components are static, they're called once, and not by a runtime, but simply by the app author. The downside of it is that it's not view-based. Sure, we do have the view part, and it can even be JSX, but unfortunately this view part is not in the static scope. It's in the same iteratee-realm in which React is. But here it comes with a serious consequence: there's no easy composition! You can't throw in components in the VDOM tree. You have to do cumbersome boilerplate even for basic composition.
This led me to explore the possibilities to make something as simple and composable as React, but as right in its programming model as Cycle.js. This pursue resulted in Cyrena.
- Motivation
- Guide
Install Cyrena and its peer dependencies:
npm install cyrena @cycle/react react xstream
Install the usual Cycle/react dependencies:
npm install @cycle/run @cycle/react-dom @cycle/state
Besides following the Installation steps, make sure that your setup can handle JSX, because Cyrena was made with JSX in mind. Cyrena has its own JSX pragma:
import withPower from 'cyrena'
/** @jsx withPower.pragma */
/** @jsxFrag withPower.Fragment */
Obviously you can skip using JSX, if you really wish, but you'll still need the pragma.
We've seen the default import above named withPower
, but let's forget that for now. Cyrena's core utility is the cyrena
function, which takes 3 arguments, and returns a regular Cycle.js sinks object. (Don't pick on the name cyrena
; at the end of the day, you won't even need to use this function.)
- The first argument is a static VDOM, which can contain streams and other components (even inline components! We'll see them later).
- The second argument is the sinks object, which contains all of the sinks for the current component, except the view.
- The third argument is the sources object which Cyrena will pass to the components during the VDOM traversal.
Let's see a basic example of an atomic component:
// Regular Cycle.js component
function Cmp(sources) {
const state$ = sources.state.stream
return {
react: state$.map(state => <div>{state}</div>)
}
}
It turns into:
function Cmp(sources) {
const state$ = sources.state.stream
return cyrena(
<div>{state$}</div>,
null,
sources
)
}
At the moment it doesn't seem to be much useful, but what happens when you want to include a child component, for example a Panel, in which you want to wrap the content. It leads to serious boilerplate:
function Cmp(sources) {
const state$ = sources.state.stream
const panelSinks = Panel({ ...sources, props: { title: 'State' }})
return {
react: panelSinks.react.map(panelVdom =>
<div>
State in a panel:
{panelVdom}
</div>
)
}
}
With Cyrena, it remains an atomic step:
function Cmp(sources) {
const state$ = sources.state.stream
return cyrena(
<div>
State in a panel:
<Panel title="State">
{state$}
</Panel>
</div>
null,
sources
)
}
You can see the limitation in the first version: you can't put content and pass props to the Panel component in the VDOM. Wrapping a section of a content into a container is not a trivial action – you have to declare and manually invoke every related component separately from the VDOM. In the Cyrena example you might now have an idea how easy it can go with composition. The cyrena
function will invoke the Panel component with passing the sources object to it (given as the 3rd parameter). Whenever the Panel component's view stream updates, the outer component will update as well. We'll see more powerful examples in the next sections, but let's not rush ahead.
How do we define our other sinks then, which are not the view? This is what the second argument is for:
function Cmp(sources) {
const state$ = sources.state.stream
return cyrena(
<div>
State in a panel:
<Panel title="State">
{state$}
</Panel>
</div>
{
state: ...,
HTTP: ...
},
sources
)
}
Let's wrap up what the cyrena
function does exactly:
- It traverses the VDOM and searches for streams and components (see section Streams and components everywhere for details).
- It creates a view stream for the outer component which combines all the view streams in the given VDOM, and updates with the original VDOM structure.
- It collects all the non-view sink channels which were found in the inner components' sinks objects, and merges them all by channel. It also adds the sinks of the second argument to the merges. The result sinks object will be the return value of the
cyrena
function.
From the last example of the previous section we learned that the VDOM traversal stops at the Panel component. The Panel component can do anything with the state$ stream which it received through sources.props.children
. It can even dismiss it. This is the same behavior as you can find in React. In order to see the state in the app, the Panel component must include its sources.props.children
in its VDOM:
function Panel(sources) {
return cyrena(
<div className="some panel styling">
<h2 className="title">{sources.props.title}</h2>
{sources.props.children}
</div>,
null,
sources
)
}
One important fact to realize here is that the Panel component is not invoked by the app developer, but by Cyrena. So Cyrena sees its output, and it can automatically call the cyrena function on it, so we have less to type:
function Panel(sources) {
return [
<div className="some panel styling">
<h2 className="title">{sources.props.title}</h2>
{sources.props.children}
</div>,
null,
sources
]
}
This convenience shortcut changes the regular signature of a Cycle.js component's output, but we'll see how it hugely pays off. We can even omit the sources object too, because Cyrena already has it from the first cyrena
call. If there's no non-view sink channel for the component, we can omit the second parameter too and the array wrapping, so this results in as simple as this:
function Panel(sources) {
return (
<div className="some panel styling">
<h2 className="title">{sources.props.title}</h2>
{sources.props.children}
</div>
)
}
Every component which returns with the shortcut return format, conveys the same amount of information as a regular Cycle.js component, it's just 'controlled' by Cyrena. The only thing we have to watch out for, is to have a root cyrena
call to have the VDOM 'controlled'. It turns out, we can wrap our main component in a higher order function to do this:
import withPower from 'cyrena'
/** @jsx withPower.pragma */
/** @jsxFrag withPower.Fragment */
// ...
run(withPower(main), drivers)
With the withPower
function, you don't ever need to use the cyrena function! You can just return with the VDOM, or with an array containing the VDOM and the event sinks object.
Cyrena collects streams and components from the VDOM according to the following rules:
-
When it finds a stream as a VDOM child, it collects the stream:
function main (sources) { // ... return ( <div>{state$}</div> ) }
-
When it finds a stream in a prop of a plain DOM (e.g. a 'div') element, it collects the stream:
function main (sources) { // ... return ( <div style={ { background: color$ } }>...</div> ) }
-
When it finds a component (e.g. Panel) element, it invokes it with the sources objects, and collects its sinks. It doesn't continue the traversal under the component element. It passes the props object as
sources.props
. The inner component can access the children assources.props.children
:function Panel (sources) { return ( <> <h1>{sources.props.title}</h1> {sources.props.children} </> } function main (sources) { return ( <div> <Panel title="My Panel">...</Panel> </div> ) }
-
When it finds a function as a VDOM child, it's interpreted as an inline component. Cyrena will invoke the component with the sources object and collects its sinks, just like as it were a component element:
function main (sources) { return ( <div> {sources => { return [ <div>...</div>, { state: ... } ] }} </div> ) }
Any VDOM node can have a scope
prop, which will act as a regular Cycle.js isolation scope for the given element. As components act as boundaries in the Cyrena traversal, a scope will not just affect the component, but the complete sub-VDOM under it as well.
function ShowState(sources) {
return (
<pre>{sources.state.stream.map(JSON.stringify)}</pre>
)
}
function main(sources) {
const reducer$ = xs.of(() => ({
foo: { bar: { baz: 5 } }
}))
return [
<ShowState scope='foo' />,
{ state: reducer$ }
]
// will show {"bar":{"baz":5}}"
}
Unlike the regular Cycle.js scope parameter, the scope
prop can be a nested lens:
return [
<ShowState scope='foo.bar' />,
{ state: reducer$ }
]
// will show {"baz":5}"
And of course it can be a full scope object:
return [
<ShowState scope={ { state: {
get: state => JSON.stringify(state.foo.bar),
set: (state, childState) => ({ ...state, foo: JSON.parse(childState)})
} }} />
{ state: reducer$ }
]
// will show "{\"baz\":5}"
The scope
prop can be used on a DOM element as well. In this case, the scope
will be applied to all the other props
(for get
and onChange
, see Helpers, Shortcuts and Tips).
If there's both an if
and scope
prop on the element, their precedence will be
defined by their definition order on the node!
// state: { todos: [{ text: 'todo1' }, { text: 'todo2' }, { text: 'todo3' }]}
...
<Collection for='todos'>
<div>
<input scope='item.text' value={get()} onChange={({ target: { value } }) => () => value} />
<button onClick={() => COLLECTION_DELETE}>Remove</button>
</div>
</Collection>
By default, every component in Cyrena is scoped on the view channel. If you need to lift this rule occasionally, you can provide a noscope
prop on the component. The reason for this rule is to make string VDOM selectors safe by default. String VDOM selectors are useful, because they eliminate the necessity of boilerplate Symbol declarations. Take a look at this inline component, which is inside a Collection
item:
{src => [
<button sel='remove'>Remove</button>,
{ state: src.sel.remove.click.mapTo(COLLECTION_DELETE) }
]}
Wraps the then
or else
value in a Fragment based on the cond
property. The
cond
property can be either a stream or a stream callback. then
and else
values
can any vdom child.
<If cond={condition}
then={value}
else={otherValue}
/>
As an alternative way of defining the then
branch, instead of using the then
prop,
you can define the then
children as the vdom subtree of the If component:
<If cond={condition} [else={...}]>
{`then` value}
/>
Controls the existence of the element based on the if
condition:
<div if={condition}>Remove</div>
If there's both an if
and scope
prop on the element, their precedence will be
defined by their definition order on the node!
Cyrena has a Collection
component which makes handling dynamic lists easy and trivial. By default, you don't need to provide any props to Collection
. It uses the state channel as its input, so make sure that you scope down the state either on the Collection
component or somewhere above. The Collection
component will take its VDOM children as a fragment as its item component, so you can put anything between the opening and closing <Collection>
tags. The Collection package also has a const for item removal reducer:
<Collection>
<Combobox />
{src => [
<button sel='remove'>Remove</button>,
{ state: src.sel.remove.click.mapTo(COLLECTION_DELETE) }
]}
</Collection>
There are cases when you need to interact with the outer state from the items. For example, you need to duplicate an item, or set some state somewhere else, based upon the current item's state. For these cases, Collection
automatically provides an extra stream in the items' sources object: outerState
(the name can be specified with outerstate
prop). Items can also leave reducers in their outerState
sink. In order to interact with not just the collection array itself, even outer states, use the for
prop on the Collection
. The for
prop works exactly like scope
in specifying the collection's array, but it doesn't scope down the component, so outerState can see beyond the list.
/*
{
globalColor: "blue",
foobar: {
list: [{ color: "white", id: {} }, { color: "blue", id: {} }]
}
}
*/
<Collection for='foobar.list'>
Set color: <Combobox />
{src => [
<button sel='set'>Set as global</button>,
{
outerState: src.sel.set.click
.compose(sampleCombine(src.state.stream))
.map(([click, state]) => outerState => ({
...outerState,
globalColor: state.color
}))
}
]}
</Collection>
See the Todo app for an example
Cyrena makes use of onClick-style even props on elements. Event props are basically shortcuts for inline components. There are 2 types of event props:
on<Eventname>={ { sink1: <event$ to sink$ mapper>, sink2: <event$ to sink$ mapper>, ...} }
When the event prop value is an object, it is treated as a special sinks object, where the values are mappers between the event stream to the sink stream.
on<Eventname>={<event to state mapper>}
When the event prop value is a function, it is handled as a mapper between the event object and the state (reducer). The state will be consumed by the state sink.
Examples:
<div>
{src => [
Last click position: {get()}<br />
<button>Make a request</button>,
{
state: src.el.click.map(ev => () => `${ev.clientX},${ev.clientY}`),
HTTP: src.el.click.mapTo({ url: '?you-clicked' })
}
]}
</div>
With using event props, this can be rewritten as below. You can see that there's no more need to wrap the fragment in an inline component:
<div>
Last click position: {get()}<br />
<button
onClick={ {
state: ev$ => ev$.map(ev => `${ev.clientX},${ev.clientY}`),
HTTP: ev$ => ev$.mapTo({ url: '?you-clicked' })
}}
>Make a request</button>
</div>
Most of the times we're only concerned about the state sink. For this, the callback shortcut is even better:
<div>
<button onClick={ev => () => ({ action: 'ADD' })}>Add</button>
</div>
Let's see another example. Here, we want to use a reducer with a <select>
element:
function Combobox (sources) {
return (
<>
<label>Color: </label>
<select
value={get('color')}
onChange={ev => prev => ({ ...prev, color: ev.target.value })}
>
<option value='red'>Red</option>
<option value='blue'>Blue</option>
</select>
</>
)
}
In this case, by the time the reducer will be called, the event object will be nullyfied by React, and React will throw an error related to the synthetic event. Destructuring the arguments helps to overcome this problem:
function Combobox (sources) {
return (
<>
<label>Color: </label>
<select
value={get('color')}
onChange={({ target: { value }}) => prev => ({ ...prev, color: value })}
>
<option value='red'>Red</option>
<option value='blue'>Blue</option>
</select>
</>
)
}
React components can be included in the VDOM by wrapping them in the ReactRealm component. To use the state from the Cycle.js environment, Cyrena offers the useCycleState
hook. You can put any content inside the opening and closing <ReactRealm>
tags, they won't be traversed by Cyrena. That part of the VDOM will go directly into the React engine:
import { ReactRealm, useCycleState } from 'cyrena/util/ReactRealm'
function ReactCounter(props) {
const [count, setCount] = useCycleState(props.sources)
return (
<div>
<div>Counter: {count}</div>
<button onClick={() => setCount(count + 1)}>Increment</button>
</div>
)
}
function main(sources) {
const state$ = sources.state.stream
const reducer$ = xs.of(() => ({
counter: 5
}))
return [
<div>
<ReactRealm scope='counter'>
We're under a React realm!
<ReactCounter />
</ReactRealm>
<pre>{state$.map(JSON.stringify)}</pre>
</div>,
{ state: reducer$ }
]
}
-
The
map
utility function is a handy helper to get the state in the VDOM. It has 2 signatures:map(mapperFn, <sources>)
If the sources object is provided as the second parameter, the
map
function returns with a stream which mapssources.state.stream
over themapperFn
, so it's a shortcut for<sources>.state.stream.map(mapperFn)
:function ShowState(sources) { return ( <Code>{map(JSON.stringify, sources)}</Code> {/* <Code>{sources.state.stream.map(JSON.stringify)}</Code> */} ) }
map(mapperFn)
If the sources object is omitted, then the
map
function returns with an inline component, which has the content ofsources.state.stream
, mapped overmapperFn
, so it's a shortcut for{ sources => <>{map(mapperFn, sources)}</> }
:function ShowState(sources) { return ( <Code>{map(JSON.stringify)}</Code> {/* <Code>{sources => <>{map(JSON.stringify, sources)}</>}</Code> */} ) }
Note, that in props, you can only use it with the sources object, as inline components are not applicable as props.
-
The
get
function works exactly likemap
regarding its signature. The only difference is that it uses a Lodash getter as the mapperFn. It's a convenient shortcut for getting a chunk of the state:function ShowColor(sources) { const reducer$ = xs.of(() => ({ color: 'red' })) return ( <pre style={ { background: get('color', sources) } }>It's {get('color')}</pre> ) }
When the
get
function is called with no or empty parameter, it returns with the state object itself:function ShowColor(sources) { const reducer$ = xs.of(() => ({ color: 'red' })) return ( <Scope scope='color'> <pre style={ { background: get('', sources) } }>It's {get()}</Code> </Scope> ) }
-
View selection has a convenience shortcut. Instead of writing
sources.react.select('input').events('change').map(ev => ev.target.value)
You can write just:
sources.sel.input.change['target.value']
Example:
<Collection> <pre> <Combobox /> {src => [ <button sel='remove'>Remove</button>, { state: src.sel.remove.click.mapTo(COLLECTION_DELETE) } ]} <br /> {src => <div style={ { color: get('color', src) } }> <ShowState /> </div> } </pre> </Collection>
On a relative root element, you can even leave
sel=
and just writesources.el
, which will refer to the root element:{src => [ <button>Remove</button>, { state: src.el.click.mapTo(COLLECTION_DELETE) } ]}
-
You can opt-out from Cyrena at any place in the VDOM by just returning a regular sinks object. The underlying components will not be controlled by Cyrena.