forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButtonToggle.js
More file actions
78 lines (67 loc) · 1.49 KB
/
ButtonToggle.js
File metadata and controls
78 lines (67 loc) · 1.49 KB
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
import React, { useCallback, useState } from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import Button from './Button';
import { mapToCssModules } from './utils';
const propTypes = {
onClick: PropTypes.func,
onBlur: PropTypes.func,
onFocus: PropTypes.func,
defaultValue: PropTypes.bool,
className: PropTypes.string,
cssModule: PropTypes.object,
};
const defaultProps = {
defaultValue: false,
};
function ButtonToggle(props) {
const [toggled, setToggled] = useState(props.defaultValue);
const [focus, setFocus] = useState(false);
const onBlur = useCallback(
(e) => {
if (props.onBlur) {
props.onBlur(e);
}
setFocus(false);
},
[props.onBlur],
);
const onFocus = useCallback(
(e) => {
if (props.onFocus) {
props.onFocus(e);
}
setFocus(true);
},
[props.onFocus],
);
const onClick = useCallback(
(e) => {
if (props.onClick) {
props.onClick(e);
}
setToggled(!toggled);
},
[props.onClick],
);
const { className, ...attributes } = props;
const classes = mapToCssModules(
classNames(className, {
focus: focus,
}),
props.cssModule,
);
return (
<Button
active={toggled}
onBlur={onBlur}
onFocus={onFocus}
onClick={onClick}
className={classes}
{...attributes}
/>
);
}
ButtonToggle.propTypes = propTypes;
ButtonToggle.defaultProps = defaultProps;
export default ButtonToggle;