amber.js 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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 nocache = '?' + (new Date()).getTime();
  14. var debug;
  15. var deploy;
  16. var spec;
  17. var jsToLoad = [];
  18. var loadJS;
  19. that.toggleIDE = function() {
  20. if ($('#jtalk').length == 0) {
  21. smalltalk.Browser._open();
  22. } else if ($('#jtalk').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('compat.js');
  49. addJSToLoad('boot.js');
  50. if (deploy) {
  51. loadPackages([
  52. 'Kernel-Objects.deploy',
  53. 'Kernel-Classes.deploy',
  54. 'Kernel-Methods.deploy',
  55. 'Kernel-Collections.deploy',
  56. 'Kernel-Exceptions.deploy',
  57. 'Kernel-Transcript.deploy',
  58. 'Kernel-Announcements.deploy',
  59. 'Canvas.deploy'
  60. ]);
  61. } else {
  62. loadIDEDependencies();
  63. loadCSS('amber.css');
  64. loadPackages([
  65. 'Kernel-Objects',
  66. 'Kernel-Classes',
  67. 'Kernel-Methods',
  68. 'Kernel-Collections',
  69. 'Kernel-Exceptions',
  70. 'Kernel-Transcript',
  71. 'Kernel-Announcements',
  72. 'Canvas',
  73. 'Compiler',
  74. 'parser',
  75. 'IDE',
  76. 'SUnit',
  77. 'Examples',
  78. 'Benchfib',
  79. 'Kernel-Tests'
  80. ]);
  81. }
  82. var additionalFiles = spec.packages || spec.files;
  83. if (additionalFiles) {
  84. loadPackages(additionalFiles, spec.prefix);
  85. }
  86. // Be sure to setup & initialize smalltalk classes
  87. addJSToLoad('init.js');
  88. initializeSmalltalk();
  89. };
  90. function loadPackages(names, prefix){
  91. var name, url;
  92. var prefix = prefix || 'js';
  93. for (var i=0; i < names.length; i++) {
  94. name = names[i].split(/\.js$/)[0];
  95. addJSToLoad(name + '.js', prefix);
  96. }
  97. };
  98. function addJSToLoad(name, prefix) {
  99. jsToLoad.push(buildJSURL(name, prefix));
  100. };
  101. function buildJSURL(name, prefix) {
  102. var prefix = prefix || 'js';
  103. var name = name;
  104. if (!deploy) {
  105. name = name + nocache;
  106. }
  107. return home + prefix + '/' + name;
  108. };
  109. function loadCSS(name, prefix) {
  110. var prefix = prefix || 'css';
  111. var name = name;
  112. if (!deploy) {
  113. name = name + nocache;
  114. }
  115. var url = home + prefix + '/' + name;
  116. var link = document.createElement("link");
  117. link.setAttribute("rel", "stylesheet");
  118. link.setAttribute("type", "text/css");
  119. link.setAttribute("href", url);
  120. document.getElementsByTagName("head")[0].appendChild(link);
  121. };
  122. function loadDependencies() {
  123. if (typeof jQuery == 'undefined') {
  124. writeScriptTag(buildJSURL('lib/jQuery/jquery-1.6.4.min.js'));
  125. }
  126. if ((typeof jQuery == 'undefined') || (typeof jQuery.ui == 'undefined')) {
  127. writeScriptTag(buildJSURL('lib/jQuery/jquery-ui-1.8.16.custom.min.js'));
  128. }
  129. };
  130. function loadIDEDependencies() {
  131. addJSToLoad('lib/jQuery/jquery.textarea.js');
  132. addJSToLoad('lib/CodeMirror/codemirror.js');
  133. addJSToLoad('lib/CodeMirror/smalltalk.js');
  134. loadCSS('lib/CodeMirror/codemirror.css', 'js');
  135. loadCSS('lib/CodeMirror/amber.css', 'js');
  136. };
  137. // This will be called after JS files have been loaded
  138. function initializeSmalltalk() {
  139. window.smalltalkReady = function() {
  140. if (deploy) {
  141. smalltalk.setDeploymentMode();
  142. }
  143. if (spec.ready) {
  144. spec.ready();
  145. }
  146. }
  147. loadAllJS();
  148. };
  149. /*
  150. * When loaded using AJAX, scripts order not guaranteed.
  151. * Load JS in the order they have been added using addJSToLoad().
  152. * If loaded, will use jQuery's getScript instead of adding a script element
  153. */
  154. function loadAllJS() {
  155. loadJS = loadJSViaScriptTag;
  156. if (typeof jQuery != 'undefined') {
  157. loadJS = loadJSViaJQuery;
  158. }
  159. loadNextJS();
  160. };
  161. function loadNextJS() {
  162. loadJS(jsToLoad[0], function(){
  163. jsToLoad.shift();
  164. if (jsToLoad.length > 0) {
  165. loadNextJS();
  166. }
  167. });
  168. };
  169. function loadJSViaScriptTag(url, callback) {
  170. writeScriptTag(url);
  171. callback();
  172. };
  173. function loadJSViaJQuery(url, callback) {
  174. $.getScript(jsToLoad[0], callback);
  175. };
  176. function writeScriptTag(src) {
  177. var scriptString = '<script src="' + src + '" type="text/javascript"></script>';
  178. document.write(scriptString);
  179. };
  180. function populateLocalPackages(){
  181. var localStorageRE = /^smalltalk\.packages\.(.*)$/;
  182. localPackages = {};
  183. var match, key;
  184. for(var i=0; i < localStorage.length; i++) {
  185. key = localStorage.key(i);
  186. if (match = key.match(localStorageRE)) {
  187. localPackages[match[1]] = localStorage[key];
  188. }
  189. }
  190. return localPackages;
  191. };
  192. function clearLocalPackages() {
  193. for (var name in localPackages) {
  194. log('Removing ' + name + ' from local storage');
  195. localStorage.removeItem('smalltalk.packages.' + name);
  196. }
  197. };
  198. function log(string) {
  199. if (debug) {
  200. console.log(string);
  201. }
  202. }
  203. return that;
  204. })();
  205. window.loadAmber = amber.load;
  206. window.toggleAmberIDE = amber.toggleIDE;