Skip to content

Commit

Permalink
proof of concept init commit
Browse files Browse the repository at this point in the history
  • Loading branch information
aparrish committed Aug 17, 2019
0 parents commit fea59ac
Show file tree
Hide file tree
Showing 7 changed files with 371 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
*.swp
120 changes: 120 additions & 0 deletions README.md
@@ -0,0 +1,120 @@
# nb5.js: a notebook for p5js sketches (proof of concept)

by [Allison Parrish](https://www.decontextualize.com/)

Made for the "Landscape of Creative Technology" track at the 2019 p5.js
Contributor's Conference.

![gif of nb5 in action](images/nb5js-demo.gif)

## Rationale

I like notebook interfaces. I do most of my work in [Jupyter
Notebook](https://jupyter.org/). Notebooks have a handful of properties that
facilitate the kind of work that I do:

* Notebooks are composed of "cells," which are a level of abstraction and
reusability that cuts across the level of line and function;
* Cells can be executed out-of-order, making it possible to develop portions of
your code independently (without having to re-run everything from
scratch);
* Cells can contain code *or* text, making it easy to interject explanations,
documentation and signposts in your code;
* Notebooks can be shared and exported into different formats, producing not
"program" but a document of a process.

I use Jupyter Notebook extensively both for development, writing
tutorials, and distributing source code for tutorials and workshops. But while
notebook software like Jupyter, [Observable](https://beta.observablehq.com/),
and [Iodide](https://alpha.iodide.io/) support JavaScript as a programming
language, none of them have built-in, idiomatic support for p5.js, nor are they are not necessarily good matches for p5.js as a tool or as a community.

My criteria for a good p5.js notebook:

* It should work in [Global
Mode](https://github.com/processing/p5.js/wiki/Global-and-instance-mode), not
just instance mode. Instance mode is awkward and unfamiliar to
beginners.
* JavaScript code and sketch code should be visible, not hidden (as it often is
in Observable and in Iodide's Report mode).
* It should run p5.js sketches live in the browser.
* It should be as purely browser-based as possible, ideally with the ability to
run locally.
* Sketches in the notebook should be read and modify the global JavaScript
state, and also able to communicate with each other.
* It should be freely available and open source.

The primary purpose of of a p5.js notebook should be *writing and experimenting
with p5.js code*, not using p5.js as part of a development process for some
other language or framework.

There are a number of other attempts to make notebook-like interfaces for
p5.js, or to adapt p5.js to an existing notebook interface. Here are the ones
I'm aware of.

* [Discussions on using p5.js in Observable notebook](https://discourse.processing.org/t/include-p5-js-in-observable-notebook/458/2) on the Processing forum
* [p5.js in the Jupyter Notebook using the Jupyter Widgets](https://github.com/jtpio/ipyp5)
* [Jupyter Notebook magic for Global Mode](https://jupyter.brynmawr.edu/services/public/dblank/jupyter.cs/Testing%20P5%20in%20Javascript.ipynb)
* [Processing.js in an IPython Notebook](https://jarrodmcclean.com/processing-js-in-an-ipython-notebook/)

But none of these attempts meet all of the criteria I outlined above. So I
decided to make my own! Hence this GitHub repository.

## nb5.js proof of concept

I call it `nb5.js` and the code in here is a proof of concept. The primary
structural innovation of my approach is that there are separate cell types for
JavaScript code and for p5.js sketches. JavaScript code is executed with
`eval()`, while p5.js sketches are loaded in `<iframe>` elements with data
URLs. There's a global object, `nb5`, that facilitates sharing data between the
JavaScript context of the parent frame and the sketches running in child
frames.

What it does so far:

* Create, run and delete text, JavaScript, and p5.js sketch cells
* Call `nb5.set('x', val)` to make `val` available to parent frame JavaScript
and sketches; `nb5.get('x', defaultVal)` returns the current value for symbol
`x`, or `defaultVal` if it hasn't been set (or if the sketch hasn't received
the global state yet after running)

Missing functionality (pretty much everything):

* Save, load, export notebooks
* Reorder, cut, copy, paste cells
* Markdown rendering
* etc.

To try it out:

* Clone this repository somewhere
* Start a local web server on port 8000 (try running `python -m http.server`)
* Open `http://localhost:8000/` in the browser
* Have fun!

This is just a proof of concept, intended to help me clarify my ideas and
figure out what is possible. It's also a mess. Thank you for coping with it!
n its current state!

## License

Copyright 2019 Allison Parrish

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Binary file added images/nb5js-demo.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 62 additions & 0 deletions index.html
@@ -0,0 +1,62 @@
<!DOCTYPE html>
<html>
<head>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.dom.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/addons/p5.sound.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<meta charset="utf-8" />
<style type="text/css">
.cell {
border: 1px black solid;
padding-left: 4em;
padding-top: 0.5em;
padding-bottom: 0.5em;
padding-right: 0.5em;
margin: 0.5em;
}
.cell-focused {
border: 3px blue solid;
}
#ctrls {
position: fixed;
top: 0; left: 0;
background-color: white;
padding: 0.5em;
border-bottom: 1px black solid;
width: 100%;
font-size: 1.25em;
}
#ctrls button {
font-size: 1em;
}
#nbcontainer {
margin-top: 4em;
}
iframe {
border: 0;
}
</style>
</head>
<body>
<div id='ctrls'>
📓 <span style='font-family: fantasy; font-style: italic;
padding-right: 0.5em;'
title="nb5.js proof of concept by Allison Parrish">nb5.js</span>
<button id="addButton">+</button>
<button id="playButton">▶️</button>
<button id="cutButton"></button>
<select id="celltype">
<option value="md">markdown</option>
<option value="js">javascript</option>
<option value="p5">p5 sketch</option>
</select>
</div>

<div id="nbcontainer">
</div>

<script src="script.js"></script>

</body>
</html>
46 changes: 46 additions & 0 deletions nb-tools.js
@@ -0,0 +1,46 @@
window.nb5 = {
data: {},
set: function(varName, value) {
window.parent.postMessage(
{action: 'set', varName: varName, val: value},
"*")
},
get: function(varName, defaultVal) {
if (window.nb5.data.hasOwnProperty(varName)) {
return window.nb5.data[varName];
}
else {
return defaultVal;
}
},
sub: function() {
console.log('adding event listener in frame');
window.addEventListener("message", function(event) {
let msg = event.data;
console.log('in event listener: ', msg, window.nb5);
if (msg.action == 'publish') {
window.nb5.data[msg.varName] = msg.val;
}
}, false);
},
getAll: function(varName) {
console.log("in nb5.get()");
window.parent.postMessage({
action: 'getAll',
varName: varName,
}, "*");
function handler(event) {
if (event.data.action == 'getAllResponse') {
window.removeEventListener('message', handler, false);
window.nb5.data = event.data.val;
if (window.nb5Ready) {
window.nb5Ready();
}
}
}
window.addEventListener('message', handler, '*');
}
}

window.nb5.sub();
window.nb5.getAll();
Binary file added nb5js-demo.gif
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
142 changes: 142 additions & 0 deletions script.js
@@ -0,0 +1,142 @@

currentElem = null;

function makeCell(kind) {
let d = createDiv();
d.addClass('cell');
d.addClass(kind);
let edit;
let rendered;
let output;
switch (select('#celltype').value()) {
case 'md':
edit = createElement('textarea');
edit.elt.placeholder = "im a markdown cell yay";
edit.attribute('cols', 80);
edit.attribute('rows', 3);
edit.addClass('edit');
output = createDiv("");
output.addClass('output');
rendered = createDiv("");
rendered.addClass('rendered');
break;
case 'js':
edit = createElement('textarea');
edit.attribute('cols', 80);
edit.attribute('rows', 3);
edit.elt.placeholder = "/* js cell */"
edit.addClass('edit');
output = createDiv("");
output.addClass('output');
rendered = createDiv("");
rendered.addClass('rendered');
break;
case 'p5':
edit = createElement('textarea');
edit.attribute('cols', 80);
edit.attribute('rows', 3);
edit.elt.placeholder = "function setup() {}";
edit.addClass('edit');
output = createDiv("");
output.addClass('output');
rendered = createDiv("");
rendered.addClass('rendered');
break;
}
edit.parent(d);
rendered.parent(d);
output.parent(d);
rendered.style('display', 'none');
d.attribute('tabindex', 0);
d.elt.addEventListener('focus', function(e) {
for (let el of selectAll('.cell')) {
el.removeClass('cell-focused');
}
currentElem = d;
currentElem.addClass('cell-focused');
});
d.elt.focus();
return d;
}

function makeP5Frame(s) {
let sDoc = `<html><head><script src='http://localhost:8000/nb-tools.js'></script><script src='https://cdnjs.cloudflare.com/ajax/libs/p5.js/0.9.0/p5.js'></script></head><body><script type='text/javascript'>${s}</script></body></html>`;
let srcEncoded = btoa(sDoc);
let srcUrl = `data:text/html;base64,${srcEncoded}`;
let iframe = createElement('iframe');
iframe.attribute('width', '250');
iframe.attribute('height', '250');
iframe.attribute('src', srcUrl);
return iframe;
}

function setup() {
noCanvas();
select('#addButton').mouseClicked(addCell);
select('#playButton').mouseClicked(runActiveCell);
select('#cutButton').mouseClicked(deleteActiveCell);
}
function addCell() {
let d = makeCell(select('#celltype').value());
d.parent('nbcontainer');
}
function runActiveCell() {
console.log(currentElem);
let src = select('.edit', currentElem).elt.value
if (currentElem.hasClass('md')) {
console.log("would render md");
}
else if (currentElem.hasClass('js')) {
let outdiv = select('.output', currentElem);
try {
let output = eval(src);
outdiv.html(output);
}
catch (e) {
outdiv.html(e.message);
}
}
else if (currentElem.hasClass('p5')) {
let frame = makeP5Frame(src);
select('.output', currentElem).html('');
select('.output', currentElem).child(frame);
}
}

function deleteActiveCell() {
currentElem.remove();
}

window.addEventListener("message", receiveMessage, false);
function receiveMessage(event) {
let msg = event.data;
console.log("in receiveMessage", event);
if (msg.action == 'set') {
publishToAll(msg.varName, msg.val);
}
else if (msg.action == 'getAll') {
event.source.postMessage(
{action: 'getAllResponse', val: window.nb5.data}, "*");
}
}

function publishToAll(varName, val) {
console.log('publishing...');
for (let i = 0; i < window.frames.length; i++) {
window.frames[i].postMessage(
{action: 'publish', varName: varName, val: val}, '*');
}
}

window.nb5 = {
data: {},
set: function(varName, val) {
console.log('hi?');
publishToAll(varName, val);
window.nb5.data[varName] = val;
return val;
},
get: function(varName) {
return window.nb5.data[varName];
}
};

0 comments on commit fea59ac

Please sign in to comment.