Skip to content

Angular library that returns Giphy's GIF or stickers when you search for them

License

Notifications You must be signed in to change notification settings

obinnaogbonnajoseph/ngx-giphy-component

Repository files navigation

Angular library that returns Giphy's GIF or stickers when you search for them

Description

You can get loads of gifs or stickers from the Giphy API when you search for them using this angular component.

Demo

@see DEMO HERRE

Getting started

  npm install --save ngx-giphy-grid

Setup

import { NgxGiphyGridModule } from 'ngx-giphy-grid';
@NgModule({
  ...
  imports: [
    ...
    NgxGiphyGridModule.forRoot({
      token: environment.NG_APP_GIPHY_TOKEN
    })
  ]
})
export class AppModule {}

Using the component

<ngx-giphy-grid
  class="w-full flex-1 overflow-y-scroll"
  (gifs)="setGifs($event)"
  [searchObj]="searchObj"
  (loading)="setLoading($event)"
  [mode]="mode"
  [className]="'flex-1 mb-8 flex flex-row flex-wrap gap-1 justify-around w-full'"
>
  <picture
    class="cursor-pointer"
    (click)="selectGif(gif, i)"
    *ngFor="let gif of gifs; index as i"
  >
    <source type="image/webp" [srcset]="gif.webp" />
    <img
      style="border: 1px solid #7c7c7c; width: 100px !important; height: 100px !important;"
      [alt]="gif.altText"
      class="rounded-8"
      [src]="getUrl(gif.url)"
    />
  </picture>
</ngx-giphy-grid>
@Input Type Default value Description
mode 'stickers' or 'gifs' 'gifs' search results to be stickers or gifs
className string '' Style the parent element of list of gifs or stickers
searchObject {searchText: string; reset: boolean} {threshold: 0.5} contains the search string and an extra property to determine if search results should be cleared and populated by new search or not
@Output Type Default value Description
gifs Array of gif object with alt text [] array of gif objects with alt texts
loading boolean false shows if there is an active fetch going on or not

Issues and Pull Requests

Please file issues and open pull requests here. Thank you.

Licence

MIT

About

Angular library that returns Giphy's GIF or stickers when you search for them

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published