Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F3350257
D5186.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
3 KB
Referenced Files
None
Subscribers
None
D5186.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,43 @@
+.stepperContainer {
+ display: flex;
+ flex-direction: column;
+ flex-shrink: 0;
+}
+
+.stepperItem {
+ overflow-y: auto;
+ height: 100%;
+}
+
+.stepperFooter {
+ display: flex;
+ justify-content: flex-end;
+ gap: 12px;
+ margin-top: 5px;
+}
+
+.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;
+
+ margin-top: 5px;
+}
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,108 @@
+// @flow
+
+import classnames from 'classnames';
+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 => [child.props.name, child]),
+ );
+
+ const activeComponent = index.get(activeStep);
+ const styles = classnames(css.stepperContainer, className);
+
+ return <div className={styles}>{activeComponent}</div>;
+}
+
+const Stepper = {
+ Container: StepperContainer,
+ Item: StepperItem,
+};
+
+export default Stepper;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Nov 23, 9:35 PM (20 h, 53 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2572510
Default Alt Text
D5186.diff (3 KB)
Attached To
Mode
D5186: [web] Introduce `Stepper` - common multiple step component
Attached
Detach File
Event Timeline
Log In to Comment