profiler.js 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. isZoomed : false, // is anbu in full screen mode
  26. small_height : $('.anbu-content-area').height(), // initial height of content area
  27. active_tab : 'anbu-active-tab', // the name of the active tab css
  28. tab_data : 'data-anbu-tab', // the data attribute of the tab link
  29. mini_button_width : '2.6em', // size of anbu when compact
  30. window_open : false, // is the top window open?
  31. active_pane : '', // current active pane
  32. // START()
  33. // -------------------------------------------------------------
  34. // Sets up all the binds for Anbu!
  35. start : function ()
  36. {
  37. // hide initial elements
  38. anbu.el.close.hide();
  39. anbu.el.zoom.hide();
  40. anbu.el.tab_pane.hide();
  41. // bind all click events
  42. anbu.el.close.click( function () { anbu.close_window(); });
  43. anbu.el.hide.click( function () { anbu.hide(); });
  44. anbu.el.show.click( function () { anbu.show(); });
  45. anbu.el.zoom.click( function () { anbu.zoom(); });
  46. anbu.el.tab.click( function () { anbu.clicked_tab($(this)); });
  47. },
  48. // CLICKED_TAB()
  49. // -------------------------------------------------------------
  50. // A tab has been clicked, decide what to do.
  51. clicked_tab : function (tab)
  52. {
  53. // if the tab is closed
  54. if(anbu.window_open && anbu.active_pane == tab.attr(anbu.tab_data))
  55. {
  56. anbu.close_window();
  57. }
  58. else
  59. {
  60. anbu.open_window(tab);
  61. }
  62. },
  63. // OPEN_WINDOW()
  64. // -------------------------------------------------------------
  65. // Animate open the top window to the appropriate tab.
  66. open_window : function (tab)
  67. {
  68. // can't directly assign this line, but it works
  69. $('.anbu-tab-pane:visible').fadeOut(200);
  70. $('.' + tab.attr(anbu.tab_data)).delay(220).fadeIn(300);
  71. anbu.el.tab_links.removeClass(anbu.active_tab);
  72. tab.addClass(anbu.active_tab);
  73. anbu.el.window.slideDown(300);
  74. anbu.el.close.fadeIn(300);
  75. anbu.el.zoom.fadeIn(300);
  76. anbu.active_pane = tab.attr(anbu.tab_data);
  77. anbu.window_open = true;
  78. },
  79. // CLOSE_WINDOW()
  80. // -------------------------------------------------------------
  81. // Animate closed the top window hiding all tabs.
  82. close_window : function()
  83. {
  84. anbu.el.tab_pane.fadeOut(100);
  85. anbu.el.window.slideUp(300);
  86. anbu.el.close.fadeOut(300);
  87. anbu.el.zoom.fadeOut(300);
  88. anbu.el.tab_links.removeClass(anbu.active_tab);
  89. anbu.active_pane = '';
  90. anbu.window_open = false;
  91. },
  92. // SHOW()
  93. // -------------------------------------------------------------
  94. // Show the Anbu toolbar when it has been compacted.
  95. show : function ()
  96. {
  97. anbu.el.closed_tabs.fadeOut(600, function () {
  98. anbu.el.open_tabs.fadeIn(200);
  99. })
  100. anbu.el.main.animate({width: '100%'}, 700);
  101. },
  102. // HIDE()
  103. // -------------------------------------------------------------
  104. // Hide the anbu toolbar, show a tiny re-open button.
  105. hide : function ()
  106. {
  107. anbu.close_window();
  108. anbu.el.window.slideUp(400, function () {
  109. anbu.close_window();
  110. anbu.el.open_tabs.fadeOut(200, function () {
  111. anbu.el.closed_tabs.fadeIn(200);
  112. })
  113. anbu.el.main.animate({width: anbu.mini_button_width}, 700);
  114. });
  115. },
  116. // TOGGLEZOOM()
  117. // -------------------------------------------------------------
  118. // Toggle the zoomed mode of the top window.
  119. zoom : function ()
  120. {
  121. if(anbu.isZoomed)
  122. {
  123. height = anbu.small_height;
  124. anbu.isZoomed = false;
  125. }
  126. else
  127. {
  128. // the 6px is padding on the top of the window
  129. height = ($(window).height() - anbu.el.tabs.height() - 6) + 'px';
  130. anbu.isZoomed = true;
  131. }
  132. anbu.el.content_area.animate({height: height}, 700);
  133. }
  134. }
  135. jQuery(document).ready(function () {
  136. // launch anbu
  137. anbu.start();
  138. });