This repository has been archived by the owner on Jun 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 299
/
component-library.py
130 lines (111 loc) · 3.46 KB
/
component-library.py
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# -*- coding: utf-8 -*-
import dash
from dash.dependencies import Input, Output
import dash_html_components as html
import dash_core_components as dcc
import json
app = dash.Dash()
def layout(id):
return html.Div([
html.Label('Dropdown'),
dcc.Dropdown(
options=[
{'label': 'New York City', 'value': 'NYC'},
{'label': 'Montréal', 'value': 'MTL'},
{'label': 'San Francisco', 'value': 'SF'}
],
value='MTL',
id='{}-dropdown'.format(id)
),
html.Label('Multi-Select Dropdown'),
dcc.Dropdown(
options=[
{'label': 'New York City', 'value': 'NYC'},
{'label': 'Montréal', 'value': 'MTL'},
{'label': 'San Francisco', 'value': 'SF'}
],
value=['MTL', 'SF'],
multi=True,
id='{}-multi-dropdown'.format(id)
),
html.Label('Radio Items'),
dcc.RadioItems(
options=[
{'label': 'New York City', 'value': 'NYC'},
{'label': 'Montréal', 'value': 'MTL'},
{'label': 'San Francisco', 'value': 'SF'}
],
value='MTL',
id='{}-radio-items'.format(id)
),
html.Label('Checkboxes'),
dcc.Checklist(
options=[
{'label': 'New York City', 'value': 'NYC'},
{'label': 'Montréal', 'value': 'MTL'},
{'label': 'San Francisco', 'value': 'SF'}
],
values=['MTL', 'SF'],
id='{}-checkboxes'.format(id)
),
html.Label('Text Input'),
dcc.Input(
value='MTL',
type='text',
id='{}-input'.format(id)
),
html.Label('Slider'),
dcc.Slider(
min=0,
max=9,
marks={i: 'Label {}'.format(i) if i == 1 else str(i) for i in range(1, 6)},
value=5,
id='{}-slider'.format(id)
),
html.Label('Range Slider'),
dcc.RangeSlider(
min=0,
max=9,
marks={i: 'Label {}'.format(i) if i == 1 else str(i) for i in range(1, 6)},
value=[5, 8],
id='{}-range-slider'.format(id)
),
html.Label('Slider on Drag'),
dcc.Slider(
min=0,
max=9,
marks={i: 'Label {}'.format(i) if i == 1 else str(i) for i in range(1, 6)},
value=5,
updatemode='drag',
id='{}-slider-drag'.format(id)
),
html.Label('Range Slider'),
dcc.RangeSlider(
min=0,
max=9,
marks={i: 'Label {}'.format(i) if i == 1 else str(i) for i in range(1, 6)},
value=[5, 8],
updatemode='drag',
id='{}-range-slider-drag'.format(id)
)
])
app.scripts.config.serve_locally = True
app.layout = html.Div([
html.H3('Uncontrolled Components'),
layout('xx'),
html.Hr(),
html.H3('Controlled Components'),
layout('controlled'),
html.Div(id='output-value')
])
INPUTS = [
Input(id_, 'value') for id_ in list(app.layout.keys())
if 'controlled' in id_ and 'checkboxes' not in id_]
INPUTS.append(Input('controlled-checkboxes', 'values'))
@app.callback(
Output('output-value', 'children'),
INPUTS)
def display_values(*args):
return json.dumps(args)
if __name__ == '__main__':
app.run_server(debug=True)