amber.js 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274
  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-Tests',
  83. 'parser',
  84. 'IDE',
  85. 'Examples',
  86. 'Benchfib',
  87. 'Kernel-Tests'
  88. ]);
  89. }
  90. var additionalFiles = spec.packages || spec.files;
  91. if (additionalFiles) {
  92. loadPackages(additionalFiles, spec.prefix, spec.packageHome);
  93. }
  94. // Be sure to setup & initialize smalltalk classes
  95. addJSToLoad('init.js');
  96. initializeSmalltalk();
  97. };
  98. function loadPackages(names, prefix, urlHome){
  99. var name, url;
  100. var prefix = prefix || 'js';
  101. var urlHome = urlHome || home;
  102. for (var i=0; i < names.length; i++) {
  103. name = names[i].split(/\.js$/)[0];
  104. addJSToLoad(name + '.js', prefix, urlHome);
  105. }
  106. };
  107. function addJSToLoad(name, prefix, urlHome) {
  108. var urlHome = urlHome || home;
  109. jsToLoad.push(buildJSURL(name, prefix, urlHome));
  110. };
  111. function buildJSURL(name, prefix, urlHome) {
  112. var prefix = prefix || 'js';
  113. var name = name;
  114. var urlHome = urlHome || home;
  115. if (!deploy) {
  116. name = name + nocache;
  117. }
  118. return urlHome + prefix + '/' + name;
  119. };
  120. function loadCSS(name, prefix) {
  121. var prefix = prefix || 'css';
  122. var name = name;
  123. if (!deploy) {
  124. name = name + nocache;
  125. }
  126. var url = home + prefix + '/' + name;
  127. var link = document.createElement("link");
  128. link.setAttribute("rel", "stylesheet");
  129. link.setAttribute("type", "text/css");
  130. link.setAttribute("href", url);
  131. document.getElementsByTagName("head")[0].appendChild(link);
  132. };
  133. function loadDependencies() {
  134. if (typeof jQuery == 'undefined') {
  135. writeScriptTag(buildJSURL('lib/jQuery/jquery-1.8.2.min.js'));
  136. }
  137. if ((typeof jQuery == 'undefined') || (typeof jQuery.ui == 'undefined')) {
  138. writeScriptTag(buildJSURL('lib/jQuery/jquery-ui-1.8.16.custom.min.js'));
  139. }
  140. };
  141. function loadIDEDependencies() {
  142. addJSToLoad('lib/jQuery/jquery.textarea.js');
  143. addJSToLoad('lib/CodeMirror/codemirror.js');
  144. addJSToLoad('lib/CodeMirror/smalltalk.js');
  145. loadCSS('lib/CodeMirror/codemirror.css', 'js');
  146. loadCSS('lib/CodeMirror/amber.css', 'js');
  147. };
  148. // This will be called after JS files have been loaded
  149. function initializeSmalltalk() {
  150. window.smalltalkReady = function() {
  151. if (spec.ready) {
  152. spec.ready();
  153. };
  154. evaluateSmalltalkScripts();
  155. };
  156. loadAllJS();
  157. };
  158. /*
  159. * When loaded using AJAX, scripts order not guaranteed.
  160. * Load JS in the order they have been added using addJSToLoad().
  161. * If loaded, will use jQuery's getScript instead of adding a script element
  162. */
  163. function loadAllJS() {
  164. loadJS = loadJSViaScriptTag;
  165. if (typeof jQuery != 'undefined') {
  166. loadJS = loadJSViaJQuery;
  167. }
  168. loadNextJS();
  169. };
  170. function loadNextJS() {
  171. loadJS(jsToLoad[0], function(){
  172. jsToLoad.shift();
  173. if (jsToLoad.length > 0) {
  174. loadNextJS();
  175. }
  176. });
  177. };
  178. function loadJSViaScriptTag(url, callback) {
  179. writeScriptTag(url);
  180. callback();
  181. };
  182. function loadJSViaJQuery(url, callback) {
  183. $.ajax({
  184. dataType: "script",
  185. url: jsToLoad[0],
  186. cache: deploy,
  187. success: callback
  188. });
  189. };
  190. function writeScriptTag(src) {
  191. var scriptString = '<script src="' + src + '" type="text/javascript"></script>';
  192. document.write(scriptString);
  193. };
  194. function evaluateSmalltalkScripts() {
  195. jQuery(document).ready(function() {
  196. jQuery('script[type="text/smalltalk"]').each(function(i, elt) {
  197. smalltalk.send(
  198. smalltalk.send(smalltalk.Compiler, '_new'),
  199. '_evaluateExpression_',
  200. [jQuery(elt).html()])
  201. });
  202. })
  203. };
  204. function populateLocalPackages(){
  205. var localStorageRE = /^smalltalk\.packages\.(.*)$/;
  206. localPackages = {};
  207. var match, key;
  208. for(var i=0; i < localStorage.length; i++) {
  209. key = localStorage.key(i);
  210. if (match = key.match(localStorageRE)) {
  211. localPackages[match[1]] = localStorage[key];
  212. }
  213. }
  214. return localPackages;
  215. };
  216. function clearLocalPackages() {
  217. for (var name in localPackages) {
  218. log('Removing ' + name + ' from local storage');
  219. localStorage.removeItem('smalltalk.packages.' + name);
  220. }
  221. };
  222. function log(string) {
  223. if (debug) {
  224. console.log(string);
  225. }
  226. }
  227. return that;
  228. })();
  229. window.loadAmber = amber.load;
  230. window.toggleAmberIDE = amber.toggleIDE;