Text field example after Hesam Samimi's paper

This commit is contained in:
Tony Garnock-Jones 2013-12-02 21:49:52 -05:00
parent 83391258a1
commit 7d3b127cf2
3 changed files with 216 additions and 0 deletions

View File

@ -0,0 +1,39 @@
<!doctype html>
<html>
<head>
<title>JS Marketplace: Textfield Example</title>
<meta charset="utf-8">
<link href="../../third-party/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="../../third-party/bootstrap/css/bootstrap-responsive.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<script src="../../third-party/jquery-2.0.3.min.js"></script>
<script src="../../marketplace.js"></script>
<script src="../../spy.js"></script>
<script src="../../jquery-driver.js"></script>
<script src="../../wake-detector.js"></script>
<script src="../../websocket-driver.js"></script>
<script src="index.js"></script>
</head>
<body>
<div class="container-fluid">
<div class="row-fluid">
<div class="span12">
<h1>Textfield Example</h1>
<p>
After <a href="http://www.hesam.us/cooplangs/textfield.pdf">Hesam
Samimi's paper</a>.
</p>
<p id="inputRow" tabindex="0">Field contents: <span id="fieldContents"></span></p>
</div>
</div>
<div class="row-fluid">
<div class="span12">
<h2>Search</h2>
<input type="text" id="searchBox" value="iti">
</div>
</div>
</div>
</body>
</html>

165
examples/textfield/index.js Normal file
View File

@ -0,0 +1,165 @@
///////////////////////////////////////////////////////////////////////////
// GUI
function piece(text, pos, lo, hi, cls) {
return "<span class='"+cls+"'>"+
((pos >= lo && pos < hi)
? text.substring(lo, pos) + "<span class='cursor'></span>" + text.substring(pos, hi)
: text.substring(lo, hi))
+ "</span>";
}
function spawnGui() {
World.spawn({
boot: function () {
World.updateRoutes([sub(["jQuery", "#inputRow", "keypress", __]),
sub(["fieldContents", __, __], 0, 1),
sub(["highlight", __], 0, 1)]);
},
handleEvent: function (e) {
switch (e.type) {
case "routes":
var text = "", pos = 0, highlight = false;
// BUG: escape text!
for (var i = 0; i < e.routes.length; i++) {
var r = e.routes[i];
if (r.pattern[0] === "fieldContents") {
text = r.pattern[1];
pos = r.pattern[2];
} else if (r.pattern[0] === "highlight") {
highlight = r.pattern[1];
}
}
$("#fieldContents")[0].innerHTML = highlight
? piece(text, pos, 0, highlight[0], "normal") +
piece(text, pos, highlight[0], highlight[1], "highlight") +
piece(text, pos, highlight[1], text.length + 1, "normal")
: piece(text, pos, 0, text.length + 1, "normal");
break;
case "message":
if (e.message[0] === "jQuery") { // it's a keypress event
var keycode = e.message[3].keyCode;
var character = String.fromCharCode(e.message[3].charCode);
if (keycode === 37 /* left */) {
World.send(["fieldCommand", "cursorLeft"]);
} else if (keycode === 39 /* right */) {
World.send(["fieldCommand", "cursorRight"]);
} else if (keycode === 8 /* backspace */) {
World.send(["fieldCommand", "backspace"]);
} else if (character) {
World.send(["fieldCommand", ["insert", character]]);
}
}
}
}
});
}
///////////////////////////////////////////////////////////////////////////
// Textfield Model
function spawnModel() {
var initialContents = "initial";
World.spawn({
fieldContents: initialContents,
cursorPos: initialContents.length, /* positions address gaps between characters */
boot: function () {
World.updateRoutes(this.subscriptions());
},
subscriptions: function () {
return [sub(["fieldCommand", __]),
pub(["fieldContents", this.fieldContents, this.cursorPos])];
},
handleEvent: function (e) {
switch (e.type) {
case "message":
if (e.message[1] === "cursorLeft") {
this.cursorPos--;
if (this.cursorPos < 0)
this.cursorPos = 0;
} else if (e.message[1] === "cursorRight") {
this.cursorPos++;
if (this.cursorPos > this.fieldContents.length)
this.cursorPos = this.fieldContents.length;
} else if (e.message[1] === "backspace" && this.cursorPos > 0) {
this.fieldContents =
this.fieldContents.substring(0, this.cursorPos - 1) +
this.fieldContents.substring(this.cursorPos);
this.cursorPos--;
} else if (e.message[1].constructor === Array && e.message[1][0] === "insert") {
var newText = e.message[1][1];
this.fieldContents =
this.fieldContents.substring(0, this.cursorPos) +
newText +
this.fieldContents.substring(this.cursorPos);
this.cursorPos += newText.length;
}
World.updateRoutes(this.subscriptions());
break;
}
}
});
}
///////////////////////////////////////////////////////////////////////////
// Search engine
function spawnSearch() {
World.spawn({
fieldContents: "",
highlight: false,
boot: function () {
World.updateRoutes(this.subscriptions());
},
subscriptions: function () {
return [sub(["jQuery", "#searchBox", "+keypress", __]),
sub(["jQuery", "#searchBox", "change", __]),
sub(["fieldContents", __, __], 0, 1),
pub(["highlight", this.highlight])];
},
search: function () {
var searchtext = $("#searchBox")[0].value;
var oldHighlight = this.highlight;
if (searchtext) {
var pos = this.fieldContents.indexOf(searchtext);
this.highlight = (pos !== -1) && [pos, pos + searchtext.length];
} else {
this.highlight = false;
}
if (JSON.stringify(oldHighlight) !== JSON.stringify(this.highlight)) {
World.updateRoutes(this.subscriptions());
}
},
handleEvent: function (e) {
switch (e.type) {
case "routes":
for (var i = 0; i < e.routes.length; i++) {
var r = e.routes[i];
if (r.pattern[0] === "fieldContents") {
this.fieldContents = r.pattern[1];
}
}
this.search();
break;
case "message":
if (e.message[0] === "jQuery") { // it's a search box change or keypress
this.search();
}
}
}
});
}
///////////////////////////////////////////////////////////////////////////
// Main
var G;
$(document).ready(function () {
G = new Ground(function () {
spawnJQueryDriver();
spawnGui();
spawnModel();
spawnSearch();
});
G.startStepping();
});

View File

@ -0,0 +1,12 @@
#fieldContents {
font-family: monospace;
}
.cursor {
border-left: solid red 1px;
border-right: solid red 1px;
}
.highlight {
background-color: yellow;
}