2
2
This notebook is not executable.
You already have interactivity in Pluto - by defining variables in separate cells, and changing their value. The only thing missing is UI to replace the process of type-new-value-and-run. Because this is only a minor change, the syntax should be minimal.
You should be able to go from a cell like:
Multiple definitions for t
Combine all definitions into a single reactive cell using a `begin ... end` block.
to something like
Multiple definitions for t
Combine all definitions into a single reactive cell using a `begin ... end` block.
this @bind var domobject
expression will modify the domobject and return the modified object, which will show
to text/html
as:
<input type="range" min="1" max="9" defines="x">
this custom modifies
attribute contains the space-separated list of workspace variable names that it will set its value to.
The Pluto JS client will check all output for HTML inputs with this attribute set, and attach the appropriate event listeners.
exactly what the Slider
object will be, I still haven't decided - it would be nice to re-use a lightweight DOM library, like Hyperscript.jl
.
Type
The variable t
is still of type Int64
, and changing its value using the DOM input will behave identically to changing the code from t = 1
to t = 2
. This means that you write 'interactive listeners' using the syntax:
Another cell defining t contains errors.
Complex UI
the "@bind
expression returns the slider object, so you can create more complicated UI like this:
UndefVarError: Slider not defined
Here is what happened, the most recent locations are first:
- macro expansionfrom This cell: line 125
- Show more...
(you can put HTML objects like inside a markdown literal)