npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@clavisco/notification-center

v0.0.3

Published

**Token**: `Notification-Center` > Permite mostrar un panel de notificaciones en tiempo real.

Downloads

41

Readme

Acerca de @clavisco/notification-center

Token: Notification-Center

Permite mostrar un panel de notificaciones en tiempo real.

¿Qué resuelve?

Habilita un entorno general que permite mostrar una lista de eventos o notificaciones en tiempo real.

Dependencias

Resumen de version

Correcciones (Fixes)

  • Error ExpressionChangedAfterItHasBeenCheckedError

Servicio de notificaciones

Métodos disponibles

  • Push(_args: { guid?: string, type: CLNotificationType, title: string, message: string, date?: Date, read?: boolean, notified?: boolean, data?: any }): Devuelve una notificación ICLNotification y recibe un objeto como parámetro.
  • guid: Identificador único para la notificación, es opcional, si no se asigna se genera un UUID aleatorio.
  • type: Define el tipo de la notificación, se especifica como parte del enum CLNotificationType.
  • title: Título de la alerta, se recomienda utilizar un título corto.
  • message: Mensaje sobre el error, notificacion o indicaciones, no posee un tamaño maximo, sin embargo el componente lo truncara de manera visual en dos lineas.
  • date: Fecha y hora de la notificacion, si no se asignar se genera automaticamente con el dia y la hora actual.
  • read: Define si la notificación ya fue leída, por defecto se asigna en false
  • notified: Define si la notificación ya fue mostrada en la lista del componente de notificaciones, esto tiene efecto directamente sobre el contador de notificaciones del boton del panel.
  • data: Puede almacenar otro tipo de data que sean de utilidad para notificacion, errores, objetos o definir un texto mas amplio sobre el mensaje.
  • priority: Nivel de prioridad de la notificacion es utlizado para definir si se aumenta el contador de notificaiones, puede ser high o low, esta ultima opcion por defecto
  • Pop(): Elimina y retorna la última notificación agregada como un ICLNotification o undefined si la pila esta vacía.
  • Remove(_notification: ICLNotification): Elimina y retorna la notificación especificada como un ICLNotification o undefined si la pila esta vacía o no encuentra el guid.
  • _notification: Notificación a eliminar, se utlizar el atributo guid para seleccionar al notificación correcta.
  • Get(_guid: string): Retorna la notificación especificada como un ICLNotification o undefined si la pila esta vacía o no encuentra el guid.
  • _guid: Identificador único para la notificación a buscar.
  • Select(_args: { types?: CLNotificationType[], read?: boolean, titleContains?: string, messageContains?: string, dateRange?: { from?: Date, to?: Date } }): Devuelve una lista de notificaciones ICLNotification y recibe un objeto como parámetro.
  • types: Lista de los tipos que desea filtrar basados en el enum CLNotificationType
  • read: Filtrar por ya leidos
  • titleContains: Texto para buscar dentro del título de la notificación
  • messageContains: Texto para buscar dentro del mensaje de la notificación
  • dateRange: Objeto compuesto de dos sun atributos from fecha y hora desde la que se inicia el filtro y to fecha y hora en la que finaliza el filtro, se puede omitir from o to para crear filtros de rango abierto.
  • All(): Retorna una lista de ICLNotification, con todas la notificaciones existentes en la pila.
  • Flush(): Elimina todas la notificaciones de la pila y retorna una lista de ICLNotification con los elementos eliminados.

¿Cómo lo uso?

  1. Primero debemos cumplir las depencias mencionadas al inicio de este documento
  2. Ejecutar el comando npm i @clavisco/notification-center en el directorio root del proyecto
  3. Importalo en el app.module.ts o en el modulo donde desee utilizarlo.
  4. Inyectar el servicio en el controlador donde queremos lanzar notificaciones constructor(private notificationCenterService: NotificationCenterService)
  5. Ejemplo de implementación del componente en el template html
<cl-notification-center></cl-notification-center>
  1. Ejemplo de llamado de una modal
this.notificationCenterService.Push({ 
  type: CLNotificationType.ERROR, 
  title: "Título del mensaje", 
  message: "Mensaje o error a mostrar" 
});
  1. Puede agregar la siguiente configuración para definir el número máximo de notificaciones a almacenar, si no la agrega el valor por defecto son 100
Repository.Behavior.SetTokenConfiguration({ token: 'NotificationCenter', setting: 'max', value: '5' });
  1. Ya con esto tenemos una implementación básica con el uso del centro de notificaciones

ClavisCo ©