@navikt/ds-react
Version:
React components from the Norwegian Labour and Welfare Administration.
61 lines • 3.3 kB
JavaScript
var __rest = (this && this.__rest) || function (s, e) {
var t = {};
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
t[p] = s[p];
if (s != null && typeof Object.getOwnPropertySymbols === "function")
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
t[p[i]] = s[p[i]];
}
return t;
};
import React, { forwardRef } from "react";
import { useRenameCSS } from "../theme/Theme.js";
import Step from "./Step.js";
import { StepperContextProvider } from "./context.js";
/**
* A component that displays a stepper with clickable steps.
*
* @see [📝 Documentation](https://aksel.nav.no/komponenter/core/stepper)
* @see 🏷️ {@link StepperProps}
*
* @example
* ```jsx
* <>
* <Heading size="medium" spacing level="2" id="stepper-heading">
* Søknadssteg
* </Heading>
* <Stepper
* aria-labelledby="stepper-heading"
* activeStep={activeStep}
* onStepChange={setActiveStep}
* >
* <Stepper.Step href="#">Start søknad</Stepper.Step>
* <Stepper.Step href="#">Saksopplysninger</Stepper.Step>
* <Stepper.Step href="#">Vedlegg</Stepper.Step>
* </Stepper>
* </>
* ```
*/
export const Stepper = forwardRef((_a, ref) => {
var { children, className, activeStep, orientation = "vertical", onStepChange = () => { }, interactive = true } = _a, rest = __rest(_a, ["children", "className", "activeStep", "orientation", "onStepChange", "interactive"]);
const { cn } = useRenameCSS();
activeStep = activeStep - 1;
return (React.createElement("ol", Object.assign({}, rest, { ref: ref, className: cn("navds-stepper", orientation === "horizontal" ? "navds-stepper--horizontal" : "", className), "data-orientation": orientation }), React.Children.map(children, (step, index) => {
var _a, _b, _c;
const stepProps = React.isValidElement(step) ? step.props : {};
const isInteractive = (_a = stepProps.interactive) !== null && _a !== void 0 ? _a : interactive;
return (React.createElement("li", { className: cn("navds-stepper__item", {
/* TODO: Remove these 3 classNames in darkmode update */
"navds-stepper__item--behind": activeStep > index,
"navds-stepper__item--completed": stepProps.completed,
"navds-stepper__item--non-interactive": !isInteractive,
}), "data-color": isInteractive ? undefined : "neutral", key: index + ((_c = (_b = children === null || children === void 0 ? void 0 : children.toString) === null || _b === void 0 ? void 0 : _b.call(children)) !== null && _c !== void 0 ? _c : "") },
React.createElement("span", { className: cn("navds-stepper__line navds-stepper__line--1") }),
React.createElement(StepperContextProvider, { interactive: interactive, activeStep: activeStep, lastIndex: React.Children.count(children), index: index, onStepChange: onStepChange, orientation: orientation }, step),
React.createElement("span", { className: cn("navds-stepper__line navds-stepper__line--2") })));
})));
});
Stepper.Step = Step;
export default Stepper;
//# sourceMappingURL=Stepper.js.map