src/components/sq-tag/sq-tag.component.ts
Represents a tag component with customizable appearance and behavior.
Look the link about the component in original framework and the appearance
See https://css.squidit.com.br/components/tag
<sq-tag>Tag Content</sq-tag>
selector | sq-tag |
styleUrls | ./sq-tag.component.scss |
templateUrl | ./sq-tag.component.html |
Properties |
Methods |
Inputs |
Outputs |
constructor(colorsHelper: ColorsHelper)
|
||||||||
Defined in src/components/sq-tag/sq-tag.component.ts:63
|
||||||||
Constructor for the SqButtonComponent class.
Parameters :
|
backgroundColor | |
Type : string
|
|
Default value : ''
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:43
|
|
The background color of the tag. |
color | |
Type : string
|
|
Default value : ''
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:38
|
|
The text color of the tag. |
customClass | |
Type : string
|
|
Default value : ''
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:28
|
|
Additional CSS classes for styling the tag. |
disabled | |
Type : boolean
|
|
Default value : false
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:53
|
|
Flag to disable the tag. |
pointer | |
Type : boolean
|
|
Default value : false
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:58
|
|
Flag to disable the tag. |
readonly | |
Type : boolean
|
|
Default value : false
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:48
|
|
Flag to make the tag readonly. |
rounded | |
Type : boolean
|
|
Default value : false
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:33
|
|
Flag to round the corners of the tag. |
emitClick | |
Type : EventEmitter<void>
|
|
Defined in src/components/sq-tag/sq-tag.component.ts:63
|
|
Event emitted when the tag is clicked. |
handleClick |
handleClick()
|
Handles the click event on the tag.
Emits the
Returns :
void
|
validatePresetColors |
validatePresetColors()
|
Defined in src/components/sq-tag/sq-tag.component.ts:79
|
Validates whether the specified color is a preset color.
Returns :
boolean
True if the color is a valid preset color, false otherwise. |
Public colorsHelper |
Type : ColorsHelper
|
Defined in src/components/sq-tag/sq-tag.component.ts:70
|
- The ColorsHelper service for color manipulation.
|
getBackgroundColor |
Default value : useMemo(() => {
if (this.validatePresetColors()) {
return ''
}
return this.backgroundColor
})
|
Retrieves the computed background color for the tag. |
getColor |
Default value : useMemo(() => {
if (this.validatePresetColors()) {
return ''
}
return this.color
})
|
Defined in src/components/sq-tag/sq-tag.component.ts:88
|
Retrieves the computed text color for the tag. |
import { Component, EventEmitter, Input, Output } from '@angular/core'
import { ColorsHelper } from '../../helpers/colors.helper'
import { useMemo } from '../../helpers/memo.helper'
/**
* Represents a tag component with customizable appearance and behavior.
*
* Look the link about the component in original framework and the appearance
*
* @see {@link https://css.squidit.com.br/components/tag}
*
* <div class=' my-3 tag-box'>
* Tag Content
* </div>
*
* @example
* <sq-tag>Tag Content</sq-tag>
*/
@Component({
selector: 'sq-tag',
templateUrl: './sq-tag.component.html',
styleUrls: ['./sq-tag.component.scss']
})
export class SqTagComponent {
/**
* Additional CSS classes for styling the tag.
*/
@Input() customClass = ''
/**
* Flag to round the corners of the tag.
*/
@Input() rounded = false
/**
* The text color of the tag.
*/
@Input() color = ''
/**
* The background color of the tag.
*/
@Input() backgroundColor = ''
/**
* Flag to make the tag readonly.
*/
@Input() readonly = false
/**
* Flag to disable the tag.
*/
@Input() disabled = false
/**
* Flag to disable the tag.
*/
@Input() pointer = false
/**
* Event emitted when the tag is clicked.
*/
@Output() emitClick: EventEmitter<void> = new EventEmitter<void>()
/**
* Constructor for the SqButtonComponent class.
* @param colorsHelper - The ColorsHelper service for color manipulation.
*/
constructor(
public colorsHelper: ColorsHelper
) {
}
/**
* Validates whether the specified color is a preset color.
*
* @returns {boolean} True if the color is a valid preset color, false otherwise.
*/
validatePresetColors(): boolean {
return !!this.colorsHelper?.getCssVariableValue(this.color)
}
/**
* Retrieves the computed text color for the tag.
*
* @returns {string} The computed text color.
*/
getColor = useMemo(() => {
if (this.validatePresetColors()) {
return ''
}
return this.color
})
/**
* Retrieves the computed background color for the tag.
*
* @returns {string} The computed background color.
*/
getBackgroundColor = useMemo(() => {
if (this.validatePresetColors()) {
return ''
}
return this.backgroundColor
})
/**
* Handles the click event on the tag.
* Emits the `emitClick` event if the tag is not readonly or disabled.
*/
handleClick(): void {
if (this.readonly || this.disabled) {
return
}
this.emitClick.emit()
}
}
<div
class='tag-box background-{{ backgroundColor }} {{ color }}'
[ngClass]="{
'readonly-tag': readonly,
'disabled': disabled,
'rounded': rounded,
'pointer': pointer,
}"
[ngStyle]="{
'color': getColor(),
'background-color': getBackgroundColor(),
}"
(click)="handleClick()"
>
<ng-content></ng-content>
</div>
./sq-tag.component.scss