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

editorjs-github-gist-plugin

v1.1.0

Published

Editor.js plugin for adding Github Gists.

Downloads

96

Readme

Github Gist Plugin for Editor.js

A plugin to add Github Gists to Editor.js.

Import Note

Only paste the URL in <script> tag not the entire <script> tag.

For example, In <script src="https://gist.github.com/username/gist_id.js"></script>, only paste the URL inside the src attribute i.e. https://gist.github.com/username/gist_id.js.

Screenshot

Github Gist Plugin

Features

  • Add Gists by pasting its URL.
  • Add an optional Caption explaining the Gist.
  • Specify the height of the added Gist.
  • A preview of the uploaded Gist will be presented.
  • Error will be thrown on invalid URL input or invalid Gist ID.

Installation

Install via NPM

Get the package

npm i editorjs-github-gist-plugin

Include module at your application

import Gist from 'editorjs-github-gist-plugin';

Other methods

Manual downloading and connecting

  1. Download folder dist from repository
  2. Add dist folder to your page.
  3. Import main.js file inside the dist folder.

Usage

Add the plugin to the tools property of the Editor.js initial config as a new tool.

import Gist from 'editorjs-github-gist-plugin';

var editor = EditorJS({
  ...

  tools: {
    ...
    gist: Gist
  }

  ...
});

Output data

This Plugin/Tool returns data with following format:

| Field | Type | Description | | ----- | -------- | ------------------ | | url | string | URL of the Github Gist added | | caption | string | Caption for the Gist | | height | number | The fixed height of the Gist |

Example:

{
    "type": "gist",
    "data": {
        "url": "https://gist.github.com/AdeilsonESilva/7ddb4c0f156f20d2642d0414777cff85.js",
        "caption": "Get items in array.",
        "height": 450
    }
}

Preview

The preview in the block is shown using an iframe tag in which the link to the Github Gist is provided as srcdoc property.
This way of adding scripts can be helpful for some environments or frameworks in which adding a direct script tag is not permitted or throws an error for example, Vue.js.

The code below is how a Github Gist is embedded in iframe element which can be helpful if one wants to use the gists same way.

const iframe = document.createElement('iframe');
/**
 * Adds the gist as  a srcdoc.
 */
iframe.srcdoc = `<script src="${url}"></script>`;

/**
* Removes the borders of the inline-frame
*/
iframe.frameBorder = 0;

iframe.addEventListener('load', function () {
    /**
     * Sets the height of the inline frame equal to the height of the Gist.
     */
    this.style.height = this.contentWindow.document.body.scrollHeight + 16 + 'px';

    /**
     * Makes all the links in the inline-frame on click, to open in a new tab of the browser 
     * rather than inside the inline-frame itself.
    */
    const links = this.contentWindow.document.getElementsByTagName('a');

    for (let i = 0; i < links.length; i++) {
        links[i].setAttribute('target', '_blank');
    }
});