forked from KirkMcDonald/kirkmcdonald.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdropdown.js
94 lines (85 loc) · 2.96 KB
/
dropdown.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*Copyright 2019 Kirk McDonald
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.*/
"use strict"
let dropdownLocal = d3.local()
function toggleDropdown() {
let {dropdownNode, onOpen, onClose} = dropdownLocal.get(this)
let dropdown = d3.select(dropdownNode)
let classes = dropdownNode.classList
if (classes.contains("open")) {
classes.remove("open")
if (onClose) {
onClose(dropdown)
}
} else {
let selected = dropdown.select("input:checked + label")
dropdown.select(".spacer")
.style("width", selected.style("width"))
.style("height", selected.style("height"))
classes.add("open")
if (onOpen) {
onOpen(dropdown)
}
}
}
// Appends a dropdown to the selection, and returns a selection over the div
// for the content of the dropdown.
function makeDropdown(selector, onOpen, onClose) {
let dropdown = selector.append("div")
.classed("dropdownWrapper", true)
.each(function() {
let dropdownNode = this
dropdownLocal.set(this, {dropdownNode, onOpen, onClose})
})
dropdown.append("div")
.classed("clicker", true)
.on("click", toggleDropdown)
let dropdownInner = dropdown.append("div")
.classed("dropdown", true)
.on("click", toggleDropdown)
dropdown.append("div")
.classed("spacer", true)
return dropdownInner
}
let inputId = 0
let labelFor = 0
// Appends a dropdown input to the selection.
//
// Args:
// name: Should be unique to the dropdown.
// checked: Should be true when a given input is the selected one.
// callback: Called when the selected item is changed.
//
// Returns:
// Selection with the input's label.
function addInputs(selector, name, checked, callback) {
selector.append("input")
.on("change", function(d, i, nodes) {
toggleDropdown.call(this)
callback.call(this, d, i, nodes)
})
.attr("id", () => "input-" + inputId++)
.attr("name", name)
.attr("type", "radio")
.property("checked", checked)
let label = selector.append("label")
.attr("for", () => "input-" + labelFor++)
return label
}
// Wrapper around makeDropdown/addInputs to create an input for each item in
// data.
function dropdownInputs(selector, data, name, checked, callback) {
let dd = makeDropdown(selector)
.selectAll("div")
.data(data)
.join("div")
return addInputs(dd, name, checked, callback)
}