X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;ds=sidebyside;f=gallery%2Fgallery.js;h=e854a7a4ac0bd0b1b13abe2ce7b7cdb234060ad1;hb=90e92cf5ac0af418a771722b81bd7fbce942e5a1;hp=0c0034caf60eabf0b4380d8181fccae62fd444da;hpb=5be52ac33ffa79ee2212158aaed71ec3ffb6736c;p=dygraphs.git diff --git a/gallery/gallery.js b/gallery/gallery.js index 0c0034c..e854a7a 100644 --- a/gallery/gallery.js +++ b/gallery/gallery.js @@ -24,6 +24,7 @@ Gallery.start = function() { Gallery.workareaChild = Gallery.create("div", Gallery.workarea); Gallery.demotitle = document.getElementById("demotitle"); Gallery.textarea = new TextArea(); + Gallery.textarea.cancel.style.display = "none"; Gallery.textarea.width = 600; Gallery.textarea.height = 400; @@ -48,22 +49,53 @@ Gallery.start = function() { } } Gallery.subtitle.innerHTML = ""; - var codeLink = Gallery.create("a", Gallery.subtitle); - codeLink.textContent = "code"; - codeLink.href = "#"; + Gallery.demotitle.textContent = demo.title ? demo.title : ""; demo.innerDiv.className = "selected"; + + var codeSpan = Gallery.create("span", Gallery.subtitle); + codeSpan.id = "code"; + + var htmlLink = Gallery.create("a", codeSpan); + htmlLink.textContent = "HTML"; + + codeSpan.appendChild(document.createTextNode(" ")); + + var javascriptLink = Gallery.create("a", codeSpan); + javascriptLink.textContent = "Javascript"; + + codeSpan.appendChild(document.createTextNode(" ")); + + var css = getCss(id); + if (css) { + var cssLink = Gallery.create("a", codeSpan); + cssLink.textContent = "CSS"; + } + Gallery.workareaChild.id = id; location.hash = "g/" + id; + Gallery.workareaChild.innerHTML=''; if (demo.setup) { demo.setup(Gallery.workareaChild); } + var html = Gallery.workareaChild.innerHTML; - codeLink.onclick = function() { - var javascript = demo.run.toString(); - Gallery.textarea.show("Code", "HTML\n\n" + html + "\n\njavascript\n\n" + javascript); + + htmlLink.onclick = function() { + Gallery.textarea.show("HTML", html); + }; + + javascriptLink.onclick = function() { + Gallery.textarea.show("Javascript", demo.run.toString()); }; + + if (css) { + cssLink.onclick = function() { + Gallery.textarea.show("CSS", css); + }; + } + demo.run(Gallery.workareaChild); Gallery.runningDemo = demo; }; }(demo, id); @@ -74,6 +106,32 @@ Gallery.start = function() { window.onhashchange = Gallery.setHash;("hashchange", Gallery.hashChange, false); }; +var getCss = function(id) { + for (var i = 0; i < document.styleSheets.length; i++) { + var ss = document.styleSheets[i]; + if (ss.title == "gallery") { + try { + var rules = ss.rules || ss.cssRules; + if (rules) { + var arry = []; + for (var j = 0; j < rules.length; j++) { + var rule = rules[j]; + var cssText = rule.cssText; + var key = "#workarea #" + id + " "; + if (cssText.indexOf(key) == 0) { + arry.push(cssText.substr(key.length)); + } + } + return arry.join("\n\n"); + } + } catch(e) { // security error + console.log(e); + } + } + } + return "not found"; +} + Gallery.register = function(id, demo) { if (Gallery.entries[id]) { throw id + " already registered";