forked from reactstrap/reactstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathListGroupItem.js
More file actions
56 lines (49 loc) · 1.19 KB
/
Copy pathListGroupItem.js
File metadata and controls
56 lines (49 loc) · 1.19 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
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
import { mapToCssModules } from './utils';
const propTypes = {
tag: PropTypes.oneOfType([PropTypes.func, PropTypes.string]),
active: PropTypes.bool,
disabled: PropTypes.bool,
color: PropTypes.string,
action: PropTypes.bool,
className: PropTypes.any,
cssModule: PropTypes.object,
};
const defaultProps = {
tag: 'li'
};
const handleDisabledOnClick = (e) => {
e.preventDefault();
};
const ListGroupItem = (props) => {
const {
className,
cssModule,
tag: Tag,
active,
disabled,
action,
color,
...attributes
} = props;
const classes = mapToCssModules(classNames(
className,
active ? 'active' : false,
disabled ? 'disabled' : false,
action ? 'list-group-item-action' : false,
color ? `list-group-item-${color}` : false,
'list-group-item'
), cssModule);
// Prevent click event when disabled.
if (disabled) {
attributes.onClick = handleDisabledOnClick;
}
return (
<Tag {...attributes} className={classes} />
);
};
ListGroupItem.propTypes = propTypes;
ListGroupItem.defaultProps = defaultProps;
export default ListGroupItem;