mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 09:08:28 -05:00
205 lines
5.7 KiB
JavaScript
205 lines
5.7 KiB
JavaScript
// Simulate the bare minimum of the view that exists on the main site
|
|
var Scratch = Scratch || {};
|
|
Scratch.FlashApp = Scratch.FlashApp || {};
|
|
|
|
function handleEmbedStatus(e) {
|
|
$('#scratch-loader').hide();
|
|
var scratch = $('#editor');
|
|
if (!e.success) {
|
|
scratch.css('marginTop', '10');
|
|
scratch.find('IMG.proj_thumb').css('width', '179px');
|
|
scratch.find('DIV.scratch_unsupported').show();
|
|
scratch.find('DIV.scratch_loading').hide();
|
|
} else {
|
|
Scratch.FlashApp.ASobj = scratch[0];
|
|
}
|
|
}
|
|
|
|
// enables the SWF to log errors
|
|
function JSthrowError(e) {
|
|
if (window.onerror) window.onerror(e, 'swf', 0);
|
|
else console.error(e);
|
|
}
|
|
|
|
function JSeditorReady() {
|
|
try {
|
|
handleParameters();
|
|
$("#editor").trigger("editorReady");
|
|
return true;
|
|
} catch (error) {
|
|
console.error(error.message, "\n", error.stack);
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
function JSprojectLoaded() {
|
|
loadExtensionQueue();
|
|
}
|
|
|
|
var extensionQueue = [];
|
|
function handleParameters() {
|
|
var project;
|
|
var queryString = window.location.search.substring(1);
|
|
var queryVars = queryString.split(/[&;]/);
|
|
for (var i = 0; i < queryVars.length; i++) {
|
|
var nameVal = queryVars[i].split('=');
|
|
switch(nameVal[0]){
|
|
case 'ext':
|
|
extensionQueue.push(nameVal[1]);
|
|
break;
|
|
case 'proj':
|
|
project = nameVal[1];
|
|
break;
|
|
}
|
|
}
|
|
if (project) {
|
|
Scratch.FlashApp.ASobj.ASloadSBXFromURL(project);
|
|
}
|
|
else {
|
|
loadExtensionQueue();
|
|
}
|
|
}
|
|
|
|
function loadExtensionQueue() {
|
|
for (var i = 0; i < extensionQueue.length; ++i) {
|
|
var extensionURL = extensionQueue[i];
|
|
ScratchExtensions.loadExternalJS(extensionURL);
|
|
}
|
|
extensionQueue = [];
|
|
}
|
|
|
|
var flashVars = {
|
|
autostart: 'false',
|
|
extensionDevMode: 'true',
|
|
server: encodeURIComponent(location.host),
|
|
cloudToken: '4af4863d-a921-4004-b2cb-e0ad00ee1927',
|
|
cdnToken: '34f16bc63e8ada7dfd7ec12c715d0c94',
|
|
urlOverrides: {
|
|
sitePrefix: "http://scratch.mit.edu/",
|
|
siteCdnPrefix: "http://cdn.scratch.mit.edu/",
|
|
assetPrefix: "http://assets.scratch.mit.edu/",
|
|
assetCdnPrefix: "http://cdn.assets.scratch.mit.edu/",
|
|
projectPrefix: "http://projects.scratch.mit.edu/",
|
|
projectCdnPrefix: "http://cdn.projects.scratch.mit.edu/",
|
|
internalAPI: "internalapi/",
|
|
siteAPI: "site-api/",
|
|
staticFiles: "scratchr2/static/"
|
|
},
|
|
inIE: (navigator.userAgent.indexOf('MSIE') > -1)
|
|
};
|
|
|
|
var params = {
|
|
allowscriptaccess: 'always',
|
|
allowfullscreen: 'true',
|
|
wmode: 'direct',
|
|
menu: 'false'
|
|
};
|
|
|
|
$.each(flashVars, function (prop, val) {
|
|
if ($.isPlainObject(val))
|
|
flashVars[prop] = encodeURIComponent(JSON.stringify(val));
|
|
});
|
|
|
|
swfobject.switchOffAutoHideShow();
|
|
|
|
swfobject.embedSWF('Scratch.swf', 'editor', '100%', '100%', '11.7.0', 'libs/expressInstall.swf',
|
|
flashVars, params, null, handleEmbedStatus);
|
|
|
|
|
|
/* File uploads */
|
|
function sendFileToFlash(file) {
|
|
var fileReader = new FileReader();
|
|
fileReader.onload = function (e) {
|
|
var fileAsB64 = ab_to_b64(fileReader.result);
|
|
showPage("editor");
|
|
if (Scratch.FlashApp.ASobj.ASloadBase64SBX !== undefined) {
|
|
Scratch.FlashApp.ASobj.ASloadBase64SBX(fileAsB64);
|
|
} else {
|
|
$(document).on("editorReady", function(e) {
|
|
Scratch.FlashApp.ASobj.ASloadBase64SBX(fileAsB64);
|
|
$(this).off(e);
|
|
});
|
|
}
|
|
|
|
}
|
|
fileReader.readAsArrayBuffer(file);
|
|
}
|
|
|
|
$("[data-action='load-file']").click(function(e) {
|
|
$('<input type="file" />').on('change', function(){sendFileToFlash(this.files[0])}).click();
|
|
});
|
|
|
|
function sendURLtoFlash(url) {
|
|
if (Scratch.FlashApp.ASobj.ASloadGithubURL !== undefined) {
|
|
Scratch.FlashApp.ASobj.ASloadGithubURL(url);
|
|
} else {
|
|
$(document).on("editorReady", function(e) {
|
|
Scratch.FlashApp.ASobj.ASloadGithubURL(url);
|
|
$(this).off(e);
|
|
});
|
|
}
|
|
}
|
|
|
|
$("[data-action='load-url']").click(function(e) {
|
|
e.preventDefault();
|
|
showPage("editor");
|
|
sendURLtoFlash($(this).attr("href"));
|
|
});
|
|
|
|
$(".url-load-form").submit(function(e) {
|
|
e.preventDefault();
|
|
showPage("editor");
|
|
sendURLtoFlash($('input[type="text"]', this).val());
|
|
});
|
|
|
|
function loadFromURLParameter() {
|
|
var paramString = window.location.search.replace(/^\?|\/$/g, '');
|
|
var vars = paramString.split("&");
|
|
var showedEditor = false;
|
|
for (var i=0; i<vars.length; i++) {
|
|
var pair = vars[i].split("=");
|
|
if (pair.length > 1 && pair[0]=="url") {
|
|
if (!showedEditor) {
|
|
showPage("editor");
|
|
showedEditor = true;
|
|
}
|
|
sendURLtoFlash(pair[1]);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/* Page switching */
|
|
|
|
$("[data-action='static-link']").click(function(e) {
|
|
e.preventDefault();
|
|
var path = $(this).attr("href").substring(1);
|
|
showPage(path);
|
|
});
|
|
|
|
function showPage(path) {
|
|
var toHide = "body > main, body > main > article";
|
|
var toShow = "#" + path;
|
|
var $toShow = $(toShow);
|
|
|
|
$(toHide).filter(":visible").hide();
|
|
if (toShow != "#editor") $("#editor").css({top: "-9999px"});
|
|
$("body > main, body > main > article").has($toShow).show();
|
|
$toShow.show();
|
|
if (path == "editor") {
|
|
$toShow.css({top: 0});
|
|
}
|
|
|
|
window.location.hash = toShow;
|
|
if ($("body > main > article").has(toShow).length == 0) {
|
|
document.body.scrollTop = 0;
|
|
}
|
|
}
|
|
|
|
var initialID = "home";
|
|
function initPage() {
|
|
if (window.location.hash) initialID = window.location.hash.substr(1);
|
|
showPage(initialID);
|
|
loadFromURLParameter();
|
|
}
|
|
$(initPage);
|