@patternfly/react-core
Version:
This library provides a set of common React components for use with the PatternFly reference implementation.
46 lines • 2.17 kB
JavaScript
import { __rest } from "tslib";
import * as React from 'react';
import { css } from '@patternfly/react-styles';
import styles from '@patternfly/react-styles/css/components/SimpleList/simple-list';
import { SimpleListContext } from './SimpleList';
export class SimpleListItem extends React.Component {
constructor() {
super(...arguments);
this.ref = React.createRef();
}
render() {
const _a = this.props, { children, isCurrent, isActive, className, component: Component, componentClassName, componentProps, onClick, type, href,
// eslint-disable-next-line @typescript-eslint/no-unused-vars
itemId } = _a, props = __rest(_a, ["children", "isCurrent", "isActive", "className", "component", "componentClassName", "componentProps", "onClick", "type", "href", "itemId"]);
return (React.createElement(SimpleListContext.Consumer, null, ({ currentRef, updateCurrentRef, isControlled }) => {
const isButton = Component === 'button';
const isCurrentItem = this.ref && currentRef && isControlled ? currentRef.current === this.ref.current : isActive || isCurrent;
const additionalComponentProps = isButton
? {
type
}
: {
tabIndex: 0,
href
};
return (React.createElement("li", Object.assign({ className: css(className) }, props),
React.createElement(Component, Object.assign({ className: css(styles.simpleListItemLink, isCurrentItem && styles.modifiers.current, componentClassName), onClick: (evt) => {
onClick(evt);
updateCurrentRef(this.ref, this.props);
}, ref: this.ref }, componentProps, additionalComponentProps), children)));
}));
}
}
SimpleListItem.displayName = 'SimpleListItem';
SimpleListItem.defaultProps = {
children: null,
className: '',
isActive: false,
isCurrent: false,
component: 'button',
componentClassName: '',
type: 'button',
href: '',
onClick: () => { }
};
//# sourceMappingURL=SimpleListItem.js.map