1 // Copyright (c) 2012 Google, Inc.
3 // Permission is hereby granted, free of charge, to any person obtaining a copy
4 // of this software and associated documentation files (the "Software"), to deal
5 // in the Software without restriction, including without limitation the rights
6 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7 // copies of the Software, and to permit persons to whom the Software is
8 // furnished to do so, subject to the following conditions:
10 // The above copyright notice and this permission notice shall be included in
11 // all copies or substantial portions of the Software.
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * @fileoverview Javascript to run index.html.
24 * @author konigsberg@google.com (Robert Konigsberg)
31 Index
.splitVariables
= function() { // http://www.idealog.us/2006/06/javascript_to_p
.html
32 var query
= window
.location
.search
.substring(1);
34 var vars
= query
.split("&");
35 for (var i
= 0; i
< vars
.length
; i
++) {
36 if (vars
[i
].length
> 0) {
37 var pair
= vars
[i
].split("=");
38 args
[pair
[0]] = pair
[1];
46 * @param {Object} element the display element
47 * @param {Object} data the data to be shown
48 * @param {Object} options the options hash.
50 Index
.draw
= function(element
, data
, options
) {
51 element
.innerHTML
= "";
52 element
.removeAttribute("style");
54 // Replace the drawCallback function with one that also lets us track
55 // all labels (for the palette.)
56 // If the drawCallback option is not specified, use a null function.
57 var originalDraw
= options
["drawCallback"] || function() {};
58 options
.drawCallback
= function(g
, isInitial
) {
59 Index
.palette
.setSeries(g
.getLabels());
60 // Call the original function, too.
61 originalDraw(g
, isInitial
);
70 // These don't work yet.
76 Index
.addMessage
= function(text
) {
77 var messages
= document
.getElementById("messages");
78 messages
.textContent
= messages
.textContent
+ text
+ "\n";
82 * Start up the palette system.
84 Index
.start
= function() {
85 var variables
= Index
.splitVariables();
86 var sampleName
= variables
["sample"] || "interestingShapes";
87 var sampleIndex
= Samples
.indexOf(sampleName
);
88 var sample
= Samples
.data
[sampleIndex
];
89 var data
= sample
.data
;
90 var redraw
= function() {
91 Index
.draw(document
.getElementById("graph"), data
, Index
.palette
.read());
94 // Selector is the drop-down for selecting a set of data.
96 // Popupate the selector with the set of data samples
97 var selector
= document
.getElementById("selector").getElementsByTagName("select")[0];
98 for (var idx
in Samples
.data
) {
99 var entry
= Samples
.data
[idx
];
100 var option
= document
.createElement("option");
101 option
.value
= entry
.id
;
102 option
.textContent
= entry
.title
;
103 selector
.appendChild(option
);
105 selector
.onchange
= function() {
106 var id
= selector
.options
[selector
.selectedIndex
].value
;
107 var url
= document
.URL
;
108 var qmIndex
= url
.indexOf("?");
110 url
= url
.substring(0, qmIndex
);
112 url
= url
+ "?sample=" + id
;
113 for (var idx
in variables
) {
114 if (idx
!= "sample") {
115 url
= url
+ "&" + idx
+ "=" + variables
[idx
];
118 window
.location
= url
;
120 selector
.selectedIndex
= sampleIndex
;
122 // Palette contains the widget that builds options.
123 Index
.palette
= new MultiPalette();
124 Index
.palette
.create(document
.getElementById("optionsPalette"));
125 Index
.palette
.write(sample
.options
);
126 Index
.palette
.onchange
= redraw
;
127 Index
.palette
.filterBar
.focus();
131 // Find all new options which we don't implement here in the palette.
132 for (var opt
in Dygraph
.OPTIONS_REFERENCE
) {
133 if (!(opt
in opts
)) {
134 var entry
= Dygraph
.OPTIONS_REFERENCE
[opt
];
135 console
.warn("missing option: " + opt
+ " of type " + entry
.type
);