docs.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:19k
源码类别:

JavaScript

开发平台:

JavaScript

  1. Ext.BLANK_IMAGE_URL = 'resources/s.gif';
  2. Docs = {};
  3. ApiPanel = function() {
  4.     ApiPanel.superclass.constructor.call(this, {
  5.         id:'api-tree',
  6.         region:'west',
  7.         split:true,
  8.         width: 280,
  9.         minSize: 175,
  10.         maxSize: 500,
  11.         collapsible: true,
  12.         margins:'0 0 5 5',
  13.         cmargins:'0 0 0 0',
  14.         rootVisible:false,
  15.         lines:false,
  16.         autoScroll:true,
  17.         animCollapse:false,
  18.         animate: false,
  19.         collapseMode:'mini',
  20.         loader: new Ext.tree.TreeLoader({
  21. preloadChildren: true,
  22. clearOnLoad: false
  23. }),
  24.         root: new Ext.tree.AsyncTreeNode({
  25.             text:'Ext JS',
  26.             id:'root',
  27.             expanded:true,
  28.             children:[Docs.classData]
  29.          }),
  30.         collapseFirst:false
  31.     });
  32.     // no longer needed!
  33.     //new Ext.tree.TreeSorter(this, {folderSort:true,leafAttr:'isClass'});
  34.     this.getSelectionModel().on('beforeselect', function(sm, node){
  35.         return node.isLeaf();
  36.     });
  37. };
  38. Ext.extend(ApiPanel, Ext.tree.TreePanel, {
  39.     initComponent: function(){
  40.         this.hiddenPkgs = [];
  41.         Ext.apply(this, {
  42.             tbar:[ ' ',
  43. new Ext.form.TextField({
  44. width: 200,
  45. emptyText:'Find a Class',
  46.                 enableKeyEvents: true,
  47. listeners:{
  48. render: function(f){
  49.                      this.filter = new Ext.tree.TreeFilter(this, {
  50.                      clearBlank: true,
  51.                      autoClear: true
  52.                      });
  53. },
  54.                     keydown: {
  55.                         fn: this.filterTree,
  56.                         buffer: 350,
  57.                         scope: this
  58.                     },
  59.                     scope: this
  60. }
  61. }), ' ', ' ',
  62. {
  63.                 iconCls: 'icon-expand-all',
  64. tooltip: 'Expand All',
  65.                 handler: function(){ this.root.expand(true); },
  66.                 scope: this
  67.             }, '-', {
  68.                 iconCls: 'icon-collapse-all',
  69.                 tooltip: 'Collapse All',
  70.                 handler: function(){ this.root.collapse(true); },
  71.                 scope: this
  72.             }]
  73.         })
  74.         ApiPanel.superclass.initComponent.call(this);
  75.     },
  76. filterTree: function(t, e){
  77. var text = t.getValue();
  78. Ext.each(this.hiddenPkgs, function(n){
  79. n.ui.show();
  80. });
  81. if(!text){
  82. this.filter.clear();
  83. return;
  84. }
  85. this.expandAll();
  86. var re = new RegExp('^' + Ext.escapeRe(text), 'i');
  87. this.filter.filterBy(function(n){
  88. return !n.attributes.isClass || re.test(n.text);
  89. });
  90. // hide empty packages that weren't filtered
  91. this.hiddenPkgs = [];
  92. this.root.cascade(function(n){
  93. if(!n.attributes.isClass && n.ui.ctNode.offsetHeight < 3){
  94. n.ui.hide();
  95. this.hiddenPkgs.push(n);
  96. }
  97. });
  98. },
  99.     selectClass : function(cls){
  100.         if(cls){
  101.             var parts = cls.split('.');
  102.             var last = parts.length-1;
  103.             var res = [];
  104.             var pkg = [];
  105.             for(var i = 0; i < last; i++){ // things get nasty - static classes can have .
  106.                 var p = parts[i];
  107.                 var fc = p.charAt(0);
  108.                 var staticCls = fc.toUpperCase() == fc;
  109.                 if(p == 'Ext' || !staticCls){
  110.                     pkg.push(p);
  111.                     res[i] = 'pkg-'+pkg.join('.');
  112.                 }else if(staticCls){
  113.                     --last;
  114.                     res.splice(i, 1);
  115.                 }
  116.             }
  117.             res[last] = cls;
  118.             this.selectPath('/root/apidocs/'+res.join('/'));
  119.         }
  120.     }
  121. });
  122. DocPanel = Ext.extend(Ext.Panel, {
  123.     closable: true,
  124.     autoScroll:true,
  125.     
  126.     initComponent : function(){
  127.         var ps = this.cclass.split('.');
  128.         this.title = ps[ps.length-1];
  129.         Ext.apply(this,{
  130.             tbar: ['->',{
  131.                 text: 'Config Options',
  132.                 handler: this.scrollToMember.createDelegate(this, ['configs']),
  133.                 iconCls: 'icon-config'
  134.             },'-',{
  135.                 text: 'Properties',
  136.                 handler: this.scrollToMember.createDelegate(this, ['props']),
  137.                 iconCls: 'icon-prop'
  138.             }, '-',{
  139.                 text: 'Methods',
  140.                 handler: this.scrollToMember.createDelegate(this, ['methods']),
  141.                 iconCls: 'icon-method'
  142.             }, '-',{
  143.                 text: 'Events',
  144.                 handler: this.scrollToMember.createDelegate(this, ['events']),
  145.                 iconCls: 'icon-event'
  146.             }, '-',{
  147.                 text: 'Direct Link',
  148.                 handler: this.directLink,
  149.                 scope: this,
  150.                 iconCls: 'icon-fav'
  151.             }, '-',{
  152.                 tooltip:'Hide Inherited Members',
  153.                 iconCls: 'icon-hide-inherited',
  154.                 enableToggle: true,
  155.                 scope: this,
  156.                 toggleHandler : function(b, pressed){
  157.                      this.body[pressed ? 'addClass' : 'removeClass']('hide-inherited');
  158.                 }
  159.             }, '-', {
  160.                 tooltip:'Expand All Members',
  161.                 iconCls: 'icon-expand-members',
  162.                 enableToggle: true,
  163.                 scope: this,
  164.                 toggleHandler : function(b, pressed){
  165.                     this.body[pressed ? 'addClass' : 'removeClass']('full-details');
  166.                 }
  167.             }]
  168.         });
  169.         DocPanel.superclass.initComponent.call(this);
  170.     },
  171.     directLink : function(){
  172.         var link = String.format(
  173.             "<a href="{0}" target="_blank">{0}</a>",
  174.             document.location.href+'?class='+this.cclass
  175.         );
  176.         Ext.Msg.alert('Direct Link to ' + this.cclass,link);
  177.     },
  178.     
  179.     scrollToMember : function(member){
  180.         var el = Ext.fly(this.cclass + '-' + member);
  181.         if(el){
  182.             var top = (el.getOffsetsTo(this.body)[1]) + this.body.dom.scrollTop;
  183.             this.body.scrollTo('top', top-25, {duration:0.75, callback: this.hlMember.createDelegate(this, [member])});
  184.         }
  185.     },
  186. scrollToSection : function(id){
  187. var el = Ext.getDom(id);
  188. if(el){
  189. var top = (Ext.fly(el).getOffsetsTo(this.body)[1]) + this.body.dom.scrollTop;
  190. this.body.scrollTo('top', top-25, {duration:0.5, callback: function(){
  191.                 Ext.fly(el).next('h2').pause(0.2).highlight('#8DB2E3', {attr:'color'});
  192.             }});
  193.         }
  194. },
  195.     hlMember : function(member){
  196.         var el = Ext.fly(this.cclass + '-' + member);
  197.         if(el){
  198.             if (tr = el.up('tr')) {
  199.                 tr.highlight('#cadaf9');
  200.             }
  201.         }
  202.     }
  203. });
  204. MainPanel = function(){
  205. this.searchStore = new Ext.data.Store({
  206.         proxy: new Ext.data.ScriptTagProxy({
  207.             url: 'http://extjs.com/playpen/api.php'
  208.         }),
  209.         reader: new Ext.data.JsonReader({
  210.             root: 'data'
  211.         }, 
  212. ['cls', 'member', 'type', 'doc']
  213. ),
  214. baseParams: {},
  215.         listeners: {
  216.             'beforeload' : function(){
  217.                 this.baseParams.qt = Ext.getCmp('search-type').getValue();
  218.             }
  219.         }
  220.     }); 
  221.     MainPanel.superclass.constructor.call(this, {
  222.         id:'doc-body',
  223.         region:'center',
  224.         margins:'0 5 5 0',
  225.         resizeTabs: true,
  226.         minTabWidth: 135,
  227.         tabWidth: 135,
  228.         plugins: new Ext.ux.TabCloseMenu(),
  229.         enableTabScroll: true,
  230.         activeTab: 0,
  231.         items: {
  232.             id:'welcome-panel',
  233.             title: 'API Home',
  234.             autoLoad: {url: 'welcome.html', callback: this.initSearch, scope: this},
  235.             iconCls:'icon-docs',
  236.             autoScroll: true,
  237. tbar: [
  238. 'Search: ', ' ',
  239.                 new Ext.ux.SelectBox({
  240.                     listClass:'x-combo-list-small',
  241.                     width:90,
  242.                     value:'Starts with',
  243.                     id:'search-type',
  244.                     store: new Ext.data.SimpleStore({
  245.                         fields: ['text'],
  246.                         expandData: true,
  247.                         data : ['Starts with', 'Ends with', 'Any match']
  248.                     }),
  249.                     displayField: 'text'
  250.                 }), ' ',
  251.                 new Ext.app.SearchField({
  252.                 width:240,
  253. store: this.searchStore,
  254. paramName: 'q'
  255.             })
  256.             ]
  257.         }
  258.     });
  259. };
  260. Ext.extend(MainPanel, Ext.TabPanel, {
  261.     initEvents : function(){
  262.         MainPanel.superclass.initEvents.call(this);
  263.         this.body.on('click', this.onClick, this);
  264.     },
  265.     onClick: function(e, target){
  266.         if(target = e.getTarget('a:not(.exi)', 3)){
  267.             var cls = Ext.fly(target).getAttributeNS('ext', 'cls');
  268.             e.stopEvent();
  269.             if(cls){
  270.                 var member = Ext.fly(target).getAttributeNS('ext', 'member');
  271.                 this.loadClass(target.href, cls, member);
  272.             }else if(target.className == 'inner-link'){
  273.                 this.getActiveTab().scrollToSection(target.href.split('#')[1]);
  274.             }else{
  275.                 window.open(target.href);
  276.             }
  277.         }else if(target = e.getTarget('.micon', 2)){
  278.             e.stopEvent();
  279.             var tr = Ext.fly(target.parentNode);
  280.             if(tr.hasClass('expandable')){
  281.                 tr.toggleClass('expanded');
  282.             }
  283.         }
  284.     },
  285.     loadClass : function(href, cls, member){
  286.         var id = 'docs-' + cls;
  287.         var tab = this.getComponent(id);
  288.         if(tab){
  289.             this.setActiveTab(tab);
  290.             if(member){
  291.                 tab.scrollToMember(member);
  292.             }
  293.         }else{
  294.             var autoLoad = {url: href};
  295.             if(member){
  296.                 autoLoad.callback = function(){
  297.                     Ext.getCmp(id).scrollToMember(member);
  298.                 }
  299.             }
  300.             var p = this.add(new DocPanel({
  301.                 id: id,
  302.                 cclass : cls,
  303.                 autoLoad: autoLoad,
  304.                 iconCls: Docs.icons[cls]
  305.             }));
  306.             this.setActiveTab(p);
  307.         }
  308.     },
  309. initSearch : function(){
  310. // Custom rendering Template for the View
  311.     var resultTpl = new Ext.XTemplate(
  312.         '<tpl for=".">',
  313.         '<div class="search-item">',
  314.             '<a class="member" ext:cls="{cls}" ext:member="{member}" href="output/{cls}.html">',
  315. '<img src="resources/images/default/s.gif" class="item-icon icon-{type}"/>{member}',
  316. '</a> ',
  317. '<a class="cls" ext:cls="{cls}" href="output/{cls}.html">{cls}</a>',
  318.             '<p>{doc}</p>',
  319.         '</div></tpl>'
  320.     );
  321. var p = new Ext.DataView({
  322.             applyTo: 'search',
  323. tpl: resultTpl,
  324. loadingText:'Searching...',
  325.             store: this.searchStore,
  326.             itemSelector: 'div.search-item',
  327. emptyText: '<h3>Use the search field above to search the Ext API for classes, properties, config options, methods and events.</h3>'
  328.         });
  329. },
  330. doSearch : function(e){
  331. var k = e.getKey();
  332. if(!e.isSpecialKey()){
  333. var text = e.target.value;
  334. if(!text){
  335. this.searchStore.baseParams.q = '';
  336. this.searchStore.removeAll();
  337. }else{
  338. this.searchStore.baseParams.q = text;
  339. this.searchStore.reload();
  340. }
  341. }
  342. }
  343. });
  344. Ext.onReady(function(){
  345.     Ext.QuickTips.init();
  346.     var api = new ApiPanel();
  347.     var mainPanel = new MainPanel();
  348.     api.on('click', function(node, e){
  349.          if(node.isLeaf()){
  350.             e.stopEvent();
  351.             mainPanel.loadClass(node.attributes.href, node.id);
  352.          }
  353.     });
  354.     mainPanel.on('tabchange', function(tp, tab){
  355.         api.selectClass(tab.cclass); 
  356.     });
  357.     var viewport = new Ext.Viewport({
  358.         layout:'border',
  359.         items:[ {
  360.             cls: 'docs-header',
  361.             height: 36,
  362.             region:'north',
  363.             xtype:'box',
  364.             el:'header',
  365.             border:false,
  366.             margins: '0 0 5 0'
  367.         }, api, mainPanel ]
  368.     });
  369.     api.expandPath('/root/apidocs');
  370.     // allow for link in
  371.     var page = window.location.href.split('?')[1];
  372.     if(page){
  373.         var ps = Ext.urlDecode(page);
  374.         var cls = ps['class'];
  375.         mainPanel.loadClass('output/' + cls + '.html', cls, ps.member);
  376.     }
  377.     
  378.     viewport.doLayout();
  379. setTimeout(function(){
  380.         Ext.get('loading').remove();
  381.         Ext.get('loading-mask').fadeOut({remove:true});
  382.     }, 250);
  383. });
  384. Ext.app.SearchField = Ext.extend(Ext.form.TwinTriggerField, {
  385.     initComponent : function(){
  386.         if(!this.store.baseParams){
  387. this.store.baseParams = {};
  388. }
  389. Ext.app.SearchField.superclass.initComponent.call(this);
  390. this.on('specialkey', function(f, e){
  391.             if(e.getKey() == e.ENTER){
  392.                 this.onTrigger2Click();
  393.             }
  394.         }, this);
  395.     },
  396.     validationEvent:false,
  397.     validateOnBlur:false,
  398.     trigger1Class:'x-form-clear-trigger',
  399.     trigger2Class:'x-form-search-trigger',
  400.     hideTrigger1:true,
  401.     width:180,
  402.     hasSearch : false,
  403.     paramName : 'query',
  404.     onTrigger1Click : function(){
  405.         if(this.hasSearch){
  406.             this.store.baseParams[this.paramName] = '';
  407. this.store.removeAll();
  408. this.el.dom.value = '';
  409.             this.triggers[0].hide();
  410.             this.hasSearch = false;
  411. this.focus();
  412.         }
  413.     },
  414.     onTrigger2Click : function(){
  415.         var v = this.getRawValue();
  416.         if(v.length < 1){
  417.             this.onTrigger1Click();
  418.             return;
  419.         }
  420. if(v.length < 2){
  421. Ext.Msg.alert('Invalid Search', 'You must enter a minimum of 2 characters to search the API');
  422. return;
  423. }
  424. this.store.baseParams[this.paramName] = v;
  425.         var o = {start: 0};
  426.         this.store.reload({params:o});
  427.         this.hasSearch = true;
  428.         this.triggers[0].show();
  429. this.focus();
  430.     }
  431. });
  432. /**
  433.  * Makes a ComboBox more closely mimic an HTML SELECT.  Supports clicking and dragging
  434.  * through the list, with item selection occurring when the mouse button is released.
  435.  * When used will automatically set {@link #editable} to false and call {@link Ext.Element#unselectable}
  436.  * on inner elements.  Re-enabling editable after calling this will NOT work.
  437.  *
  438.  * @author Corey Gilmore
  439.  * http://extjs.com/forum/showthread.php?t=6392
  440.  *
  441.  * @history 2007-07-08 jvs
  442.  * Slight mods for Ext 2.0
  443.  */
  444. Ext.ux.SelectBox = function(config){
  445. this.searchResetDelay = 1000;
  446. config = config || {};
  447. config = Ext.apply(config || {}, {
  448. editable: false,
  449. forceSelection: true,
  450. rowHeight: false,
  451. lastSearchTerm: false,
  452.         triggerAction: 'all',
  453.         mode: 'local'
  454.     });
  455. Ext.ux.SelectBox.superclass.constructor.apply(this, arguments);
  456. this.lastSelectedIndex = this.selectedIndex || 0;
  457. };
  458. Ext.extend(Ext.ux.SelectBox, Ext.form.ComboBox, {
  459.     lazyInit: false,
  460. initEvents : function(){
  461. Ext.ux.SelectBox.superclass.initEvents.apply(this, arguments);
  462. // you need to use keypress to capture upper/lower case and shift+key, but it doesn't work in IE
  463. this.el.on('keydown', this.keySearch, this, true);
  464. this.cshTask = new Ext.util.DelayedTask(this.clearSearchHistory, this);
  465. },
  466. keySearch : function(e, target, options) {
  467. var raw = e.getKey();
  468. var key = String.fromCharCode(raw);
  469. var startIndex = 0;
  470. if( !this.store.getCount() ) {
  471. return;
  472. }
  473. switch(raw) {
  474. case Ext.EventObject.HOME:
  475. e.stopEvent();
  476. this.selectFirst();
  477. return;
  478. case Ext.EventObject.END:
  479. e.stopEvent();
  480. this.selectLast();
  481. return;
  482. case Ext.EventObject.PAGEDOWN:
  483. this.selectNextPage();
  484. e.stopEvent();
  485. return;
  486. case Ext.EventObject.PAGEUP:
  487. this.selectPrevPage();
  488. e.stopEvent();
  489. return;
  490. }
  491. // skip special keys other than the shift key
  492. if( (e.hasModifier() && !e.shiftKey) || e.isNavKeyPress() || e.isSpecialKey() ) {
  493. return;
  494. }
  495. if( this.lastSearchTerm == key ) {
  496. startIndex = this.lastSelectedIndex;
  497. }
  498. this.search(this.displayField, key, startIndex);
  499. this.cshTask.delay(this.searchResetDelay);
  500. },
  501. onRender : function(ct, position) {
  502. this.store.on('load', this.calcRowsPerPage, this);
  503. Ext.ux.SelectBox.superclass.onRender.apply(this, arguments);
  504. if( this.mode == 'local' ) {
  505. this.calcRowsPerPage();
  506. }
  507. },
  508. onSelect : function(record, index, skipCollapse){
  509. if(this.fireEvent('beforeselect', this, record, index) !== false){
  510. this.setValue(record.data[this.valueField || this.displayField]);
  511. if( !skipCollapse ) {
  512. this.collapse();
  513. }
  514. this.lastSelectedIndex = index + 1;
  515. this.fireEvent('select', this, record, index);
  516. }
  517. },
  518. render : function(ct) {
  519. Ext.ux.SelectBox.superclass.render.apply(this, arguments);
  520. if( Ext.isSafari ) {
  521. this.el.swallowEvent('mousedown', true);
  522. }
  523. this.el.unselectable();
  524. this.innerList.unselectable();
  525. this.trigger.unselectable();
  526. this.innerList.on('mouseup', function(e, target, options) {
  527. if( target.id && target.id == this.innerList.id ) {
  528. return;
  529. }
  530. this.onViewClick();
  531. }, this);
  532. this.innerList.on('mouseover', function(e, target, options) {
  533. if( target.id && target.id == this.innerList.id ) {
  534. return;
  535. }
  536. this.lastSelectedIndex = this.view.getSelectedIndexes()[0] + 1;
  537. this.cshTask.delay(this.searchResetDelay);
  538. }, this);
  539. this.trigger.un('click', this.onTriggerClick, this);
  540. this.trigger.on('mousedown', function(e, target, options) {
  541. e.preventDefault();
  542. this.onTriggerClick();
  543. }, this);
  544. this.on('collapse', function(e, target, options) {
  545. Ext.getDoc().un('mouseup', this.collapseIf, this);
  546. }, this, true);
  547. this.on('expand', function(e, target, options) {
  548. Ext.getDoc().on('mouseup', this.collapseIf, this);
  549. }, this, true);
  550. },
  551. clearSearchHistory : function() {
  552. this.lastSelectedIndex = 0;
  553. this.lastSearchTerm = false;
  554. },
  555. selectFirst : function() {
  556. this.focusAndSelect(this.store.data.first());
  557. },
  558. selectLast : function() {
  559. this.focusAndSelect(this.store.data.last());
  560. },
  561. selectPrevPage : function() {
  562. if( !this.rowHeight ) {
  563. return;
  564. }
  565. var index = Math.max(this.selectedIndex-this.rowsPerPage, 0);
  566. this.focusAndSelect(this.store.getAt(index));
  567. },
  568. selectNextPage : function() {
  569. if( !this.rowHeight ) {
  570. return;
  571. }
  572. var index = Math.min(this.selectedIndex+this.rowsPerPage, this.store.getCount() - 1);
  573. this.focusAndSelect(this.store.getAt(index));
  574. },
  575. search : function(field, value, startIndex) {
  576. field = field || this.displayField;
  577. this.lastSearchTerm = value;
  578. var index = this.store.find.apply(this.store, arguments);
  579. if( index !== -1 ) {
  580. this.focusAndSelect(index);
  581. }
  582. },
  583. focusAndSelect : function(record) {
  584. var index = typeof record === 'number' ? record : this.store.indexOf(record);
  585. this.select(index, this.isExpanded());
  586. this.onSelect(this.store.getAt(record), index, this.isExpanded());
  587. },
  588. calcRowsPerPage : function() {
  589. if( this.store.getCount() ) {
  590. this.rowHeight = Ext.fly(this.view.getNode(0)).getHeight();
  591. this.rowsPerPage = this.maxHeight / this.rowHeight;
  592. } else {
  593. this.rowHeight = false;
  594. }
  595. }
  596. });
  597. Ext.Ajax.on('requestcomplete', function(ajax, xhr, o){
  598.     if(typeof urchinTracker == 'function' && o && o.url){
  599.         urchinTracker(o.url);
  600.     }
  601. });