You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
155 lines
4.7 KiB
155 lines
4.7 KiB
"use strict";
|
|
|
|
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
|
|
|
exports.__esModule = true;
|
|
exports.default = void 0;
|
|
|
|
var _classnames = _interopRequireDefault(require("classnames"));
|
|
|
|
var React = _interopRequireWildcard(require("react"));
|
|
|
|
var _ThemeProvider = require("./ThemeProvider");
|
|
|
|
var _ElementChildren = require("./ElementChildren");
|
|
|
|
var _jsxRuntime = require("react/jsx-runtime");
|
|
|
|
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function (nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
|
|
|
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
|
|
|
const ROUND_PRECISION = 1000;
|
|
/**
|
|
* Validate that children, if any, are instances of `<ProgressBar>`.
|
|
*/
|
|
|
|
function onlyProgressBar(props, propName, componentName) {
|
|
const children = props[propName];
|
|
|
|
if (!children) {
|
|
return null;
|
|
}
|
|
|
|
let error = null;
|
|
React.Children.forEach(children, child => {
|
|
if (error) {
|
|
return;
|
|
}
|
|
/**
|
|
* Compare types in a way that works with libraries that patch and proxy
|
|
* components like react-hot-loader.
|
|
*
|
|
* see https://github.com/gaearon/react-hot-loader#checking-element-types
|
|
*/
|
|
// eslint-disable-next-line @typescript-eslint/no-use-before-define
|
|
|
|
|
|
const element = /*#__PURE__*/(0, _jsxRuntime.jsx)(ProgressBar, {});
|
|
if (child.type === element.type) return;
|
|
const childType = child.type;
|
|
const childIdentifier = /*#__PURE__*/React.isValidElement(child) ? childType.displayName || childType.name || childType : child;
|
|
error = new Error(`Children of ${componentName} can contain only ProgressBar ` + `components. Found ${childIdentifier}.`);
|
|
});
|
|
return error;
|
|
}
|
|
|
|
const defaultProps = {
|
|
min: 0,
|
|
max: 100,
|
|
animated: false,
|
|
isChild: false,
|
|
visuallyHidden: false,
|
|
striped: false
|
|
};
|
|
|
|
function getPercentage(now, min, max) {
|
|
const percentage = (now - min) / (max - min) * 100;
|
|
return Math.round(percentage * ROUND_PRECISION) / ROUND_PRECISION;
|
|
}
|
|
|
|
function renderProgressBar({
|
|
min,
|
|
now,
|
|
max,
|
|
label,
|
|
visuallyHidden,
|
|
striped,
|
|
animated,
|
|
className,
|
|
style,
|
|
variant,
|
|
bsPrefix,
|
|
...props
|
|
}, ref) {
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
ref: ref,
|
|
...props,
|
|
role: "progressbar",
|
|
className: (0, _classnames.default)(className, `${bsPrefix}-bar`, {
|
|
[`bg-${variant}`]: variant,
|
|
[`${bsPrefix}-bar-animated`]: animated,
|
|
[`${bsPrefix}-bar-striped`]: animated || striped
|
|
}),
|
|
style: {
|
|
width: `${getPercentage(now, min, max)}%`,
|
|
...style
|
|
},
|
|
"aria-valuenow": now,
|
|
"aria-valuemin": min,
|
|
"aria-valuemax": max,
|
|
children: visuallyHidden ? /*#__PURE__*/(0, _jsxRuntime.jsx)("span", {
|
|
className: "visually-hidden",
|
|
children: label
|
|
}) : label
|
|
});
|
|
}
|
|
|
|
const ProgressBar = /*#__PURE__*/React.forwardRef(({
|
|
isChild,
|
|
...props
|
|
}, ref) => {
|
|
props.bsPrefix = (0, _ThemeProvider.useBootstrapPrefix)(props.bsPrefix, 'progress');
|
|
|
|
if (isChild) {
|
|
return renderProgressBar(props, ref);
|
|
}
|
|
|
|
const {
|
|
min,
|
|
now,
|
|
max,
|
|
label,
|
|
visuallyHidden,
|
|
striped,
|
|
animated,
|
|
bsPrefix,
|
|
variant,
|
|
className,
|
|
children,
|
|
...wrapperProps
|
|
} = props;
|
|
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
|
|
ref: ref,
|
|
...wrapperProps,
|
|
className: (0, _classnames.default)(className, bsPrefix),
|
|
children: children ? (0, _ElementChildren.map)(children, child => /*#__PURE__*/(0, React.cloneElement)(child, {
|
|
isChild: true
|
|
})) : renderProgressBar({
|
|
min,
|
|
now,
|
|
max,
|
|
label,
|
|
visuallyHidden,
|
|
striped,
|
|
animated,
|
|
bsPrefix,
|
|
variant
|
|
}, ref)
|
|
});
|
|
});
|
|
ProgressBar.displayName = 'ProgressBar';
|
|
ProgressBar.defaultProps = defaultProps;
|
|
var _default = ProgressBar;
|
|
exports.default = _default;
|
|
module.exports = exports.default; |