Steps

Molecule

Source Code HTML / SASS

Vous trouverez ici les démos et le code source statiques du composant.

On expose les différentes déclinaisons du composant au format HTML et SASS.

Le composant React a été conçu sur la base de cette structure en y ajoutant les interactions que vous trouverez dans notre storybook.react storybook

Classic Steps

  1. 1
    Previous step
  2. 2
    Previous step
  3. 3
    Current step
  4. 4
    Next step
  5. Confirmation
Copied
<div class="af-steps">
    <ol class="af-steps-list">
        <li class="af-steps-list-step past" title="Etape 1">
            <div class="af-steps-list-stepLabel">
                <div class="af-steps-list-stepNumber">1</div>
                <div class="af-steps-list-stepTitle">Previous step</div>
            </div>
        </li>
        <li class="af-steps-list-step past" title="Etape 2">
            <div class="af-steps-list-stepLabel">
                <div class="af-steps-list-stepNumber">2</div>
                <div class="af-steps-list-stepTitle">Previous step</div>
            </div>
        </li>
        <li class="af-steps-list-step on" title="Etape 3">
            <div class="af-steps-list-stepLabel">
                <div class="af-steps-list-stepNumber">3</div>
                <div class="af-steps-list-stepTitle">Current step</div>
            </div>
        </li>
        <li class="af-steps-list-step" title="Etape 3">
            <div class="af-steps-list-stepLabel">
                <div class="af-steps-list-stepNumber">4</div>
                <div class="af-steps-list-stepTitle">Next step</div>
            </div>
        </li>
        <li class="af-steps-list-step" title="Etape finale">
            <div class="af-steps-list-stepLabel">
                <div class="af-steps-list-stepNumber">
                    <svg class="glyphicon glyphicon-ok" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 105 100">
                        <path d="M0.854 57.792l34.917 35 68.167-68.333-17.667-17.667-50.583 50.583-17.167-17.25z"></path>
                    </svg>
                </div>
                <div class="af-steps-list-stepTitle">Confirmation</div>
            </div>
        </li>
    </ol>
</div>
Copied
@import '@axa-fr/react-toolkit-core/src/common/scss/core.scss';

// Wizard Steps
// --------------------------------------------------
$steps-bg: $gray-lighter;
$steps-bg-active: $white;
$font-size-step: $font-size-base;
$font-size-step-number: ceil(($font-size-step * 1.6));
$steps-color: $gray-dark;
$steps-color-active: mix($black, $brand-primary, 20%);

.af-steps {
    margin-bottom: 2rem;

    .af-steps-list {
        display: table;
        width: 100%;
        table-layout: fixed;
        border-radius: 4px;
        overflow: hidden;
        padding: 0;
        margin: 0;
        border: 2px solid $steps-bg;

        &-step {
            display: table-cell;
            font-size: $font-size-step;
            background: $steps-bg;
            color: $steps-color;
            padding-left: 1.875em;

            &.on {
                color: $steps-color-active;
                background: $steps-bg-active;

                .af-steps-list-stepNumber,
                .af-steps-list-stepTitle {
                    opacity: 1;
                }

                .af-steps-list-stepLabel::after {
                    border-color: transparent transparent transparent $steps-bg-active;
                }
            }

            &.past {
                color: $steps-color-active;

                .af-steps-list-stepNumber,
                .af-steps-list-stepTitle {
                    opacity: 0.5;
                }

                &:hover {
                    cursor: pointer;

                    .af-steps-list-stepNumber,
                    .af-steps-list-stepTitle {
                        opacity: 1;
                    }
                }

                .af-steps-list-stepLabel:first-child::after {
                    border-color: transparent transparent transparent $steps-bg;
                }
            }

            &.disabled {
                color: $gray-lightest;
                background: $gray-lighter;

                .af-steps-list-stepLabel::after {
                    border-color: transparent transparent transparent $steps-bg;
                }
            }

            &Label {
                position: relative;
                width: 100%;
                vertical-align: middle;
                display: flex;
                justify-content: center;
                align-items: center;

                &::before {
                    content: '';
                    position: absolute;
                    width: 0;
                    height: 0;
                    right: -23px;
                    top: 50%;
                    transform: translate(0, -50%);
                    border-style: solid;
                    border-width: 50px 0 50px 36px;
                    border-color: transparent transparent transparent $white;
                }

                &::after {
                    content: '';
                    position: absolute;
                    width: 0;
                    height: 0;
                    right: -20px;
                    top: 50%;
                    transform: translate(0, -50%);
                    border-style: solid;
                    border-width: 50px 0 50px 36px;
                    border-color: transparent transparent transparent $steps-bg;
                }
            }

            &Number,
            &Title {
                opacity: 0.3;
            }

            &Number {
                margin-right: 0.3125rem;
                font-size: $font-size-step-number;
                font-weight: 600;

                .glyphicon {
                    font-size: 1.5rem;
                    width: 17px;
                }
            }

            &Title {
                font-weight: 600;
                padding-top: 0.5rem;
            }

            &:last-child {
                .af-steps-list-stepLabel {

                    &::after,
                    &::before {
                        display: none;
                    }
                }

                .af-steps-list-stepNumber {
                    font-size: ceil(($font-size-step * 1.1));
                }
            }
        }
    }

    @include media-breakpoint-down(xs) {
        &-list {
            table-layout: auto;

            &-step {
                min-width: 3.125rem;

                &Title {
                    display: none;
                }

                &Number {
                    left: 2rem;
                    z-index: 2;

                    .glyphicon {
                        font-size: ceil(($font-size-step * 1.2));
                        width: 17px;
                    }
                }

                &.on {
                    .af-steps-list-stepTitle {
                        display: block;
                    }

                    .af-steps-list-stepNumber {
                        .glyphicon {
                            font-size: ceil(($font-size-step * 1.1));
                            width: 17px;
                        }
                    }
                }
            }
        }
    }
}

React interactions

Vous trouverez ici les démos Storybook pour visualiser les interactions du composant.

Vous avez la possibilité de jouer avec les propriétés du composant React sur notre storybook.react storybook

Generales Guidelines

Les guidelines permettent de décrire l'ensemble des règles et des éléments graaphiques pour la conception des interfaces.

Elle sont destinées à être respectées par tous les intervenants d'un projet (UX, Développeurs, PO, etc ...), il s'agit donc d'un référentiel commun.

Style

Un style a été défini pour chaque composant, il possible d'importer uniquement le style du composant sur le projet fin optimiser le bundle.

On liste également les codes couleur utilisés, cliquez-ici pour voir l'ensemble des couleurs du Design System

Imports SASS

@import '@axa-fr/react-toolkit-core/src/common/scss/core.scss';
@import '@axa-fr/react-toolkit-form-steps/dist/step-form.scss';

Typography

Component text should be set in sentence case, with only the first word in a phrase and any proper nouns capitalized.

Class Font-size (px/rem) Font-weight Font-family
.af-steps 16 / 1 400 Source Sans Pro Regular

Colors

BLEU AXA#00008f$color-axa
BLEU Action#3032c1$color-azur
BLEU Action focus#aaabf9$color-azur-focused
Mercury#e5e5e5$color-mercury
Silver#cccccc $color-silver
Button Disabled#c9c9c9 $color-btn-disabled
Button success #1cc578 $color-btn-success
Button success dark #0d844e $color-btn-success-dark
Button success focuced #bdffe1 $color-btn-success-focused
Button danger #f02849 $color-btn-danger
Button danger dark #8f182c $color-btn-danger-dark
Button danger focuced #ffa0af $color-btn-danger-focused