Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: stepper: adds show active step index prop #505

Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions src/components/Stepper/Stepper.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,12 @@ export const Stepper: FC<StepperProps> = React.forwardRef(
scrollLeftAriaLabelText: defaultScrollLeftAriaLabelText,
scrollRightAriaLabelText: defaultScrollRightAriaLabelText,
scrollUpAriaLabelText: defaultScrollUpAriaLabelText,
showActiveStepIndex,
size = StepperSize.Medium,
theme,
status,
steps,
style,
theme,
variant = StepperVariant.Default,
width,
'data-test-id': dataTestId,
Expand Down Expand Up @@ -285,15 +286,20 @@ export const Stepper: FC<StepperProps> = React.forwardRef(
(styles as any)[`${theme}`],
(styles as any)[`${status}`],
])}
iconProps={{
path: getIcon(icon, active, complete),
classNames: styles.checkIcon,
}}
iconProps={
active && showActiveStepIndex
? null
: {
path: getIcon(icon, active, complete),
classNames: styles.checkIcon,
}
}
onClick={(event: React.MouseEvent<HTMLButtonElement, MouseEvent>) =>
handleOnClick(event, index)
}
shape={ButtonShape.Round}
size={stepSizeToButtonSizeMap.get(size)}
text={active && showActiveStepIndex ? `${index + 1}` : null}
/>
);

Expand Down
13 changes: 9 additions & 4 deletions src/components/Stepper/Stepper.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,11 @@ export interface StepperProps
* @default 'Scroll up'
*/
scrollUpAriaLabelText?: string;
/**
* Show active step index.
* Use when step is an icon, but an index is desired for the active step.
*/
showActiveStepIndex?: boolean;
/**
* The Stepper size.
* @default StepperSize.Medium
Expand All @@ -213,14 +218,14 @@ export interface StepperProps
* The validation status.
*/
status?: StepperValidationStatus;
/**
* Theme of the Stepper.
*/
theme?: StepperThemeName;
/**
* The Stepper Steps.
*/
steps?: Step[];
/**
* Theme of the Stepper.
*/
theme?: StepperThemeName;
/**
* The Stepper variant.
* options: Default, Timeline
Expand Down
125 changes: 125 additions & 0 deletions src/components/Stepper/Timeline.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React, { FC } from 'react';
import { Stories } from '@storybook/addon-docs';
import { ComponentMeta, ComponentStory } from '@storybook/react';
import { useArgs } from '@storybook/client-api';
import {
Stepper,
StepperLineStyle,
Expand Down Expand Up @@ -167,21 +168,89 @@ const Default_Story: ComponentStory<typeof Stepper> = (args) => {
);
};

const Show_Small_Active_Index_Story: ComponentStory<typeof Stepper> = (
args
) => {
const [_, updateArgs] = useArgs();

const handle = (index: number = 3) => {
updateArgs({
...args,
activeStepIndex: index,
index: index,
steps: [1, 2, 3, 4, 5].map((i: number) => ({
index: i,
content: `Timeline label ${i}`,
complete: i > 2 ? false : true,
nodeAriaLabelText: i === 5 ? 'Finish' : null,
nodeIcon: i === 5 ? IconName.mdiFlagCheckered : null,
size: i === index + 1 ? StepSize.Large : StepSize.Small,
})),
});
};

return (
<Row>
<Col span="12">
<Stepper {...args} onChange={(step: number) => handle(step)} />
</Col>
</Row>
);
};

const Show_Medium_Active_Index_Story: ComponentStory<typeof Stepper> = (
args
) => {
const [_, updateArgs] = useArgs();

const handle = (index: number = 3) => {
updateArgs({
...args,
activeStepIndex: index,
index: index,
steps: [1, 2, 3, 4, 5].map((i: number) => ({
index: i,
content: <TimelineItem index={i} />,
complete: i > 2 ? false : true,
nodeAriaLabelText: i === 5 ? 'Finish' : null,
nodeIcon: i === 5 ? IconName.mdiFlagCheckered : null,
size: i === index + 1 ? StepSize.Large : StepSize.Small,
})),
});
};

return (
<Row>
<Col span="12">
<Stepper {...args} onChange={(step: number) => handle(step)} />
</Col>
</Row>
);
};

export const Default_Horizontal_Small = Default_Story.bind({});
export const Default_Horizontal_Small_Required = Default_Story.bind({});
export const Default_Horizontal_Small_Read_Only = Default_Story.bind({});
export const Default_Horizontal_Small_Show_Active_Index =
Show_Small_Active_Index_Story.bind({});
export const Default_Horizontal_Small_Custom = Default_Story.bind({});
export const Default_Horizontal_Medium = Default_Story.bind({});
export const Default_Horizontal_Medium_Required = Default_Story.bind({});
export const Default_Horizontal_Medium_Read_Only = Default_Story.bind({});
export const Default_Horizontal_Medium_Show_Active_Index =
Show_Medium_Active_Index_Story.bind({});
export const Default_Horizontal_Medium_Custom = Default_Story.bind({});
export const Default_Vertical_Small = Default_Story.bind({});
export const Default_Vertical_Small_Required = Default_Story.bind({});
export const Default_Vertical_Small_Read_Only = Default_Story.bind({});
export const Default_Vertical_Small_Show_Active_Index =
Show_Small_Active_Index_Story.bind({});
export const Default_Vertical_Small_Custom = Default_Story.bind({});
export const Default_Vertical_Medium = Default_Story.bind({});
export const Default_Vertical_Medium_Required = Default_Story.bind({});
export const Default_Vertical_Medium_Read_Only = Default_Story.bind({});
export const Default_Vertical_Medium_Show_Active_Index =
Show_Medium_Active_Index_Story.bind({});
export const Default_Vertical_Medium_Scroll = Default_Story.bind({});
export const Default_Vertical_Medium_Custom = Default_Story.bind({});

Expand Down Expand Up @@ -245,6 +314,20 @@ Default_Horizontal_Small_Read_Only.args = {
})),
};

Default_Horizontal_Small_Show_Active_Index.args = {
...timelineArgs,
showActiveStepIndex: true,
size: StepperSize.Small,
steps: [1, 2, 3, 4, 5].map((i: number) => ({
index: i,
content: `Timeline label ${i}`,
complete: i > 2 ? false : true,
nodeAriaLabelText: i === 5 ? 'Finish' : null,
nodeIcon: i === 5 ? IconName.mdiFlagCheckered : null,
size: i === 3 ? StepSize.Large : StepSize.Small,
})),
};

Default_Horizontal_Small_Custom.args = {
...timelineArgs,
classNames: 'custom-stepper-line',
Expand Down Expand Up @@ -282,6 +365,19 @@ Default_Horizontal_Medium_Read_Only.args = {
readonly: true,
};

Default_Horizontal_Medium_Show_Active_Index.args = {
...timelineArgs,
showActiveStepIndex: true,
steps: [1, 2, 3, 4, 5].map((i: number) => ({
index: i,
content: <TimelineItem index={i} />,
complete: i > 2 ? false : true,
nodeAriaLabelText: i === 5 ? 'Finish' : null,
nodeIcon: i === 5 ? IconName.mdiFlagCheckered : null,
size: i === 3 ? StepSize.Large : StepSize.Small,
})),
};

Default_Horizontal_Medium_Custom.args = {
...timelineArgs,
classNames: 'custom-stepper-line',
Expand Down Expand Up @@ -345,6 +441,21 @@ Default_Vertical_Small_Read_Only.args = {
})),
};

Default_Vertical_Small_Show_Active_Index.args = {
...timelineArgs,
layout: 'vertical',
showActiveStepIndex: true,
size: StepperSize.Small,
steps: [1, 2, 3, 4, 5].map((i: number) => ({
index: i,
content: `Timeline label ${i}`,
complete: i > 2 ? false : true,
nodeAriaLabelText: i === 5 ? 'Finish' : null,
nodeIcon: i === 5 ? IconName.mdiFlagCheckered : null,
size: i === 3 ? StepSize.Large : StepSize.Small,
})),
};

Default_Vertical_Small_Custom.args = {
...timelineArgs,
classNames: 'custom-stepper-line',
Expand Down Expand Up @@ -386,6 +497,20 @@ Default_Vertical_Medium_Read_Only.args = {
readonly: true,
};

Default_Vertical_Medium_Show_Active_Index.args = {
...timelineArgs,
layout: 'vertical',
showActiveStepIndex: true,
steps: [1, 2, 3, 4, 5].map((i: number) => ({
index: i,
content: <TimelineItem index={i} />,
complete: i > 2 ? false : true,
nodeAriaLabelText: i === 5 ? 'Finish' : null,
nodeIcon: i === 5 ? IconName.mdiFlagCheckered : null,
size: i === 3 ? StepSize.Large : StepSize.Small,
})),
};

Default_Vertical_Medium_Scroll.args = {
...timelineArgs,
height: 420,
Expand Down