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

@guajiritos/services

v16.2.0

Published

`Guajiritos Services` es una librería para Angular que proporciona los servicios, interfaces, pipes y utilidades necesarios para el correcto funcionamiento de las plataformas de Guajiritos S.R.L.

Downloads

400

Readme

Guajiritos Services

Guajiritos Services es una librería para Angular que proporciona los servicios, interfaces, pipes y utilidades necesarios para el correcto funcionamiento de las plataformas de Guajiritos S.R.L.

Instalación

Con npm

npm i @guajiritos/services --save

Con yarn

yarn add @guajiritos/services

Con pnpm

pnpm add @guajiritos/services

Dependencias

Guajiritos Services tiene dependencias de @angular/material y lodash.merge. Es recomendable instalar @angular/material usando el cli de angular.

ng add @angular/material

Con npm

npm i lodash.merge --save

Con yarn

yarn add lodash.merge

Con pnpm

pnpm add lodash.merge

Utilidades

Guajiritos Services contiene las siguientes utilidades.

Rest Full Service

Rest Full Service es un servicio que contiene los elementos necesarios para hacer peticiones a un API-REST así como las peticiones básicas.

Para el correcto funcionamiento es necesario extender de la clase RestFullService, notar que contiene dos interfaces, una sería para la respuesta a la petición GET y la otra sería el cuerpo de la petición POST.

import {Injectable} from '@angular/core';

import {RestFullService} from "@guajiritos/services";

@Injectable({
  providedIn: 'root'
})
export class AudienceService extends RestFullService<AudienceOut, AudienceIn> {
  override url: string = URL_AUDIENCE;
  override urlId: string = URL_AUDIENCE_ID;
  
  private urlShare: string = URL_SHARE_AUDIENCE

  public shareAudience(body: ShareAudienceDto) {
    return this.http.post(this.urlShare, body);
  }
}

Pipes

@guajiritos/services contiene las siguientes pipes:

- CapitalizePipe
- I18nPipe 

CapitalizePipe permite convertir una cadena de texto con solo su primera letra en mayúsculas.


<button *ngIf="action?.isCreate || action?.isClone" [matTooltip]="'cancelar' | translate | capitalize"
        color="accent" mat-stroked-button>
  {{ "atrás" | translate | titlecase }}
</button>

I18nPipe permite hacer la traducción de un texto que contenga la llave para diferentes idiomas.

<mat-option *ngFor="let language of languages()" [value]="language.alpha2">
  {{ language.name | i18n: translateService.currentLang }}
</mat-option>

Classes

@guajiritos/services contiene las clases:

- ObservableDestroy
- MatPaginatorI18nService 

ObservableDestroy es una clase que permite destruir los observables de forma eficiente y con el mínimo de desarrollo.

private isLoadingSubscribe(): void {
  this._loadingService.isLoading$
    .pipe(ObservableDestroy.unregisterFn())
    .subscribe({
      next: (isLoading: boolean): void => {
        this.loading.set(isLoading);
      }
    });
}

MatPaginatorI18nService es una clase que permite hacer la traducción del módulo Paginator de @angular/material.

Interfaces

- GuajiritosAutocompleteMultipleConfig
- RestrictionFilter
- ApiFormData
- Filter
- ServiceOptions
- DisplayOptionItem
- DisplayOption
- SelectionOptions
- CssClass
- CssStyle
- IterableOptions
- TemplateDataSelector
- TemplateData
- FooterOption
- ColumnOptions
- SpecificCondition
- CustomAction
- BasicBtn
- BasicActions
- SelectOption
- CustomOptions
- ToggleOptions
- ColumnFilterOptions
- CrudOptions
- StaticFilter
- StaticFiltersOut
- DataTableOptions
- Pagination

Enums

- DisplayOptionItemType
- TemplateDataSelectorType
- ColumnOptionsType
- SpecificConditionOperator
- CustomActionType
- ButtonMode
- ColumnFilterOptionsType