@dnb/eufemia
Version:
DNB Eufemia Design System UI Library
95 lines • 3.43 kB
JavaScript
import _extends from "@babel/runtime/helpers/esm/extends";
import _objectWithoutProperties from "@babel/runtime/helpers/esm/objectWithoutProperties";
import _defineProperty from "@babel/runtime/helpers/esm/defineProperty";
var _Fragment;
const _excluded = ["id", "children", "selected_key", "content_style", "animate", "content_spacing"];
import React from 'react';
import PropTypes from 'prop-types';
import classnames from 'classnames';
import { validateDOMAttributes, isTrue, combineLabelledBy } from '../../shared/component-helper';
import { createSpacingClasses } from '../space/SpacingHelper';
import Section from '../section/Section';
import EventEmitter from '../../shared/helpers/EventEmitter';
import HeightAnimation from '../height-animation/HeightAnimation';
export default class ContentWrapper extends React.PureComponent {
constructor(props) {
super(props);
_defineProperty(this, "state", {
key: null
});
if (props.id) {
this._eventEmitter = EventEmitter.createInstance(props.id);
this.state = this._eventEmitter.get();
}
}
componentDidMount() {
if (this.props.id && this._eventEmitter) {
this._eventEmitter.listen(params => {
if (this._eventEmitter && params.key !== this.state.key) {
this.setState(params);
}
});
}
}
componentWillUnmount() {
if (this._eventEmitter) {
this._eventEmitter.remove();
this._eventEmitter = null;
}
}
render() {
const _this$props = this.props,
{
id,
children,
selected_key: key,
content_style,
animate,
content_spacing
} = _this$props,
rest = _objectWithoutProperties(_this$props, _excluded);
if (!children) {
return _Fragment || (_Fragment = React.createElement(React.Fragment, null));
}
const params = rest;
if (key) {
params['aria-labelledby'] = combineLabelledBy(params, `${id}-tab-${key}`);
}
validateDOMAttributes(this.props, params);
let content = children;
if (typeof children === 'function') {
content = children(this.state);
}
return React.createElement(HeightAnimation, _extends({
role: "tabpanel",
tabIndex: "-1",
id: `${id}-content`,
element: content_style ? React.forwardRef((props, ref) => {
return React.createElement(Section, _extends({
spacing: content_style ? false : undefined,
style_type: content_style ? content_style : undefined,
innerRef: ref
}, props));
}) : 'div',
className: classnames("dnb-tabs__content dnb-no-focus", createSpacingClasses(rest), content_spacing && `dnb-section--spacing-${isTrue(content_spacing) ? 'large' : content_spacing}`),
duration: 600,
animate: animate === true
}, params), content);
}
}
_defineProperty(ContentWrapper, "defaultProps", {
selected_key: null,
content_style: null,
animate: null,
content_spacing: true,
children: null
});
process.env.NODE_ENV !== "production" ? ContentWrapper.propTypes = {
id: PropTypes.string.isRequired,
selected_key: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
content_style: PropTypes.string,
animate: PropTypes.bool,
content_spacing: PropTypes.oneOfType([PropTypes.string, PropTypes.bool]),
children: PropTypes.oneOfType([PropTypes.node, PropTypes.func])
} : void 0;
//# sourceMappingURL=TabsContentWrapper.js.map