profiler.js 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. var anbu = {
  2. // BOUND ELEMENTS
  3. // -------------------------------------------------------------
  4. // Binding these elements early, stops jQuery from "querying"
  5. // the DOM every time they are used.
  6. el: {
  7. main: $('.anbu'),
  8. close: $('#anbu-close'),
  9. zoom: $('#anbu-zoom'),
  10. hide: $('#anbu-hide'),
  11. show: $('#anbu-show'),
  12. tab_pane: $('.anbu-tab-pane'),
  13. hidden_tab_pane: $('.anbu-tab-pane:visible'),
  14. tab: $('.anbu-tab'),
  15. tabs: $('.anbu-tabs'),
  16. tab_links: $('.anbu-tabs a'),
  17. window: $('.anbu-window'),
  18. closed_tabs: $('#anbu-closed-tabs'),
  19. open_tabs: $('#anbu-open-tabs'),
  20. content_area: $('.anbu-content-area')
  21. },
  22. // CLASS ATTRIBUTES
  23. // -------------------------------------------------------------
  24. // Useful variable for Anbu.
  25. // is anbu in full screen mode
  26. is_zoomed: false,
  27. // initial height of content area
  28. small_height: $('.anbu-content-area').height(),
  29. // the name of the active tab css
  30. active_tab: 'anbu-active-tab',
  31. // the data attribute of the tab link
  32. tab_data: 'data-anbu-tab',
  33. // size of anbu when compact
  34. mini_button_width: '2.6em',
  35. // is the top window open?
  36. window_open: false,
  37. // current active pane
  38. active_pane: '',
  39. // START()
  40. // -------------------------------------------------------------
  41. // Sets up all the binds for Anbu!
  42. start: function() {
  43. // hide initial elements
  44. anbu.el.close.css('visibility', 'visible').hide();
  45. anbu.el.zoom.css('visibility', 'visible').hide();
  46. anbu.el.tab_pane.css('visibility', 'visible').hide();
  47. // bind all click events
  48. anbu.el.close.click(function(event) {
  49. anbu.close_window();
  50. event.preventDefault();
  51. });
  52. anbu.el.hide.click(function(event) {
  53. anbu.hide();
  54. event.preventDefault();
  55. });
  56. anbu.el.show.click(function(event) {
  57. anbu.show();
  58. event.preventDefault();
  59. });
  60. anbu.el.zoom.click(function(event) {
  61. anbu.zoom();
  62. event.preventDefault();
  63. });
  64. anbu.el.tab.click(function(event) {
  65. anbu.clicked_tab($(this));
  66. event.preventDefault();
  67. });
  68. },
  69. // CLICKED_TAB()
  70. // -------------------------------------------------------------
  71. // A tab has been clicked, decide what to do.
  72. clicked_tab: function(tab) {
  73. // if the tab is closed
  74. if (anbu.window_open && anbu.active_pane == tab.attr(anbu.tab_data)) {
  75. anbu.close_window();
  76. } else {
  77. anbu.open_window(tab);
  78. }
  79. },
  80. // OPEN_WINDOW()
  81. // -------------------------------------------------------------
  82. // Animate open the top window to the appropriate tab.
  83. open_window: function(tab) {
  84. // can't directly assign this line, but it works
  85. $('.anbu-tab-pane:visible').fadeOut(200);
  86. $('.' + tab.attr(anbu.tab_data)).delay(220).fadeIn(300);
  87. anbu.el.tab_links.removeClass(anbu.active_tab);
  88. tab.addClass(anbu.active_tab);
  89. anbu.el.window.slideDown(300);
  90. anbu.el.close.fadeIn(300);
  91. anbu.el.zoom.fadeIn(300);
  92. anbu.active_pane = tab.attr(anbu.tab_data);
  93. anbu.window_open = true;
  94. },
  95. // CLOSE_WINDOW()
  96. // -------------------------------------------------------------
  97. // Animate closed the top window hiding all tabs.
  98. close_window: function() {
  99. anbu.el.tab_pane.fadeOut(100);
  100. anbu.el.window.slideUp(300);
  101. anbu.el.close.fadeOut(300);
  102. anbu.el.zoom.fadeOut(300);
  103. anbu.el.tab_links.removeClass(anbu.active_tab);
  104. anbu.active_pane = '';
  105. anbu.window_open = false;
  106. },
  107. // SHOW()
  108. // -------------------------------------------------------------
  109. // Show the Anbu toolbar when it has been compacted.
  110. show: function() {
  111. anbu.el.closed_tabs.fadeOut(600, function () {
  112. anbu.el.open_tabs.fadeIn(200);
  113. });
  114. anbu.el.main.animate({width: '100%'}, 700);
  115. anbu.el.main.removeClass('hidden');
  116. },
  117. // HIDE()
  118. // -------------------------------------------------------------
  119. // Hide the anbu toolbar, show a tiny re-open button.
  120. hide: function() {
  121. anbu.close_window();
  122. anbu.el.window.slideUp(400, function () {
  123. anbu.close_window();
  124. anbu.el.main.addClass('hidden');
  125. anbu.el.open_tabs.fadeOut(200, function () {
  126. anbu.el.closed_tabs.fadeIn(200);
  127. });
  128. anbu.el.main.animate({width: anbu.mini_button_width}, 700);
  129. });
  130. },
  131. // TOGGLEZOOM()
  132. // -------------------------------------------------------------
  133. // Toggle the zoomed mode of the top window.
  134. zoom: function() {
  135. if (anbu.is_zoomed) {
  136. height = anbu.small_height;
  137. anbu.is_zoomed = false;
  138. } else {
  139. // the 6px is padding on the top of the window
  140. height = ($(window).height() - anbu.el.tabs.height() - 6) + 'px';
  141. anbu.is_zoomed = true;
  142. }
  143. anbu.el.content_area.animate({height: height}, 700);
  144. }
  145. };
  146. // launch anbu on jquery dom ready
  147. jQuery(document).ready(function() {
  148. anbu.start();
  149. });