Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F32400193
D5186.1765340296.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
3 KB
Referenced Files
None
Subscribers
None
D5186.1765340296.diff
View Options
diff --git a/web/components/stepper.css b/web/components/stepper.css
new file mode 100644
--- /dev/null
+++ b/web/components/stepper.css
@@ -0,0 +1,40 @@
+.stepperContainer {
+ display: flex;
+ flex-direction: column;
+ flex-shrink: 0;
+}
+
+.stepperItem {
+ overflow-y: auto;
+ height: 100%;
+}
+
+.stepperFooter {
+ display: flex;
+ justify-content: flex-end;
+ gap: 12px;
+}
+
+.button {
+ position: relative;
+}
+
+.buttonContainer {
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+}
+
+.hide {
+ visibility: hidden;
+ height: 0;
+}
+
+.errorMessage {
+ color: var(--error);
+ font-style: italic;
+
+ display: flex;
+ align-items: center;
+ justify-content: flex-start;
+}
diff --git a/web/components/stepper.react.js b/web/components/stepper.react.js
new file mode 100644
--- /dev/null
+++ b/web/components/stepper.react.js
@@ -0,0 +1,110 @@
+// @flow
+
+import * as React from 'react';
+
+import LoadingIndicator from '../loading-indicator.react';
+import Button from './button.react';
+import css from './stepper.css';
+
+export type ButtonProps = {
+ +content: React.Node,
+ +disabled?: boolean,
+ +loading?: boolean,
+ +onClick: () => void,
+};
+
+type ButtonType = 'prev' | 'next';
+
+type ActionButtonProps = {
+ +buttonProps: ButtonProps,
+ +type: ButtonType,
+};
+
+function ActionButton(props: ActionButtonProps) {
+ const { buttonProps, type } = props;
+ const { content, loading, disabled, onClick } = buttonProps;
+
+ const buttonContent = loading ? (
+ <>
+ <div className={css.hide}>{content}</div>
+ <LoadingIndicator status="loading" />
+ </>
+ ) : (
+ content
+ );
+
+ return (
+ <Button
+ className={css.button}
+ variant={type === 'prev' ? 'secondary' : 'primary'}
+ disabled={disabled || loading}
+ onClick={onClick}
+ >
+ <div className={css.buttonContainer}>{buttonContent}</div>
+ </Button>
+ );
+}
+
+type ItemProps = {
+ +content: React.Node,
+ +name: string,
+ +errorMessage?: string,
+ +prevProps?: ButtonProps,
+ +nextProps?: ButtonProps,
+};
+
+function StepperItem(props: ItemProps): React.Node {
+ const { content, errorMessage, prevProps, nextProps } = props;
+
+ const prevButton = React.useMemo(
+ () =>
+ prevProps ? <ActionButton buttonProps={prevProps} type="prev" /> : null,
+ [prevProps],
+ );
+
+ const nextButton = React.useMemo(
+ () =>
+ nextProps ? <ActionButton buttonProps={nextProps} type="next" /> : null,
+ [nextProps],
+ );
+
+ return (
+ <>
+ <div className={css.stepperItem}>{content}</div>
+ <div className={css.errorMessage}> {errorMessage} </div>
+ <div className={css.stepperFooter}>
+ {prevButton}
+ {nextButton}
+ </div>
+ </>
+ );
+}
+
+type ContainerProps = {
+ +activeStep: string,
+ +className?: string,
+ +children: React.ChildrenArray<React.Element<typeof StepperItem>>,
+};
+
+function StepperContainer(props: ContainerProps): React.Node {
+ const { children, activeStep, className = '' } = props;
+
+ const index = new Map(
+ React.Children.toArray(children).map((child, i) => [child.props.name, i]),
+ );
+
+ const activeComponent = children[index.get(activeStep) ?? 0];
+
+ return (
+ <div className={`${css.stepperContainer} ${className}`}>
+ {activeComponent}
+ </div>
+ );
+}
+
+const Stepper = {
+ Container: StepperContainer,
+ Item: StepperItem,
+};
+
+export default Stepper;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Dec 10, 4:18 AM (18 h, 38 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
5860828
Default Alt Text
D5186.1765340296.diff (3 KB)
Attached To
Mode
D5186: [web] Introduce `Stepper` - common multiple step component
Attached
Detach File
Event Timeline
Log In to Comment