Editing YUI TreeView shootout This edit will create a new revision. Your details (optional) Name Email (won’t be displayed; might be used for Gravatar) URL Test case details Title * Published (uncheck if you want to fiddle around before making the page public) Description (in case you feel further explanation is needed)(Markdown syntax is allowed) Comparing the init/render performance of various YUI TreeView implementations. Note: The TreeviewLite test isn't quite an apples-to-apples comparison with the others. TreeviewLite doesn't dynamically render to the DOM like the other treeviews -- it requires an existing DOM structure. Also, we have to unplug the TreeviewLite plugin inside the test loop or else every subsequent loop would just be a noop. Are you a spammer? (just answer the question) Preparation code Preparation code HTML (this will be inserted in the <body> of a valid HTML5 document in standards mode) (useful when testing DOM operations or including libraries) <div id="treeview"></div> <ol id="treeviewlite"></ol> <script src="http://yui.yahooapis.com/3.8.1/build/yui/yui-min.js"></script> <script> var Y = YUI({ fetchCSS: false, gallery: 'gallery-2013.01.09-23-24' }).use('gallery-sm-treeview', 'gallery-fwt-treeview', 'gallery-treeviewlite'); // Separate YUI instances needed to avoid class name collisions. var Y2 = YUI({fetchCSS: false}).use('gallery-yui3treeview'); var Y3 = YUI({fetchCSS: false}).use('gallery-yui3treeview-ng'); </script> Include JavaScript libraries as follows: <script src="//cdn.ext/library.js"></script> Define setup for all tests (variables, functions, arrays or other objects that will be used in the tests) (runs before each clocked test loop, outside of the timed code region) (e.g. define local test variables, reset global variables, clear canvas, etc.) (see FAQ) var container = Y.one('#treeview'), ol = Y.one('#treeviewlite'), nodes = [], typeNodes = [], // gallery-yui3treeview needs an extra "type" property on parent nodes, and this breaks gallery-fwt-treeview child, li, node, typeNode; // Generate a bunch of bogus data to fill the trees with. for (var i = 0; i < 20; i++) { node = {label: 'Item ' + i}; typeNode = {label: 'Item ' + i}; li = Y.Node.create('<li><span>Item ' + i + '</span></li>'); // Fill every third node with 20 children. if (i % 3 === 0) { fillChildren(node, 20); fillChildren(typeNode, 20, null, true); fillChildrenHtml(li, 20); } // Fill every tenth node with children to a depth of 50. if (i % 10 === 0) { fillChildren(node, 1, 50); fillChildren(typeNode, 1, 50, true); fillChildrenHtml(li, 1, 50); } nodes.push(node); typeNodes.push(typeNode); ol.append(li); } function fillChildren(parent, count, depth, includeType) { var child; if (!parent.children) { if (includeType) { parent.type = 'TreeView'; } parent.children = []; } for (var i = 0; i < count; i++) { child = {label: 'Child ' + i}; if (depth) { fillChildren(child, count, depth - 1); } parent.children.push(child); } } function fillChildrenHtml(parent, count, depth) { var list = parent.one('>ul'), child; if (!list) { list = Y.Node.create('<ul/>'); parent.append(list); } for (var i = 0; i < count; i++) { child = Y.Node.create('<li><span>Child ' + i + '</span></li>'); if (depth) { fillChildrenHtml(child, count, depth - 1); } list.append(child); } } Define teardown for all tests (runs after each clocked test loop, outside of the timed code region) (see FAQ) Y.one('#treeview').empty(); Y.one('#treeviewlite').empty(); Code snippets to compare Test 1 Title Async (check if this is an asynchronous test) Code new Y.TreeView({ container: container, nodes : nodes }).render(); Test 2 Title Async (check if this is an asynchronous test) Code new Y.FWTreeView({tree: nodes}).render(container); Test 3 Title Async (check if this is an asynchronous test) Code new Y2.TreeView({children: typeNodes}).render(container); Test 4 Title Async (check if this is an asynchronous test) Code new Y3.TreeView({children: nodes}).render(container); Test 5 Title Async (check if this is an asynchronous test) Code ol.plug(Y.Plugin.TreeviewLite); ol.unplug(Y.Plugin.TreeviewLite);