Skip to content

Commit 787615c

Browse files
authored
Merge pull request #105 from stlehmann/persistence
Add persistence to DAQ components
2 parents 42111db + 8ff152d commit 787615c

9 files changed

+254
-22
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Changelog](http://keepachangelog.com/en/1.0.0/) and this project
77
adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

99
## [Unreleased]
10+
### Added
11+
- [#105](https://github.com/plotly/dash-daq/pull/105) Added [persistence](https://dash.plotly.com/persistence) for
12+
components BooleanSwitch, ColorPicker, Knob, NumericInput, PowerButton, PrecisionInput, Slider and ToggleSwitch
13+
14+
### Changed
1015
- [#92](https://github.com/plotly/dash-daq/pull/92) Update from React 16.8.6 to 16.13.0
1116

1217
## [0.4.0] - 2020-03-04

src/components/BooleanSwitch.react.js

+32-3
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,9 @@ BooleanSwitch.defaultProps = {
4747
on: false,
4848
vertical: false,
4949
theme: light,
50-
labelPosition: 'top'
50+
labelPosition: 'top',
51+
persisted_props: ['on'],
52+
persistence_type: 'local'
5153
};
5254

5355
BooleanSwitch.propTypes = {
@@ -120,7 +122,34 @@ BooleanSwitch.propTypes = {
120122
* Dash-assigned callback that gets fired when
121123
* switch is toggled.
122124
*/
123-
setProps: PropTypes.func
125+
setProps: PropTypes.func,
126+
127+
/**
128+
* Used to allow user interactions in this component to be persisted when
129+
* the component - or the page - is refreshed. If `persisted` is truthy and
130+
* hasn't changed from its previous value, a `value` that the user has
131+
* changed while using the app will keep that change, as long as
132+
* the new `value` also matches what was given originally.
133+
* Used in conjunction with `persistence_type`.
134+
*/
135+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
136+
137+
/**
138+
* Properties whose user interactions will persist after refreshing the
139+
* component or the page. Since only `on` is allowed this prop can
140+
* normally be ignored.
141+
*/
142+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['on'])),
143+
144+
/**
145+
* Where persisted user changes will be stored:
146+
* memory: only kept in memory, reset on page refresh.
147+
* local: window.localStorage, data is kept after the browser quit.
148+
* session: window.sessionStorage, data is cleared once the browser quit.
149+
*/
150+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
124151
};
125152

126-
export default withTheme(BooleanSwitch);
153+
const ThemedBooleanSwitch = withTheme(BooleanSwitch);
154+
ThemedBooleanSwitch.defaultProps = BooleanSwitch.defaultProps;
155+
export default ThemedBooleanSwitch;

src/components/ColorPicker.react.js

+29-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export default class ColorPicker extends Component {
2222
ColorPicker.defaultProps = {
2323
size: 225,
2424
theme: light,
25-
labelPosition: 'top'
25+
labelPosition: 'top',
26+
persisted_props: ['value'],
27+
persistence_type: 'local'
2628
};
2729

2830
ColorPicker.propTypes = {
@@ -104,7 +106,32 @@ ColorPicker.propTypes = {
104106
/**
105107
* Style to apply to the root component element
106108
*/
107-
style: PropTypes.object
109+
style: PropTypes.object,
110+
111+
/**
112+
* Used to allow user interactions in this component to be persisted when
113+
* the component - or the page - is refreshed. If `persisted` is truthy and
114+
* hasn't changed from its previous value, a `value` that the user has
115+
* changed while using the app will keep that change, as long as
116+
* the new `value` also matches what was given originally.
117+
* Used in conjunction with `persistence_type`.
118+
*/
119+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
120+
121+
/**
122+
* Properties whose user interactions will persist after refreshing the
123+
* component or the page. Since only `value` is allowed this prop can
124+
* normally be ignored.
125+
*/
126+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['value'])),
127+
128+
/**
129+
* Where persisted user changes will be stored:
130+
* memory: only kept in memory, reset on page refresh.
131+
* local: window.localStorage, data is kept after the browser quit.
132+
* session: window.sessionStorage, data is cleared once the browser quit.
133+
*/
134+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
108135
};
109136

110137
export const defaultProps = ColorPicker.defaultProps;

src/components/Knob.react.js

+32-3
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,9 @@ Knob.defaultProps = {
161161
min: 0,
162162
max: 10,
163163
theme: light,
164-
labelPosition: 'top'
164+
labelPosition: 'top',
165+
persisted_props: ['value'],
166+
persistence_type: 'local'
165167
};
166168

167169
Knob.propTypes = {
@@ -317,7 +319,34 @@ Knob.propTypes = {
317319
* Dash-assigned callback that gets fired when selected
318320
* value changes.
319321
*/
320-
setProps: PropTypes.func
322+
setProps: PropTypes.func,
323+
324+
/**
325+
* Used to allow user interactions in this component to be persisted when
326+
* the component - or the page - is refreshed. If `persisted` is truthy and
327+
* hasn't changed from its previous value, a `value` that the user has
328+
* changed while using the app will keep that change, as long as
329+
* the new `value` also matches what was given originally.
330+
* Used in conjunction with `persistence_type`.
331+
*/
332+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
333+
334+
/**
335+
* Properties whose user interactions will persist after refreshing the
336+
* component or the page. Since only `value` is allowed this prop can
337+
* normally be ignored.
338+
*/
339+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['value'])),
340+
341+
/**
342+
* Where persisted user changes will be stored:
343+
* memory: only kept in memory, reset on page refresh.
344+
* local: window.localStorage, data is kept after the browser quit.
345+
* session: window.sessionStorage, data is cleared once the browser quit.
346+
*/
347+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
321348
};
322349

323-
export default withTheme(Knob);
350+
const ThemedKnob = withTheme(Knob);
351+
ThemedKnob.defaultProps = Knob.defaultProps;
352+
export default ThemedKnob;

src/components/NumericInput.react.js

+32-3
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,9 @@ NumericInput.defaultProps = {
100100
min: 0,
101101
max: 10,
102102
theme: light,
103-
labelPosition: 'top'
103+
labelPosition: 'top',
104+
persisted_props: ['value'],
105+
persistence_type: 'local'
104106
};
105107

106108
NumericInput.propTypes = {
@@ -177,7 +179,34 @@ NumericInput.propTypes = {
177179
* Dash-assigned callback that gets fired when selected
178180
* value changes.
179181
*/
180-
setProps: PropTypes.func
182+
setProps: PropTypes.func,
183+
184+
/**
185+
* Used to allow user interactions in this component to be persisted when
186+
* the component - or the page - is refreshed. If `persisted` is truthy and
187+
* hasn't changed from its previous value, a `value` that the user has
188+
* changed while using the app will keep that change, as long as
189+
* the new `value` also matches what was given originally.
190+
* Used in conjunction with `persistence_type`.
191+
*/
192+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
193+
194+
/**
195+
* Properties whose user interactions will persist after refreshing the
196+
* component or the page. Since only `value` is allowed this prop can
197+
* normally be ignored.
198+
*/
199+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['value'])),
200+
201+
/**
202+
* Where persisted user changes will be stored:
203+
* memory: only kept in memory, reset on page refresh.
204+
* local: window.localStorage, data is kept after the browser quit.
205+
* session: window.sessionStorage, data is cleared once the browser quit.
206+
*/
207+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
181208
};
182209

183-
export default withTheme(NumericInput);
210+
const ThemedNumericInput = withTheme(NumericInput);
211+
ThemedNumericInput.defaultProps = NumericInput.defaultProps;
212+
export default ThemedNumericInput;

src/components/PowerButton.react.js

+32-3
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ PowerButton.defaultProps = {
7575
on: false,
7676
theme: light,
7777
size: 48,
78-
labelPosition: 'top'
78+
labelPosition: 'top',
79+
persisted_props: ['on'],
80+
persistence_type: 'local'
7981
};
8082

8183
PowerButton.propTypes = {
@@ -146,7 +148,34 @@ PowerButton.propTypes = {
146148
* Dash-assigned callback that gets fired when
147149
* button is clicked.
148150
*/
149-
setProps: PropTypes.func
151+
setProps: PropTypes.func,
152+
153+
/**
154+
* Used to allow user interactions in this component to be persisted when
155+
* the component - or the page - is refreshed. If `persisted` is truthy and
156+
* hasn't changed from its previous value, a `value` that the user has
157+
* changed while using the app will keep that change, as long as
158+
* the new `value` also matches what was given originally.
159+
* Used in conjunction with `persistence_type`.
160+
*/
161+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
162+
163+
/**
164+
* Properties whose user interactions will persist after refreshing the
165+
* component or the page. Since only `on` is allowed this prop can
166+
* normally be ignored.
167+
*/
168+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['on'])),
169+
170+
/**
171+
* Where persisted user changes will be stored:
172+
* memory: only kept in memory, reset on page refresh.
173+
* local: window.localStorage, data is kept after the browser quit.
174+
* session: window.sessionStorage, data is cleared once the browser quit.
175+
*/
176+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
150177
};
151178

152-
export default withTheme(PowerButton);
179+
const ThemedPowerButton = withTheme(PowerButton);
180+
ThemedPowerButton.defaultProps = PowerButton.defaultProps;
181+
export default ThemedPowerButton;

src/components/PrecisionInput.react.js

+32-3
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,9 @@ PrecisionInput.defaultProps = {
211211
max: Number.MAX_SAFE_INTEGER,
212212
theme: light,
213213
labelPosition: 'top',
214-
precision: 2
214+
precision: 2,
215+
persisted_props: ['value'],
216+
persistence_type: 'local'
215217
};
216218

217219
PrecisionInput.propTypes = {
@@ -293,7 +295,34 @@ PrecisionInput.propTypes = {
293295
* Dash-assigned callback that gets fired when selected
294296
* value changes.
295297
*/
296-
setProps: PropTypes.func
298+
setProps: PropTypes.func,
299+
300+
/**
301+
* Used to allow user interactions in this component to be persisted when
302+
* the component - or the page - is refreshed. If `persisted` is truthy and
303+
* hasn't changed from its previous value, a `value` that the user has
304+
* changed while using the app will keep that change, as long as
305+
* the new `value` also matches what was given originally.
306+
* Used in conjunction with `persistence_type`.
307+
*/
308+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
309+
310+
/**
311+
* Properties whose user interactions will persist after refreshing the
312+
* component or the page. Since only `value` is allowed this prop can
313+
* normally be ignored.
314+
*/
315+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['value'])),
316+
317+
/**
318+
* Where persisted user changes will be stored:
319+
* memory: only kept in memory, reset on page refresh.
320+
* local: window.localStorage, data is kept after the browser quit.
321+
* session: window.sessionStorage, data is cleared once the browser quit.
322+
*/
323+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
297324
};
298325

299-
export default withTheme(PrecisionInput);
326+
const ThemedPrecisionInput = withTheme(PrecisionInput);
327+
ThemedPrecisionInput.defaultProps = PrecisionInput.defaultProps;
328+
export default ThemedPrecisionInput;

src/components/Slider.react.js

+28-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ Slider.defaultProps = {
2626
color: colors.DARKER_PRIMARY,
2727
min: 0,
2828
size: 265,
29-
labelPosition: 'bottom'
29+
labelPosition: 'bottom',
30+
persisted_props: ['value'],
31+
persistence_type: 'local'
3032
};
3133

3234
Slider.propTypes = {
@@ -222,7 +224,31 @@ Slider.propTypes = {
222224
/**
223225
* Dash-assigned callback that gets fired when the value changes.
224226
*/
225-
setProps: PropTypes.func
227+
setProps: PropTypes.func,
228+
/**
229+
* Used to allow user interactions in this component to be persisted when
230+
* the component - or the page - is refreshed. If `persisted` is truthy and
231+
* hasn't changed from its previous value, a `value` that the user has
232+
* changed while using the app will keep that change, as long as
233+
* the new `value` also matches what was given originally.
234+
* Used in conjunction with `persistence_type`.
235+
*/
236+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
237+
238+
/**
239+
* Properties whose user interactions will persist after refreshing the
240+
* component or the page. Since only `value` is allowed this prop can
241+
* normally be ignored.
242+
*/
243+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['value'])),
244+
245+
/**
246+
* Where persisted user changes will be stored:
247+
* memory: only kept in memory, reset on page refresh.
248+
* local: window.localStorage, data is kept after the browser quit.
249+
* session: window.sessionStorage, data is cleared once the browser quit.
250+
*/
251+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
226252
};
227253

228254
export const defaultProps = Slider.defaultProps;

src/components/ToggleSwitch.react.js

+32-3
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,9 @@ ToggleSwitch.defaultProps = {
160160
value: false,
161161
vertical: false,
162162
theme: light,
163-
labelPosition: 'top'
163+
labelPosition: 'top',
164+
persisted_props: ['value'],
165+
persistence_type: 'local'
164166
};
165167

166168
ToggleSwitch.propTypes = {
@@ -259,7 +261,34 @@ ToggleSwitch.propTypes = {
259261
* Dash-assigned callback that gets fired when
260262
* switch is toggled.
261263
*/
262-
setProps: PropTypes.func
264+
setProps: PropTypes.func,
265+
266+
/**
267+
* Used to allow user interactions in this component to be persisted when
268+
* the component - or the page - is refreshed. If `persisted` is truthy and
269+
* hasn't changed from its previous value, a `value` that the user has
270+
* changed while using the app will keep that change, as long as
271+
* the new `value` also matches what was given originally.
272+
* Used in conjunction with `persistence_type`.
273+
*/
274+
persistence: PropTypes.oneOfType([PropTypes.bool, PropTypes.string, PropTypes.number]),
275+
276+
/**
277+
* Properties whose user interactions will persist after refreshing the
278+
* component or the page. Since only `value` is allowed this prop can
279+
* normally be ignored.
280+
*/
281+
persisted_props: PropTypes.arrayOf(PropTypes.oneOf(['value'])),
282+
283+
/**
284+
* Where persisted user changes will be stored:
285+
* memory: only kept in memory, reset on page refresh.
286+
* local: window.localStorage, data is kept after the browser quit.
287+
* session: window.sessionStorage, data is cleared once the browser quit.
288+
*/
289+
persistence_type: PropTypes.oneOf(['local', 'session', 'memory'])
263290
};
264291

265-
export default withTheme(ToggleSwitch);
292+
const ThemedToggleSwitch = withTheme(ToggleSwitch);
293+
ThemedToggleSwitch.defaultProps = ToggleSwitch.defaultProps;
294+
export default ThemedToggleSwitch;

0 commit comments

Comments
 (0)