1 // Copyright (c) 2011 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 Dygraphs options palette.
24 * @author konigsberg@google.com (Robert Konigsberg)
29 * scope is either "global", "series", "x", "y" or "y2".
31 function Palette(scope
) {
32 // Contains pair of "input" (the input object) and "row" (the parent row)
33 // Also contains functionString.
35 // This is meant to be overridden by a palette host.
36 this.onchange
= function() {};
41 Palette
.prototype.create
= function(parentElement
) {
44 var table
= $("<div>")
47 .appendTo(parentElement
);
50 this.tooltip
= new Tooltip();
52 // One row per option.
53 $.each(opts
, function(opt
, optEntry
) {
55 var scope
= optEntry
.scope
|| [ "global" ]; // Scope can be empty, infer "global" only.
56 var valid
= scope
[0] == "*" || $.inArray(palette
.scope
, scope
) >= 0;
61 var type
= optEntry
.type
;
62 var isFunction
= type
.indexOf("function(") == 0;
67 .click(function(opt
, palette
) {
68 return function(event
) {
69 var entry
= palette
.model
[opt
];
70 var inputValue
= entry
.functionString
;
71 var type
= opts
[opt
].type
;
72 if (inputValue
== null || inputValue
.length
== 0) {
73 inputValue
= type
+ "{\n\n}";
75 var textarea
= new TextArea();
76 textarea
.show(opt
, inputValue
);
77 textarea
.okCallback
= function(value
) {
78 if (value
!= inputValue
) {
79 entry
.functionString
= value
;
80 entry
.input
.textContent
= value
? "defined" : "not defined";
85 } (opt
, palette
) // Instantiating this inner function.
87 } else if (type
== "boolean") {
89 .click(function(event
) {
90 var btn
= event
.target
;
91 if (btn
.value
== "none") {
92 Palette
.populateBooleanButton(btn
, "true");
93 } else if (btn
.value
== "true") {
94 Palette
.populateBooleanButton(btn
, "false");
96 Palette
.populateBooleanButton(btn
, "none");
101 input
= $("<input>", { type
: "text" })
102 .addClass("textInput")
103 .keypress(function(event
) {
104 var keycode
= event
.which
;
105 if (keycode
== 13 || keycode
== 8) {
112 .append($("<span>").addClass("name").text(opt
))
113 .append($("<span>").addClass("option")
116 row
.mouseover(function(source
, title
, type
, body
) {
118 palette
.tooltip
.show(source
, title
, type
, body
);
120 } (row
, opt
, type
, Dygraph
.OPTIONS_REFERENCE
[opt
].description
))
121 .mouseout(function() { palette
.tooltip
.hide(); })
125 palette
.model
[opt
] = { input
: input
, row
: row
};
127 throw "For option " + opt
+ ":" + err
;
134 // TODO: replace semicolon parsing with comma parsing, and supporting quotes.
135 Palette
.parseStringArray
= function(value
) {
136 if (value
== null || value
.length
== 0) {
139 return value
.split(";");
142 Palette
.parseBooleanArray
= function(value
) {
143 if (value
== null || value
.length
== 0) {
146 return value
.split(',').map(function(x
) {
147 return x
.trim() == "true";
151 Palette
.parseFloatArray
= function(value
) {
152 if (value
== null || value
.length
== 0) {
155 return value
.split(',').map(function(x
) {
156 return parseFloat(x
);
160 Palette
.parseIntArray
= function(value
) {
161 if (value
== null || value
.length
== 0) {
165 return value
.split(',').map(function(x
) {
170 Palette
.prototype.read
= function() {
172 for (var opt
in this.model
) {
173 if (this.model
.hasOwnProperty(opt
)) {
174 var type
= opts
[opt
].type
;
175 var isFunction
= type
.indexOf("function(") == 0;
176 var input
= this.model
[opt
].input
[0]; // jquery dereference.
177 var value
= isFunction
? this.model
[opt
].functionString
: input
.value
;
178 if (value
&& value
.length
!= 0) {
179 if (type
== "boolean") {
180 if (value
== "false") {
181 results
[opt
] = false;
183 if (value
== "true") {
186 // Ignore value == "none"
187 } else if (type
== "int") {
188 results
[opt
] = parseInt(value
);
189 } else if (type
== "float") {
190 results
[opt
] = parseFloat(value
);
191 } else if (type
== "array<string>") {
192 results
[opt
] = Palette
.parseStringArray(value
);
193 } else if (type
== "array<float>") {
194 results
[opt
] = Palette
.parseFloatArray(value
);
195 } else if (type
== "array<boolean>") {
196 results
[opt
] = Palette
.parseBooleanArray(value
);
197 } else if (type
== "array<int>") {
198 results
[opt
] = Palette
.parseIntArray(value
);
199 } else if (type
== "array<Date>") {
200 results
[opt
] = Palette
.parseIntArray(value
);
201 } else if (isFunction
) {
202 var localVariable
= null;
203 eval("localVariable = " + value
);
204 results
[opt
] = localVariable
;
206 results
[opt
] = value
;
215 * Write to input elements.
217 Palette
.prototype.write
= function(hash
) {
222 for (var opt
in this.model
) {
223 if (this.model
.hasOwnProperty(opt
)) {
224 var input
= this.model
[opt
].input
[0]; // jquery dereference
225 var type
= opts
[opt
].type
;
226 var value
= hash
[opt
];
227 if (type
== "boolean") {
228 var text
= value
== true ? "true" : (value
== false ? "false" : "none");
229 Palette
.populateBooleanButton(input
, text
);
230 } else if (type
== "array<string>") {
232 input
.value
= value
.join("; ");
234 } else if (type
.indexOf("array") == 0) {
236 input
.value
= value
.join(", ");
238 } else if (type
.indexOf("function(") == 0) {
239 input
.textContent
= value
? "defined" : "not defined";
240 this.model
[opt
].functionString
= value
? value
.toString() : null;
242 if (value
!= undefined
) {
250 Palette
.populateBooleanButton
= function(button
, value
) {
251 button
.innerHTML
= value
;
252 button
.value
= value
;
255 Palette
.prototype.filter
= function(pattern
) {
256 pattern
= pattern
.toLowerCase();
258 for (var opt
in this.model
) {
259 if (this.model
.hasOwnProperty(opt
)) {
260 var row
= this.model
[opt
].row
;
261 var matches
= opt
.toLowerCase().indexOf(pattern
) >= 0;
264 row
.attr("class", even
? "even" : "odd");