File

src/components/sq-steps/sq-steps.component.ts

Description

Represents a component for displaying a sequence of steps.

Look the link about the component in original framework and the appearance

See https://css.squidit.com.br/components/steps

Example :
<sq-steps [active]="0" [steps]="stepArray"></sq-steps>

Metadata

Index

Methods
Inputs
Outputs

Inputs

active
Type : number
Default value : 0

The index of the currently active step.

click
Type : boolean
Default value : false

Flag to enable or disable clicking on steps.

color
Type : string
Default value : 'var(--primary_color)'

The color theme for the steps component.

steps
Type : Step[]
Default value : []

An array of step objects representing the steps in the sequence.

Outputs

emitClick
Type : EventEmitter<literal type>

Event emitted when a step is clicked.

Methods

handleClick
handleClick(index: number)

Handles the click event on a step. Emits the emitClick event with information about the clicked step and its index.

Parameters :
Name Type Optional Description
index number No
  • The index of the clicked step.
Returns : void
import { Component, EventEmitter, Input, Output } from '@angular/core'
import { Step } from '../../interfaces/step.interface'

/**
 * Represents a component for displaying a sequence of steps.
 *
 * Look the link about the component in original framework and the appearance
 *
 * @see {@link https://css.squidit.com.br/components/steps}
 * 
 * <div class="steps my-3">
 *  <ul>
 *    <li class="old">
 *      <span></span>
 *    </li>
 *    <li class="active">
 *      <span></span>
 *    </li>
 *    <li>
 *      <span></span>
 *    </li>
 *  </ul>
 * </div>
 * 
 * @example
 * <sq-steps [active]="0" [steps]="stepArray"></sq-steps>
 *
 */
@Component({
  selector: 'sq-steps',
  templateUrl: './sq-steps.component.html',
  styleUrls: ['./sq-steps.component.scss'],
})
export class SqStepsComponent {
  /**
   * The color theme for the steps component.
   */
  @Input() color = 'var(--primary_color)'

  /**
   * Flag to enable or disable clicking on steps.
   */
  @Input() click = false

  /**
   * The index of the currently active step.
   */
  @Input() active = 0

  /**
   * An array of step objects representing the steps in the sequence.
   */
  @Input() steps: Step[] = []

  /**
   * Event emitted when a step is clicked.
   */
  @Output() emitClick: EventEmitter<{ step?: Step, i: number }> = new EventEmitter()

  /**
   * Handles the click event on a step.
   * Emits the `emitClick` event with information about the clicked step and its index.
   *
   * @param {number} index - The index of the clicked step.
   */
  handleClick(index: number): void {
    if (this.click && index >= 0 && index < this.steps.length) {
      this.emitClick.emit({ step: this.steps[index], i: index })
    }
  }
}
<div class="steps">
  <ul>
    <li
      *ngFor="let step of steps; let i = index"
      [ngClass]="{
        active: i === active,
        old: i < active
      }"
      [ngStyle]="{
        background:
          i === active ? 'linear-gradient(90deg, ' + color + ' 0%, ' + color + ' 50%, transparent 51%)' : i < active ? color : null
      }"
    >
      <span
        (click)="click ? (active = i) : null; emitClick.emit({ step, i })"
        [tooltip]="step?.tip || ''"
        placement="center top"
        container="body"
        [ngClass]="{
          pointer: click
        }"
      ></span>
    </li>
  </ul>
</div>

./sq-steps.component.scss

Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""