@shopify/polaris
Version:
Shopify’s admin product component library
42 lines (38 loc) • 1.88 kB
JavaScript
var React = require('react');
var css = require('../../utilities/css.js');
var useIsAfterInitialMount = require('../../utilities/use-is-after-initial-mount.js');
var Spinner_module = require('./Spinner.css.js');
var Text = require('../Text/Text.js');
function Spinner({
size = 'large',
accessibilityLabel,
hasFocusableParent
}) {
const isAfterInitialMount = useIsAfterInitialMount.useIsAfterInitialMount();
const className = css.classNames(Spinner_module.default.Spinner, size && Spinner_module.default[css.variationName('size', size)]);
const spinnerSVGMarkup = size === 'large' ? /*#__PURE__*/React.createElement("svg", {
viewBox: "0 0 44 44",
xmlns: "http://www.w3.org/2000/svg"
}, /*#__PURE__*/React.createElement("path", {
d: "M15.542 1.487A21.507 21.507 0 00.5 22c0 11.874 9.626 21.5 21.5 21.5 9.847 0 18.364-6.675 20.809-16.072a1.5 1.5 0 00-2.904-.756C37.803 34.755 30.473 40.5 22 40.5 11.783 40.5 3.5 32.217 3.5 22c0-8.137 5.3-15.247 12.942-17.65a1.5 1.5 0 10-.9-2.863z"
})) : /*#__PURE__*/React.createElement("svg", {
viewBox: "0 0 20 20",
xmlns: "http://www.w3.org/2000/svg"
}, /*#__PURE__*/React.createElement("path", {
d: "M7.229 1.173a9.25 9.25 0 1011.655 11.412 1.25 1.25 0 10-2.4-.698 6.75 6.75 0 11-8.506-8.329 1.25 1.25 0 10-.75-2.385z"
}));
const spanAttributes = {
...(!hasFocusableParent && {
role: 'status'
})
};
const accessibilityLabelMarkup = (isAfterInitialMount || !hasFocusableParent) && /*#__PURE__*/React.createElement(Text.Text, {
as: "span",
visuallyHidden: true
}, accessibilityLabel);
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("span", {
className: className
}, spinnerSVGMarkup), /*#__PURE__*/React.createElement("span", spanAttributes, accessibilityLabelMarkup));
}
exports.Spinner = Spinner;
;