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

react-giphy-searchbox2

v1.5.4

Published

React Giphy Searchbox

Downloads

6

Readme

Travis npm package Codecov


React Giphy Searchbox is a powerful react component that returns Giphy's GIF or Stickers in a Masonry grid layout. Initially the component displays trending GIFs from Giphy's feed, when the the user starts typing something in the search field it switches to searched results. When an image is selected, a GIF object is returned.


Please note: Axios has been dropped in favor of the native window.fetch() method from version 1.3.0. Please keep in mind that if you need to support old browsers you have to add a global polyfill like github/fetch or developit/unfetch.


Demo

Play with a simple responsive demo on CodeSandbox

Edit react-giphy-searchbox

Getting started

Installation

yarn add react-giphy-searchbox
npm install react-giphy-searchbox --save

Basic example

import React from 'react'
import { render } from 'react-dom'
import ReactGiphySearchbox from 'react-giphy-searchbox'

const App = () => (
  <ReactGiphySearchbox
    apiKey="YOUR_API_KEY" // Required: get your on https://developers.giphy.com
    onSelect={item => console.log(item)}
  />
)

render(<App />, document.getElementById("root"))

Props

| Prop | Type | Desc ß | | ------------------------ | --------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | apiKey | string | REQUIRED: Giphy's API key. Get your on https://developers.giphy.com. | | onSelect | function | REQUIRED A callback which is triggered whenever a GIF is selected. It returns a Gif object in the format specified for an image from Giphy's API. | | onSearch | function | A callback which is triggered whenever a search is performed. It returns the searched text string. | | libray | 'gifs' | 'stickers' | Giphy's library: choose between gifs or stickers. Default: gifs | | rating | string | Filters results by specified rating. Default: g | | imageRenditionName | string | The type of rendition to be used. Default: fixed_width_downsampled. Please be careful with this setting, loading high quality gifs inside the masonry can reduce the performances. | | imageRenditionFileType | 'gif' | 'webp' | The image type to be returned. Default: gif | | gifPerPage | number | The maximum number of images to return per page. Default: 20 | | autoFocus | boolean | If true, the search form input field is focused by default on startup. Default: false | | masonryConfig | array | An array of objects describing the masonry's properties at different breakpoints. See specific chapter for further info. Default: [{ columns: 2, imageWidth: 120, gutter: 5 }] | | gifListHeight | string | The height of the returned GIF list. Default: 300px | | messageError | string | Generic error message when APIs call fails. Default: Oops! Something went wrong. Please, try again. | | messageLoading | string | Loading message only for accessibility purposes. Default: Loading... | | messageNoMatches | string | Message to tell users searched string returned empty array. Default: No matches found. | | loadingImage | string | If you want to customize the loading spinner, use this prop to set an alternative src for the image. | | poweredByGiphy | boolean | You can choose to display or not display the Powered by Giphy badge at the bottom. Note that you need to show it if you want a production Api key from Giphy. Default: true | | poweredByGiphyImage | string | If you want to customize the Powered by Giphy badge, use this prop to set an alternative src for the image. | | searchPlaceholder | string | Search input placeholder. Default: Search for GIFs | | wrapperClassName | string | Additional CSS class for the <div> that wrap the whole component. | | searchFormClassName | string | Additional CSS class for the <form> element. | | listWrapperClassName | string | Additional CSS class for the <div> that wrap the GIFs list. | | listItemClassName | string | Additional CSS class for the <button> that wrap the single image. | | imageBackgroundColor | string | Set the Giphy's image item background color, useful when libray prop is set to stickers, since stickers have transparent background. Default: #eee |

Responsive options

masonryConfig prop allow you to define responsiveness of the component. This prop accept an array of objects describing the masonry's properties at different breakpoints.

Each object in the array has the following properties:

| Prop | Type | Description | | ------------ | ------ | ----------------------------------------------------------------- | | mq | string | The minimum viewport width | | columns | number | The number of vertical columns | | imageWidth | number | The width (in px) of the image, and consequentially of the column | | gutter | number | The space (in px) between the columns |

[
  { columns: 2, imageWidth: 140, gutter: 10 },
  { mq: '700px', columns: 3, imageWidth: 200, gutter: 10 },
  { mq: '1000px', columns: 4, imageWidth: 220, gutter: 10 },
]

When defining your properties, note the following:

  • properties must be listed smallest to largest breakpoints in a mobile first approach;
  • The size without the mq property is assumed to be your smallest breakpoint, and must appear first.

License

MIT. © 2021 Sergio Pedercini