File

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

Description

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

Tag Content
Example :
<sq-tag>Tag Content</sq-tag>

Metadata

Index

Properties
Methods
Inputs
Outputs

Constructor

constructor(colorsHelper: ColorsHelper)

Constructor for the SqButtonComponent class.

Parameters :
Name Type Optional Description
colorsHelper ColorsHelper No
  • The ColorsHelper service for color manipulation.

Inputs

backgroundColor
Type : string
Default value : ''

The background color of the tag.

color
Type : string
Default value : ''

The text color of the tag.

customClass
Type : string
Default value : ''

Additional CSS classes for styling the tag.

disabled
Type : boolean
Default value : false

Flag to disable the tag.

pointer
Type : boolean
Default value : false

Flag to disable the tag.

readonly
Type : boolean
Default value : false

Flag to make the tag readonly.

rounded
Type : boolean
Default value : false

Flag to round the corners of the tag.

Outputs

emitClick
Type : EventEmitter<void>

Event emitted when the tag is clicked.

Methods

handleClick
handleClick()

Handles the click event on the tag. Emits the emitClick event if the tag is not readonly or disabled.

Returns : void
validatePresetColors
validatePresetColors()

Validates whether the specified color is a preset color.

Returns : boolean

True if the color is a valid preset color, false otherwise.

Properties

Public colorsHelper
Type : ColorsHelper
- 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 })

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

Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""