adding load-script to the FFI; modified examples/raphael-demo.rkt so that it loads the raphael library dynamically
This commit is contained in:
parent
7b2618bf14
commit
d41aa187e3
|
@ -6,14 +6,13 @@
|
|||
; This is a small demonstration of the Javascript
|
||||
; graphics library Raphael from http://raphaeljs.com/ .
|
||||
|
||||
; Include the small script in raphael-script.js to load Rapahel (old version 1.5.2).
|
||||
; racket ../../whalesong.rkt build --include-script raphael-script.js raphael-demo.rkt
|
||||
|
||||
; The example below the bindings draws a Lissajous curve.
|
||||
|
||||
|
||||
;;;
|
||||
;;; Whalesong binding of Raphael
|
||||
(load-script "http://yandex.st/raphael/1.5.2/raphael.js")
|
||||
;;;
|
||||
|
||||
(define paper #f)
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
<script type="text/javascript" src="http://yandex.st/raphael/1.5.2/raphael.js">
|
||||
</script>
|
||||
|
||||
|
|
@ -5,7 +5,9 @@
|
|||
"use strict";
|
||||
|
||||
var VOID = plt.baselib.constants.VOID_VALUE;
|
||||
var PAUSE = plt.runtime.PAUSE;
|
||||
var makePrimitiveProcedure = plt.baselib.functions.makePrimitiveProcedure;
|
||||
var makeClosure = plt.baselib.functions.makeClosure;
|
||||
var makeCheckArgumentType = plt.baselib.check.makeCheckArgumentType;
|
||||
var checkSymbolOrString = plt.baselib.check.checkSymbolOrString;
|
||||
var checkString = plt.baselib.check.checkString;
|
||||
|
@ -22,6 +24,56 @@
|
|||
var checkJsNumber = makeCheckArgumentType(isJsNumber, 'JavaScript number');
|
||||
|
||||
|
||||
|
||||
//////////////////////////////////////////////////////////////////////
|
||||
/* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
*
|
||||
* Contact information:
|
||||
* Dao Gottwald <dao at design-noir.de>
|
||||
*
|
||||
* @version 1.6
|
||||
* @url http://design-noir.de/webdev/JS/loadScript/
|
||||
*/
|
||||
var _loadScriptQueue = {};
|
||||
var loadScript = function(url, callback, onError) {
|
||||
var queue = _loadScriptQueue;
|
||||
if (url in queue) { // script is already in the document
|
||||
if (callback) {
|
||||
if (queue[url]) // still loading
|
||||
queue[url].push(callback);
|
||||
else // loaded
|
||||
callback();
|
||||
}
|
||||
return;
|
||||
}
|
||||
queue[url] = callback ? [callback] : [];
|
||||
var script = document.createElement("script");
|
||||
script.type = "text/javascript";
|
||||
script.onload = script.onreadystatechange = function() {
|
||||
if (script.readyState && script.readyState != "loaded" && script.readyState != "complete")
|
||||
return;
|
||||
script.onreadystatechange = script.onload = null;
|
||||
document.getElementsByTagName("head")[0].removeChild(script);
|
||||
var work = queue[url];
|
||||
delete(queue[url]);
|
||||
while (work.length)
|
||||
work.shift()();
|
||||
};
|
||||
script.onerror = function() {
|
||||
script.onreadystatechange = script.onload = null;
|
||||
document.getElementsByTagName("head")[0].removeChild(script);
|
||||
onError();
|
||||
};
|
||||
script.src = url;
|
||||
document.getElementsByTagName("head")[0].appendChild(script);
|
||||
};
|
||||
|
||||
|
||||
|
||||
EXPORTS['alert'] =
|
||||
makePrimitiveProcedure(
|
||||
'alert',
|
||||
|
@ -42,6 +94,41 @@
|
|||
return obj;
|
||||
});
|
||||
|
||||
EXPORTS['load-script'] =
|
||||
makeClosure(
|
||||
'load-script',
|
||||
1,
|
||||
function(MACHINE) {
|
||||
var url = checkString(MACHINE, 'load-string', 0);
|
||||
PAUSE(
|
||||
function(restart) {
|
||||
var onload = function() {
|
||||
restart(function(MACHINE) {
|
||||
plt.runtime.finalizeClosureCall(
|
||||
MACHINE,
|
||||
VOID);
|
||||
});
|
||||
};
|
||||
var onerror = function(e) {
|
||||
restart(function(MACHINE) {
|
||||
plt.baselib.exceptions.raiseFailure(
|
||||
MACHINE,
|
||||
plt.baselib.format.format(
|
||||
"unable to load ~a: ~a",
|
||||
[url,
|
||||
e.message]));
|
||||
});
|
||||
};
|
||||
loadScript(url.toString(),
|
||||
onload,
|
||||
onerror);
|
||||
}
|
||||
);
|
||||
},
|
||||
void(0));
|
||||
|
||||
|
||||
|
||||
EXPORTS['body'] = $(document.body);
|
||||
|
||||
EXPORTS['$'] =
|
||||
|
|
|
@ -29,4 +29,6 @@
|
|||
js-null
|
||||
|
||||
js-eval
|
||||
|
||||
load-script
|
||||
))
|
|
@ -19,6 +19,8 @@
|
|||
js-null
|
||||
|
||||
js-eval
|
||||
|
||||
load-script
|
||||
)
|
||||
|
||||
(define (alert x)
|
||||
|
@ -90,3 +92,10 @@
|
|||
(define (viewport-height)
|
||||
(error 'viewport-width "Not available outside JavaScript context."))
|
||||
|
||||
|
||||
|
||||
;; load-script: string -> void
|
||||
;; Load the url as a script.
|
||||
(define (load-script url)
|
||||
(error 'load-script "Not available outside JavaScript context."))
|
||||
|
||||
|
|
|
@ -7,4 +7,4 @@
|
|||
(provide version)
|
||||
(: version String)
|
||||
|
||||
(define version "1.189")
|
||||
(define version "1.191")
|
||||
|
|
Loading…
Reference in New Issue
Block a user