Source js/bauplan.app.js

  1. define([
  2. "lodash",
  3. "jquery",
  4. "bauplan",
  5. "larynx",
  6. "socket.io",
  7. "app.setup"
  8. ], function (_, jQuery, Bauplan, Larynx, SocketIO, AppSettings) {
  9. /**
  10. * @module bauplan%app
  11. * @description ## Application instance
  12. *
  13. * var App = require("bauplan.app");
  14. *
  15. * or as part of the Bauplan bundle
  16. *
  17. * var Bauplan = require("bauplan");
  18. * var App = Bauplan.App;
  19. *
  20. * To set or get the app locale
  21. *
  22. * App.locale("fr");
  23. * var loc = App.locale(); // "fr"
  24. *
  25. * To (re-)render the entire app
  26. *
  27. * App.render();
  28. *
  29. * This module performs the grunt work once all configuration and dependencies have been loaded
  30. *
  31. * - loads app settings from app.setup (if any)
  32. * - sets app’s root view
  33. * - name
  34. * - id
  35. * - template
  36. * - sets app locale/lang
  37. *
  38. * - renders app
  39. *
  40. * - calls callback (if any)
  41. *
  42. * @see module:app%setup
  43. *
  44. * @return {instance} App
  45. */
  46. /**
  47. * @member {Object} settings
  48. * @property {string} [name=main.layout] Main layout name
  49. * @property {string} [id=main-layout] Main layout id
  50. * @property {string} [template={{name}}.view] Main layout template
  51. * @property {string} [element=#app] DOM target element
  52. * @property {string} [locale=en] Default locale
  53. * @property {function} [initialized] Post-initialization function
  54. */
  55. var settings = {
  56. name: "main.layout",
  57. id: "main-layout",
  58. element: "#app",
  59. locale: "en"
  60. };
  61. settings = _.extend(settings, AppSettings);
  62. settings.template = settings.template || settings.name + ".view";
  63. var App = {
  64. /**
  65. * @method render
  66. * @description Renders the entire application from the root view
  67. * @instance
  68. * @memberOf module:bauplan%app
  69. */
  70. render: function() {
  71. var mainLayout = new Bauplan.View(settings);
  72. var $el = jQuery(settings.element);
  73. $el.html("");
  74. mainLayout.appendTo($el);
  75. },
  76. /**
  77. * @description Set/get app locale
  78. * @param {string} [loc] Value of locale
  79. * @return {string} Value of locale
  80. * @instance
  81. * @memberOf module:bauplan%app
  82. */
  83. locale: function (loc) {
  84. if (loc) {
  85. locale = loc;
  86. Larynx.locale(loc);
  87. }
  88. return Larynx.locale();
  89. }
  90. };
  91. App.locale(settings.locale);
  92. /*if (!jQuery.cookie("entry")) {
  93. jQuery.cookie("entry", JSON.stringify({
  94. referrer: document.referrer,
  95. timestamp: (new Date()).toISOString()
  96. }), { path: "/" });
  97. }*/
  98. App.render();
  99. // not sure this shouldn't be in the router code, but what ho!
  100. if (settings.initialized) {
  101. settings.initialized();
  102. }
  103. Bauplan.App = App;
  104. if (Bauplan.Config.callback) {
  105. Bauplan.Config.callback();
  106. }
  107. return App;
  108. });