src/components/sq-steps/sq-steps.component.ts
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
<sq-steps [active]="0" [steps]="stepArray"></sq-steps>
selector | sq-steps |
styleUrls | ./sq-steps.component.scss |
templateUrl | ./sq-steps.component.html |
Methods |
Inputs |
Outputs |
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. |
emitClick | |
Type : EventEmitter<literal type>
|
|
Event emitted when a step is clicked. |
handleClick | ||||||||
handleClick(index: number)
|
||||||||
Handles the click event on a step.
Emits the
Parameters :
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