Stepper
Stepper
は、複数のステップのプロセスの進行状況を表示するコンポーネントです。
インポート
import {Stepper,Step,StepTitle,StepDescription,StepSeparator,StepStatus,useSteps,} from "@yamada-ui/react"
Stepper
: 子要素(Step
)を制御するラッパーコンポーネントです。Step
: 1つのステップを表示するコンポーネントです。StepTitle
: ステップのタイトルを表示するコンポーネントです。StepDescription
: ステップの説明を表示するコンポーネントです。StepSeparator
: ステップ間の区切りを表示するコンポーネントです。StepStatus
: ステップのインジケーターを表示するコンポーネントです。useSteps
: 各ステップの状態とアクティブなインデックスを管理するカスタムフックです。
使い方
各ステップの情報はsteps
に配列で定義し、useSteps
に初期値のindex
とsteps
の配列の個数を設定します。
Stepper
には、useSteps
から返されるアクティブなインデックスのactiveStep
と先ほど定義した配列のsteps
を渡します。
編集可能な例
const steps: Steps = [ { title: "孫悟空少年編", description: "レッドリボン軍" }, { title: "ピッコロ大魔王編", description: "ピッコロ大魔王" }, { title: "サイヤ人編", description: "ベジータ・ナッパ" }, ] const { activeStep, onStepNext, onStepPrev } = useSteps({ index: 1, count: steps.length, }) return ( <VStack> <Stepper index={activeStep} steps={steps} /> <HStack> <Button onClick={onStepPrev}>Prev</Button> <Button onClick={onStepNext}>Next</Button> </HStack> </VStack> )
サイズを変更する
編集可能な例
const steps: Steps = [ { title: "孫悟空少年編", description: "レッドリボン軍" }, { title: "ピッコロ大魔王編", description: "ピッコロ大魔王" }, { title: "サイヤ人編", description: "ベジータ・ナッパ" }, ] return ( <VStack> <Stepper size="sm" index={1} steps={steps} /> <Stepper size="md" index={1} steps={steps} /> <Stepper size="lg" index={1} steps={steps} /> </VStack> )
カラースキーマを変更する
編集可能な例
const steps: Steps = [ { title: "孫悟空少年編", description: "レッドリボン軍" }, { title: "ピッコロ大魔王編", description: "ピッコロ大魔王" }, { title: "サイヤ人編", description: "ベジータ・ナッパ" }, ] return ( <VStack> <Stepper colorScheme="secondary" index={1} steps={steps} /> <Stepper colorScheme="green" index={1} steps={steps} /> </VStack> )
方向を変更する
orientation
にhorizontal
またはvertical
を設定することで、ステッパーの方向を変更できます。
編集可能な例
const steps: Steps = [ { title: "孫悟空少年編", description: "レッドリボン軍" }, { title: "ピッコロ大魔王編", description: "ピッコロ大魔王" }, { title: "サイヤ人編", description: "ベジータ・ナッパ" }, ] const { activeStep, onStepNext, onStepPrev } = useSteps({ index: 1, count: steps.length, }) return ( <VStack> <Stepper index={activeStep} steps={steps} orientation="horizontal" /> <Stepper index={activeStep} steps={steps} orientation="vertical" h="sm" /> <HStack> <Button onClick={onStepPrev}>Prev</Button> <Button onClick={onStepNext}>Next</Button> </HStack> </VStack> )
ステップをカスタマイズする
編集可能な例
const steps: Steps = [ { title: "孫悟空少年編", description: "レッドリボン軍" }, { title: "ピッコロ大魔王編", description: "ピッコロ大魔王" }, { title: "サイヤ人編", description: "ベジータ・ナッパ" }, ] const { activeStep, onStepNext, onStepPrev } = useSteps({ index: 1, count: steps.length, }) return ( <VStack> <Stepper index={activeStep}> {steps.map(({ title, description }, index) => ( <Step key={index}> <StepStatus /> <Box flexShrink="0"> <StepTitle>{title}</StepTitle> <StepDescription>{description}</StepDescription> </Box> <StepSeparator /> </Step> ))} </Stepper> <HStack> <Button onClick={onStepPrev}>Prev</Button> <Button onClick={onStepNext}>Next</Button> </HStack> </VStack> )
インジケーターをカスタマイズする
各ステップのインジケーターをカスタマイズするには、statusProps
かStepStatus
コンポーネントに各状況に対する値を設定します。
complete
: 完了したステップで表示されるインジケーターです。active
: アクティブなステップで表示されるインジケーターです。incomplete
: 未完了のステップで表示されるインジケーターです。
編集可能な例
const steps: Steps = [ { title: "孫悟空少年編", description: "レッドリボン軍", statusProps: { complete: `😇`, incomplete: `😑`, active: `😎` }, }, { title: "ピッコロ大魔王編", description: "ピッコロ大魔王", statusProps: { complete: `😇`, incomplete: `😑`, active: `😎` }, }, { title: "サイヤ人編", description: "ベジータ・ナッパ", statusProps: { complete: `😇`, incomplete: `😑`, active: `😎` }, }, ] const { activeStep, onStepNext, onStepPrev } = useSteps({ index: 1, count: steps.length, }) return ( <VStack> <Stepper index={activeStep} steps={steps} /> <HStack> <Button onClick={onStepPrev}>Prev</Button> <Button onClick={onStepNext}>Next</Button> </HStack> </VStack> )
編集可能な例
const steps: Steps = [ { title: "孫悟空少年編", description: "レッドリボン軍", }, { title: "ピッコロ大魔王編", description: "ピッコロ大魔王", }, { title: "サイヤ人編", description: "ベジータ・ナッパ", }, ] const { activeStep, onStepNext, onStepPrev } = useSteps({ index: 1, count: steps.length, }) return ( <VStack> <Stepper index={activeStep}> {steps.map(({ title, description }, index) => ( <Step key={index}> <StepStatus complete={<Ghost />} /> <Box flexShrink="0"> <StepTitle>{title}</StepTitle> <StepDescription>{description}</StepDescription> </Box> <StepSeparator /> </Step> ))} </Stepper> <HStack> <Button onClick={onStepPrev}>Prev</Button> <Button onClick={onStepNext}>Next</Button> </HStack> </VStack> )
GitHubでこのページを編集する