@vnmfify/core
Version:
```shell npm i @vnmfify/core -S ```
65 lines (52 loc) • 3.76 kB
JavaScript
var _excluded = ["className", "animated", "striped", "inactive", "label", "color", "percent"];
function ownKeys(object, enumerableOnly) { var keys = Object.keys(object); if (Object.getOwnPropertySymbols) { var symbols = Object.getOwnPropertySymbols(object); if (enumerableOnly) { symbols = symbols.filter(function (sym) { return Object.getOwnPropertyDescriptor(object, sym).enumerable; }); } keys.push.apply(keys, symbols); } return keys; }
function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? arguments[i] : {}; if (i % 2) { ownKeys(Object(source), true).forEach(function (key) { _defineProperty(target, key, source[key]); }); } else if (Object.getOwnPropertyDescriptors) { Object.defineProperties(target, Object.getOwnPropertyDescriptors(source)); } else { ownKeys(Object(source)).forEach(function (key) { Object.defineProperty(target, key, Object.getOwnPropertyDescriptor(source, key)); }); } } return target; }
function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import { View } from "@vnxjs/components";
import classNames from "classnames";
import * as React from "react";
import { useMemo } from "react";
import { prefixClassname } from "../styles";
function Progress(props) {
var {
className,
animated,
striped,
inactive,
label,
color = "primary",
percent: percentProp = 0
} = props,
restProps = _objectWithoutProperties(props, _excluded);
var percent = Math.min(Math.max(0, percentProp), 100);
function renderLabel() {
if (label === undefined) {
return "".concat(percent, "%");
} else if (!label) {
return undefined;
}
return label;
}
var barStyle = useMemo(() => ({
width: "".concat(percent, "%")
}), [percent]);
return /*#__PURE__*/React.createElement(View, _objectSpread({
className: classNames(prefixClassname("progress"), {
[prefixClassname("progress--inactive")]: inactive,
[prefixClassname("progress--striped")]: !inactive && striped,
[prefixClassname("progress--animated")]: !inactive && striped && animated,
[prefixClassname("progress--primary")]: !inactive && color === "primary",
[prefixClassname("progress--info")]: !inactive && color === "info",
[prefixClassname("progress--success")]: !inactive && color === "success",
[prefixClassname("progress--warning")]: !inactive && color === "warning",
[prefixClassname("progress--danger")]: !inactive && color === "danger"
}, className)
}, restProps), /*#__PURE__*/React.createElement(View, {
className: classNames(prefixClassname("progress__portion")),
style: barStyle
}, renderLabel()));
}
export default Progress;
//# sourceMappingURL=progress.js.map