
Security News
/Research
Wallet-Draining npm Package Impersonates Nodemailer to Hijack Crypto Transactions
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
bacon.react.html
Advanced tools
This library allows you to embed Bacon observables into React Virtual DOM.
The prelifted classes can be accessed from the default import:
import B from "bacon.react.html"
The names of the prelifted classes are the same as in React.DOM
.
A lifted class eliminates Bacon observables that appear as attributes or direct
children of the produced element. For example, using the lifted class B.div
,
you could write
<B.div>Hello, {observable}!</B.div>
where observable
refers to a Bacon observable. The resulting div
always
shows the latest value produced by the observable.
The mount
attribute on a lifted element
<B.input mount={c => c && c.focus()}/>
does the same thing as the ordinary JSX ref
attribute: JSX/React treats it as
a special case, so it had to be renamed.
The bind
attribute template
import {bind} from "bacon.react.html"
can be used to bind an attribute, e.g. value
or checked
, to an object with a
set
method such as a Bacon.Atom:
const settable = Atom("")
...
<B.input type="text"
mount={c => c && c.focus()}
{...bind({value: settable})}/>
bind
extends the given object, above {value: settable}
, with an onChange
attribute containing a function that copies the attribute, above value
, from
the event target to the attribute object, above settable
.
The classes
attribute template
import {classes} from "bacon.react.html"
offers a way to specify className
with conditional content depending on
observables. For example:
...
<B.div {...classes("unconditional",
condition && "conditional",
condition ? "true" : "false",
observable.map(c => c && "conditional-and-observable"))}>
Not too classy?</B.div>
classes(...)
extends to an object of the form {className: string | observable}
.
A single lifted class, like B.input
, eliminates Bacon observables only when
they are immediately contained attributes or children of the element. So, you
can safely nest lifted elements:
const checked = Atom(false)
...
<B.div>
<B.label htmlFor="likes-bacon">Bacon is tasty:</B.label>
<B.input type="checkbox"
id="likes-bacon"
{...bind({checked})}/>
<B.div hidden={checked}><B.em>Are you sure?</B.em></B.div>
</B.div>
Note, however, that only those elements that immediately contain observables must be lifted, because React will choke on plain Bacon. So, the above could also have been written as:
const checked = Atom(false)
...
<div>
<label htmlFor="likes-bacon">Bacon is tasty:</label>
<B.input type="checkbox"
id="likes-bacon"
{...bind({checked})}/>
<B.div hidden={checked}><em>Are you sure?</em></B.div>
</div>
For best performance this latter version is preferable.
If you need a lifted version of a HTML class that is not already lifted, you can
use fromClass
:
import B, {fromClass} from "bacon.react.html"
...
B.special = fromClass("special")
There is also fromClasses
that lifts an object of classes to an object of
lifted classes. For example, given
import {fromClasses} from "bacon.react.html"
...
const L = fromClasses({Some, Custom, Classes})
then L.Some
, L.Custom
and L.Classes
are lifted versions of Some
,
Custom
and Classes
.
fromClass
and the prelifted classes handle the cases where the class of the
element is statically known or the element is a child of some element. In case
the class of a top-most element depends on a Bacon observable, one can use
fromBacon
:
import {fromBacon} from "bacon.react.html"
...
const choice = Atom(false)
...
fromBacon(choice.map(c => c ? <True/> : <False/>))
For notational convenience, the default import
import B from "bacon.react.html"
is also a generalized hybrid of Bacon.combineTemplate and Bacon.combineWith with .skipDuplicates(R.equals).
The meaning of B
can be described as
B(fn)(x1, ..., xN) === B(fn, x1, ..., xN)
B(fn, x1, ..., xN) === combine(lift(fn), lift(x1), ..., lift(xN))
B(x1, ..., xN, fn) === combine(lift(x1), ..., lift(xN), lift(fn))
where
const lift = x =>
x && (x.constructor === Object || x.constructor === Array)
? Bacon.combineTemplate(x)
: x
and
const combine = (...ps) =>
Bacon.combineWith(...ps).skipDuplicates(R.equals)
In other words, B(fn)
effectively lifts the given function fn
to operate on
templates of observables. B(fn, x1, ..., xN)
and B(x1, ..., xN, fn)
, where
N >= 1
, is a generalization of Bacon.combineWith
where arguments are
templates of observables. Finally, duplicates are removed from the resulting
property based on deep structural equality.
That's all folks!
FAQs
JSX with Bacon, yummy?
The npm package bacon.react.html receives a total of 9 weekly downloads. As such, bacon.react.html popularity was classified as not popular.
We found that bacon.react.html demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.
Security News
/Research
Malicious Nx npm versions stole secrets and wallet info using AI CLI tools; Socket’s AI scanner detected the supply chain attack and flagged the malware.