primereact
Version:
PrimeReact is an open source UI library for React featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime
65 lines (59 loc) • 1.68 kB
JavaScript
import * as React from 'react';
import { ObjectUtils, classNames } from 'primereact/utils';
function _extends() {
_extends = Object.assign ? Object.assign.bind() : function (target) {
for (var i = 1; i < arguments.length; i++) {
var source = arguments[i];
for (var key in source) {
if (Object.prototype.hasOwnProperty.call(source, key)) {
target[key] = source[key];
}
}
}
return target;
};
return _extends.apply(this, arguments);
}
var Skeleton = /*#__PURE__*/React.memo( /*#__PURE__*/React.forwardRef(function (props, ref) {
var elementRef = React.useRef(null);
var otherProps = ObjectUtils.findDiffKeys(props, Skeleton.defaultProps);
var style = props.size ? {
width: props.size,
height: props.size,
borderRadius: props.borderRadius
} : {
width: props.width,
height: props.height,
borderRadius: props.borderRadius
};
var className = classNames('p-skeleton p-component', {
'p-skeleton-circle': props.shape === 'circle',
'p-skeleton-none': props.animation === 'none'
}, props.className);
React.useImperativeHandle(ref, function () {
return {
props: props,
getElement: function getElement() {
return elementRef.current;
}
};
});
return /*#__PURE__*/React.createElement("div", _extends({
ref: elementRef,
style: style,
className: className
}, otherProps));
}));
Skeleton.displayName = 'Skeleton';
Skeleton.defaultProps = {
__TYPE: 'Skeleton',
shape: 'rectangle',
size: null,
width: '100%',
height: '1rem',
borderRadius: null,
animation: 'wave',
style: null,
className: null
};
export { Skeleton };