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

super-react-gist

v1.1.1

Published

Simple and flexible component that allows you to embed GitHub Gists in React projects.

Downloads

1,355

Readme

super-react-gist

Simple and flexible component that allows you to embed GitHub Gists in React projects.

Features

  • Embed a single file from Gist repository!
  • Embed multiple files from multiple Gist repositories!
  • Embed the whole Gist repository!
  • Easy usage: Just copy-paste the Gist's repository URL to embed the whole repository, or copy-paste the permalink of an individual file to include just that.
  • Maximize Development Experience with custom error handling.
  • Lightweight: ~9KB minified (~4kb if gzipped).
  • Packaged as UMD module that can be loaded everywhere.
  • Works both on secret and public repositories.

Table of contents

Installation

Through NPM

To install through npm run:

npm i super-react-gist

As UMD module

super-react-gist comes as UMD module. This means you are able to use super-react-gist component in your browser!

To get started add the following script tag in your html file:

<script src="https://unpkg.com/super-react-gist/umd/super-react-gist.min.js"></script>

Component Properties

| Name | Type | Required | Description | | :--- | :--- | :---: | :--- | | url | string |✅ | The URL of the Gist repository or the permalink of an individual gist file. | | file | string | | Optional filename to include. | | onLoad | function | | Optional callback triggered on Gist load. | | onError | function | | Optional callback triggered on fetch error. | | LoadingComponent | Component | | Optional React component to render on Gist loading. | | ErrorComponent | Component || Optional React component to render if Gist fetch fails. |

Examples

The following examples illustrate some basic features of the super-react-gist library.

Render one file

With super-react-gist you are able to render a single file from a gist repository.

// Here is a little snippet to get you started!
import React from 'react'
import Gist from 'super-react-gist' // <-- import the library

const MyComponent = () => (
  <div>
    <p>Just enter the file permalink to <em>url</em> prop.</p>
    <Gist url='https://gist.github.com/GeorgeGkas/5f55a83909a3f5b766934ffe802d30df#file-start-js' />
  </div>
)

Render multiple files

You are not restricted to use only one Gist component in your project.

import React from 'react'
import Gist from 'super-react-gist' // <-- import the library

const MyComponent = () => (
  <div>
    <p>Rendering multiple files is a piece of cake!</p>
    <Gist url='https://gist.github.com/GeorgeGkas/5f55a83909a3f5b766934ffe802d30df#file-start-js' />
    <Gist url='https://gist.github.com/GeorgeGkas/5f55a83909a3f5b766934ffe802d30df#file-multiple-js' />
  </div>
)

Render using file prop

Oh snap! face-palm! In case you didn't notice we can only use the above method to render files that do not contain any uppercase letter. For instance, if our Gist repo contains a file CaMelCase.js, then providing just the permalink will not work!

Q: How can we render this CaMelCase.js file? A: By providing a file prop to our Gist component to indicate which file we want to include.

This is how we do it:

import React from 'react'
import Gist from 'super-react-gist'

const MyComponent = () => (
  <div>
    <p>provide the Gist url without including the file.</p>
    <p>...and pass the filename to `file` prop.</p>
    <Gist
      url='https://gist.github.com/GeorgeGkas/5f55a83909a3f5b766934ffe802d30df'
      file='CaMelCase.js'
      />
  </div>
)

Render the whole Gist

Of course, we can also embed the whole Gist repository just by copying the Gist URL.

import React from 'react'
import Gist from 'super-react-gist'

const MyComponent = () => (
  <div>
    <p>provide the Gist URL without include any file.</p>
    <Gist url='https://gist.github.com/GeorgeGkas/5f55a83909a3f5b766934ffe802d30df' />
  </div>
)

Use a custom loading component

Most of the times, we would like to render a custom React component while our Gists are loading.

import React from 'react'
import Gist from 'super-react-gist'

const MyComponent = () => (
  <div>
    <p>provide the Gist URL without include any file.</p>
    <Gist 
      url='https://gist.github.com/GeorgeGkas/5f55a83909a3f5b766934ffe802d30df' 
      LoadingComponent={() => <div>Waiting for Gist...</div>}
    />
  </div>
)

Use a custom error component

In case that fetching fails, we can render a custom React Component to indicate the error.

import React from 'react'
import Gist from 'super-react-gist'

const MyComponent = () => (
  <div>
    <p>provide the Gist URL without include any file.</p>
    <Gist 
      url='https://gist.github.com/GeorgeGkas/NOT_EXIST' 
      ErrorComponent={() => <div>Could not fetch component</div>}
    />
  </div>
)

Listen to error and loading events

Apart from providing a custom error or loading component, we can also register the corresponding callbacks. The onLoad callback is executed when the Gist is fetched successfully, while onError callback is executed if could not retrieve the requested Gist.

import React from 'react'
import Gist from 'super-react-gist'

const MyComponent = () => (
  <div>
    <p>provide the Gist URL without include any file.</p>
    <Gist 
      url='https://gist.github.com/GeorgeGkas/NOT_EXIST' 
      οnLoad={() => console.log('Gist fetched successfully!')}
      onError={() => console.log('Gist could not be fetched!')}
    />
  </div>
)

Combine all the above techniques

This example is left as an exercise to the reader.

Run the examples yourself

Clone the repo git clone https://github.com/georgegkas/super-react-gist.git and then run:

$ npm install
$ npm start

Then you are able to access the Gist component using the Gist global variable. See this Pen for a demonstration.

Bugs and feature requests

Have a bug or a feature request? Please open a new issue.

Contributing

Please read through our contributing guidelines in CONTRIBUTING.md file.

Editor preferences are available in the editor config for easy use in common text editors. Read more and download plugins at http://editorconfig.org.

License

Code released under the MIT License. See LICENSE.md for more details.