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 ? ( + <> +