tabpane.js 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  1. /*
  2. * Tab Pane
  3. *
  4. * This script was created by Erik Arvidsson (erik(at)eae.net)
  5. * for WebFX (http://webfx.eae.net)
  6. * Copyright 2002
  7. *
  8. * For usage see license at http://webfx.eae.net/license.html
  9. *
  10. * Version: 1.0
  11. * Created: 2002-01-?? First working version
  12. * Updated: 2002-02-17 Cleaned up for 1.0 public version
  13. *
  14. * Dependencies: *.css - a css file to define the layout
  15. *
  16. */
  17. // This function is used to define if the browser supports the needed
  18. // features
  19. function hasSupport() {
  20. if (typeof hasSupport.support != "undefined")
  21. return hasSupport.support;
  22. var ie55 = /msie 5\.[56789]/i.test( navigator.userAgent );
  23. hasSupport.support = ( typeof document.implementation != "undefined" &&
  24. document.implementation.hasFeature( "html", "1.0" ) || ie55 )
  25. // IE55 has a serious DOM1 bug... Patch it!
  26. if ( ie55 ) {
  27. document._getElementsByTagName = document.getElementsByTagName;
  28. document.getElementsByTagName = function ( sTagName ) {
  29. if ( sTagName == "*" )
  30. return document.all;
  31. else
  32. return document._getElementsByTagName( sTagName );
  33. };
  34. }
  35. return hasSupport.support;
  36. }
  37. ///////////////////////////////////////////////////////////////////////////////////
  38. // The constructor for tab panes
  39. //
  40. // el : HTMLElement The html element used to represent the tab pane
  41. // bUseCookie : Boolean Optional. Default is true. Used to determine whether to us
  42. // persistance using cookies or not
  43. //
  44. function WebFXTabPane( el, bUseCookie ) {
  45. if ( !hasSupport() || el == null ) return;
  46. this.element = el;
  47. this.element.tabPane = this;
  48. this.pages = [];
  49. this.selectedIndex = null;
  50. this.useCookie = bUseCookie != null ? bUseCookie : true;
  51. // add class name tag to class name
  52. this.element.className = this.classNameTag + " " + this.element.className;
  53. // add tab row
  54. this.tabRow = document.createElement( "div" );
  55. this.tabRow.className = "tab-row";
  56. el.insertBefore( this.tabRow, el.firstChild );
  57. var tabIndex = 0;
  58. if ( this.useCookie ) {
  59. tabIndex = Number( WebFXTabPane.getCookie( "webfxtab_" + this.element.id ) );
  60. if ( isNaN( tabIndex ) )
  61. tabIndex = 0;
  62. }
  63. this.selectedIndex = tabIndex;
  64. // loop through child nodes and add them
  65. var cs = el.childNodes;
  66. var n;
  67. for (var i = 0; i < cs.length; i++) {
  68. if (cs[i].nodeType == 1 && cs[i].className == "tab-page") {
  69. this.addTabPage( cs[i] );
  70. }
  71. }
  72. }
  73. WebFXTabPane.prototype = {
  74. classNameTag: "dynamic-tab-pane-control",
  75. setSelectedIndex: function ( n ) {
  76. if (this.selectedIndex != n) {
  77. if (this.selectedIndex != null && this.pages[ this.selectedIndex ] != null )
  78. this.pages[ this.selectedIndex ].hide();
  79. this.selectedIndex = n;
  80. this.pages[ this.selectedIndex ].show();
  81. if ( this.useCookie )
  82. WebFXTabPane.setCookie( "webfxtab_" + this.element.id, n ); // session cookie
  83. }
  84. },
  85. getSelectedIndex: function () {
  86. return this.selectedIndex;
  87. },
  88. addTabPage: function ( oElement ) {
  89. if ( !hasSupport() ) return;
  90. if ( oElement.tabPage == this ) // already added
  91. return oElement.tabPage;
  92. var n = this.pages.length;
  93. var tp = this.pages[n] = new WebFXTabPage( oElement, this, n );
  94. tp.tabPane = this;
  95. // move the tab out of the box
  96. this.tabRow.appendChild( tp.tab );
  97. if ( n == this.selectedIndex )
  98. tp.show();
  99. else
  100. tp.hide();
  101. return tp;
  102. }
  103. };
  104. // Cookie handling
  105. WebFXTabPane.setCookie = function ( sName, sValue, nDays ) {
  106. var expires = "";
  107. if ( nDays ) {
  108. var d = new Date();
  109. d.setTime( d.getTime() + nDays * 24 * 60 * 60 * 1000 );
  110. expires = "; expires=" + d.toGMTString();
  111. }
  112. document.cookie = sName + "=" + sValue + expires + "; path=/";
  113. };
  114. WebFXTabPane.getCookie = function (sName) {
  115. return null;
  116. var re = new RegExp( "(\;|^)[^;]*(" + sName + ")\=([^;]*)(;|$)" );
  117. var res = re.exec( document.cookie );
  118. return res != null ? res[3] : null;
  119. };
  120. WebFXTabPane.removeCookie = function ( name ) {
  121. setCookie( name, "", -1 );
  122. };
  123. ///////////////////////////////////////////////////////////////////////////////////
  124. // The constructor for tab pages. This one should not be used.
  125. // Use WebFXTabPage.addTabPage instead
  126. //
  127. // el : HTMLElement The html element used to represent the tab pane
  128. // tabPane : WebFXTabPane The parent tab pane
  129. // nindex : Number The index of the page in the parent pane page array
  130. //
  131. function WebFXTabPage( el, tabPane, nIndex ) {
  132. if ( !hasSupport() || el == null ) return;
  133. this.element = el;
  134. this.element.tabPage = this;
  135. this.index = nIndex;
  136. var cs = el.childNodes;
  137. for (var i = 0; i < cs.length; i++) {
  138. if (cs[i].nodeType == 1 && cs[i].className == "tab") {
  139. this.tab = cs[i];
  140. break;
  141. }
  142. }
  143. // insert a tag around content to support keyboard navigation
  144. var a = document.createElement( "A" );
  145. a.href = "javascript:void 0;";
  146. while ( this.tab.hasChildNodes() )
  147. a.appendChild( this.tab.firstChild );
  148. this.tab.appendChild( a );
  149. // hook up events, using DOM0
  150. var oThis = this;
  151. this.tab.onclick = function () { oThis.select(); };
  152. this.tab.onmouseover = function () { WebFXTabPage.tabOver( oThis ); };
  153. this.tab.onmouseout = function () { WebFXTabPage.tabOut( oThis ); };
  154. }
  155. WebFXTabPage.prototype = {
  156. show: function () {
  157. var el = this.tab;
  158. var s = el.className + " selected";
  159. s = s.replace(/ +/g, " ");
  160. el.className = s;
  161. this.element.style.display = "block";
  162. },
  163. hide: function () {
  164. var el = this.tab;
  165. var s = el.className;
  166. s = s.replace(/ selected/g, "");
  167. el.className = s;
  168. this.element.style.display = "none";
  169. },
  170. select: function () {
  171. this.tabPane.setSelectedIndex( this.index );
  172. }
  173. };
  174. WebFXTabPage.tabOver = function ( tabpage ) {
  175. var el = tabpage.tab;
  176. var s = el.className + " hover";
  177. s = s.replace(/ +/g, " ");
  178. el.className = s;
  179. };
  180. WebFXTabPage.tabOut = function ( tabpage ) {
  181. var el = tabpage.tab;
  182. var s = el.className;
  183. s = s.replace(/ hover/g, "");
  184. el.className = s;
  185. };
  186. // This function initializes all uninitialized tab panes and tab pages
  187. function setupAllTabs() {
  188. if ( !hasSupport() ) return;
  189. var all = document.getElementsByTagName( "*" );
  190. var l = all.length;
  191. var tabPaneRe = /tab\-pane/;
  192. var tabPageRe = /tab\-page/;
  193. var cn, el;
  194. var parentTabPane;
  195. for ( var i = 0; i < l; i++ ) {
  196. el = all[i]
  197. cn = el.className;
  198. // no className
  199. if ( cn == "" ) continue;
  200. // uninitiated tab pane
  201. if ( tabPaneRe.test( cn ) && !el.tabPane )
  202. new WebFXTabPane( el );
  203. // unitiated tab page wit a valid tab pane parent
  204. else if ( tabPageRe.test( cn ) && !el.tabPage &&
  205. tabPaneRe.test( el.parentNode.className ) ) {
  206. el.parentNode.tabPane.addTabPage( el );
  207. }
  208. }
  209. }
  210. // initialization hook up
  211. // DOM2
  212. if ( typeof window.addEventListener != "undefined" )
  213. window.addEventListener( "load", setupAllTabs, false );
  214. // IE
  215. else if ( typeof window.attachEvent != "undefined" )
  216. window.attachEvent( "onload", setupAllTabs );
  217. else {
  218. if ( window.onload != null ) {
  219. var oldOnload = window.onload;
  220. window.onload = function ( e ) {
  221. oldOnload( e );
  222. setupAllTabs();
  223. };
  224. }
  225. else
  226. window.onload = setupAllTabs;
  227. }