芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/reactstrap/src/ListGroupItem.js
import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import { mapToCssModules, tagPropType } from './utils'; const propTypes = { tag: tagPropType, 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 (
); }; ListGroupItem.propTypes = propTypes; ListGroupItem.defaultProps = defaultProps; export default ListGroupItem;