amber.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. /* Amber package loading
  2. usage example:
  3. amber.load({
  4. files: ['MyCategory1.js', 'MyCategory2.js'],
  5. ready: function() {smalltalk.Browser._open()}
  6. })
  7. */
  8. amber = (function() {
  9. var that = {};
  10. var scripts = document.getElementsByTagName("script");
  11. var src = scripts[ scripts.length - 1 ].src;
  12. var home = src.split("/").slice(0, -2).join("/") + "/";
  13. var debug;
  14. var deploy;
  15. var spec;
  16. var jsToLoad = [];
  17. var loadJS;
  18. var nocache = '';
  19. that.toggleIDE = function() {
  20. if ($('#amber').length == 0) {
  21. smalltalk.Browser._open();
  22. } else if ($('#amber').is(':visible')) {
  23. smalltalk.TabManager._current()._close();
  24. } else {
  25. smalltalk.TabManager._current()._open();
  26. }
  27. return false;
  28. }
  29. that.load = function(obj) {
  30. spec = obj || {};
  31. // In deployment mode, only the compressed version of Kernel
  32. // and Canvas are loaded
  33. deploy = spec.deploy || false;
  34. debug = spec.debug || false;
  35. // When debug is turned on, logs are written to the console,
  36. // and the user will be prompted before they leave the page.
  37. if (debug) {
  38. window.onbeforeunload = function(){ return 'You will loose all code that you have not committed'; }
  39. }
  40. // Allow loading default Amber files from a different location
  41. // e.g. http://amber-lang.net/amber/
  42. if (spec.home) home = spec.home;
  43. // Specify a version string to avoid wrong browser caching
  44. if (spec.version) {
  45. nocache = '?' + spec.version;
  46. }
  47. loadDependencies();
  48. addJSToLoad('lib/es5-shim-2.0.2/es5-shim.min.js');
  49. addJSToLoad('lib/es5-shim-2.0.2/es5-sham.min.js');
  50. addJSToLoad('boot.js');
  51. if (deploy) {
  52. loadPackages([
  53. 'Kernel-Objects.deploy',
  54. 'Kernel-Classes.deploy',
  55. 'Kernel-Methods.deploy',
  56. 'Kernel-Collections.deploy',
  57. 'Kernel-Exceptions.deploy',
  58. 'Kernel-Transcript.deploy',
  59. 'Kernel-Announcements.deploy',
  60. 'Canvas.deploy'
  61. ]);
  62. } else {
  63. loadIDEDependencies();
  64. loadCSS('amber.css');
  65. loadPackages([
  66. 'Kernel-Objects',
  67. 'Kernel-Classes',
  68. 'Kernel-Methods',
  69. 'Kernel-Collections',
  70. 'Kernel-Exceptions',
  71. 'Kernel-Transcript',
  72. 'Kernel-Announcements',
  73. 'Canvas',
  74. 'SUnit',
  75. 'Importer-Exporter',
  76. 'Compiler-Exceptions',
  77. 'Compiler-Core',
  78. 'Compiler-AST',
  79. 'Compiler-Semantic',
  80. 'Compiler-IR',
  81. 'Compiler-Inlining',
  82. 'Compiler-Interpreter',
  83. 'Compiler-Tests',
  84. 'parser',
  85. 'IDE',
  86. 'Examples',
  87. 'Benchfib',
  88. 'Kernel-Tests'
  89. ]);
  90. }
  91. var additionalFiles = spec.packages || spec.files;
  92. if (additionalFiles) {
  93. loadPackages(additionalFiles, spec.prefix, spec.packageHome);
  94. }
  95. // Be sure to setup & initialize smalltalk classes
  96. addJSToLoad('init.js');
  97. initializeSmalltalk();
  98. };
  99. function loadPackages(names, prefix, urlHome){
  100. var name, url;
  101. var prefix = prefix || 'js';
  102. var urlHome = urlHome || home;
  103. for (var i=0; i < names.length; i++) {
  104. name = names[i].split(/\.js$/)[0];
  105. addJSToLoad(name + '.js', prefix, urlHome);
  106. }
  107. };
  108. function addJSToLoad(name, prefix, urlHome) {
  109. var urlHome = urlHome || home;
  110. jsToLoad.push(buildJSURL(name, prefix, urlHome));
  111. };
  112. function buildJSURL(name, prefix, urlHome) {
  113. var prefix = prefix || 'js';
  114. var name = name;
  115. var urlHome = urlHome || home;
  116. if (!deploy) {
  117. name = name + nocache;
  118. }
  119. return urlHome + prefix + '/' + name;
  120. };
  121. function loadCSS(name, prefix) {
  122. var prefix = prefix || 'css';
  123. var name = name;
  124. if (!deploy) {
  125. name = name + nocache;
  126. }
  127. var url = home + prefix + '/' + name;
  128. var link = document.createElement("link");
  129. link.setAttribute("rel", "stylesheet");
  130. link.setAttribute("type", "text/css");
  131. link.setAttribute("href", url);
  132. document.getElementsByTagName("head")[0].appendChild(link);
  133. };
  134. function loadDependencies() {
  135. if (typeof jQuery == 'undefined') {
  136. writeScriptTag(buildJSURL('lib/jQuery/jquery-1.8.2.min.js'));
  137. }
  138. if ((typeof jQuery == 'undefined') || (typeof jQuery.ui == 'undefined')) {
  139. writeScriptTag(buildJSURL('lib/jQuery/jquery-ui-1.8.16.custom.min.js'));
  140. }
  141. };
  142. function loadIDEDependencies() {
  143. addJSToLoad('lib/jQuery/jquery.textarea.js');
  144. addJSToLoad('lib/CodeMirror/codemirror.js');
  145. addJSToLoad('lib/CodeMirror/smalltalk.js');
  146. loadCSS('lib/CodeMirror/codemirror.css', 'js');
  147. loadCSS('lib/CodeMirror/amber.css', 'js');
  148. };
  149. // This will be called after JS files have been loaded
  150. function initializeSmalltalk() {
  151. window.smalltalkReady = function() {
  152. if (spec.ready) {
  153. spec.ready();
  154. };
  155. evaluateSmalltalkScripts();
  156. };
  157. loadAllJS();
  158. };
  159. /*
  160. * When loaded using AJAX, scripts order not guaranteed.
  161. * Load JS in the order they have been added using addJSToLoad().
  162. * If loaded, will use jQuery's getScript instead of adding a script element
  163. */
  164. function loadAllJS() {
  165. loadJS = loadJSViaScriptTag;
  166. if (typeof jQuery != 'undefined') {
  167. loadJS = loadJSViaJQuery;
  168. }
  169. loadNextJS();
  170. };
  171. function loadNextJS() {
  172. loadJS(jsToLoad[0], function(){
  173. jsToLoad.shift();
  174. if (jsToLoad.length > 0) {
  175. loadNextJS();
  176. }
  177. });
  178. };
  179. function loadJSViaScriptTag(url, callback) {
  180. writeScriptTag(url);
  181. callback();
  182. };
  183. function loadJSViaJQuery(url, callback) {
  184. $.ajax({
  185. dataType: "script",
  186. url: jsToLoad[0],
  187. cache: deploy,
  188. success: callback
  189. });
  190. };
  191. function writeScriptTag(src) {
  192. var scriptString = '<script src="' + src + '" type="text/javascript"></script>';
  193. document.write(scriptString);
  194. };
  195. function evaluateSmalltalkScripts() {
  196. jQuery(document).ready(function() {
  197. jQuery('script[type="text/smalltalk"]').each(function(i, elt) {
  198. smalltalk.send(
  199. smalltalk.send(smalltalk.Compiler, '_new'),
  200. '_evaluateExpression_',
  201. [jQuery(elt).html()])
  202. });
  203. })
  204. };
  205. function populateLocalPackages(){
  206. var localStorageRE = /^smalltalk\.packages\.(.*)$/;
  207. localPackages = {};
  208. var match, key;
  209. for(var i=0; i < localStorage.length; i++) {
  210. key = localStorage.key(i);
  211. if (match = key.match(localStorageRE)) {
  212. localPackages[match[1]] = localStorage[key];
  213. }
  214. }
  215. return localPackages;
  216. };
  217. function clearLocalPackages() {
  218. for (var name in localPackages) {
  219. log('Removing ' + name + ' from local storage');
  220. localStorage.removeItem('smalltalk.packages.' + name);
  221. }
  222. };
  223. function log(string) {
  224. if (debug) {
  225. console.log(string);
  226. }
  227. }
  228. return that;
  229. })();
  230. window.loadAmber = amber.load;
  231. window.toggleAmberIDE = amber.toggleIDE;