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

@subsocial/grill-widget

v0.1.3

Published

Small integration script to help you integrate Grill.chat into your app.

Downloads

243

Readme

Grill Widget

Grill Widget is a tiny package (< 1kb compressed) that you can use to integrate Grill into your app. It wraps all of the available configs in a simple function call.

https://github.com/dappforce/grillchat/assets/39906111/1d1ca9b5-c49f-49e4-9c04-ae4a4a390b33

Installation

yarn add @subsocial/grill-widget

or using CDN

<script src="https://unpkg.com/@subsocial/grill-widget@latest" defer></script>
<!-- You can change which specific version you want to use by changing the `@latest` to a specific version number. For example: `@0.0.8`. -->
<!-- this script will expose the `GRILL` variable to the window.  -->

Usage

  1. Add the div HTML tag with an id of grill to your app. Example:

    <div id="grill"></div>
  2. Call grill.init(config). The config is optional. Example:

    a) Use as a JS/TS module

    import grill from '@subsocial/grill-widget'
    
    const config = {}
    grill.init(config)

    b) Use as a global variable (CDN)

    const config = {}
    window.GRILL.init(config)
  3. That's it! 🥳

Integration Examples

Our community is using Grill Widget in various ways. You can check out some of the examples in the examples folder.

Customization

You can customize the Grill UI by passing a config object to the grill.init() function. For example:

import grill from '@subsocial/grill-widget'
grill.init({
  theme: 'light',
  // other options...
})

All config options are optional. If you don't pass any config, it will use the default config.

| Name | Type | Description | | ----------------- | -------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | widgetElementId | string | The id of the div that you want to render the chat to. Default to grill | | hub | { id: string } | The id or the domain name of the space that you want to show the topics from. You can read on how to manage your space here. Default to { id: 'featured' } (grillapp.net home page) | | channel | Channel | Option to make the iframe open chat room (a channel) directly. Read more about this option here | | theme | 'light' or 'dark' | The theme of the chat. If omitted, it will use the system preferences or the last https://grillapp.net theme selected by the user. | | onWidgetCreated | (iframe: HTMLIFrameElement) => HTMLIFrameElement | A function that will be called when the iframe is created. You can use this to customize the iframe attributes. |

Channel Option

The channel option is used to make the iframe open a chat room (a channel) directly. This is useful if you want to have a specific topic for your user to discuss.

| Name | Type | Description | | ---------- | -------------------------------------- | ------------------------------------------------------------------------------------------------------------------------ | | type | 'channel' | 'resource' | The channel type. Check the options for channels and resources below. | | settings | ChannelSettings | The settings of the channel. Read more about this here. |

Type 'channel' Options

This type opens a static chat room by id.

| Name | Type | Description | | ---- | -------- | ---------------------------------------------------------------------------------------- | | id | string | The id of the channel. This should be the channel id of the topic that you want to open. |

Type 'resource' Options

This type creates a new, or opens an existing, chat room by resource.

| Name | Type | Description | | ---------- | ------------------------ | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | resource | Resource | The resource linked to the postId on the blockchain should be the Resource. You can find examples suitable for various scenarios here. | | metadata | { title, body, image } | The metadata will be used as the content for the discussion post on the blockchain. |

Warning

To use this type, install the package via:

yarn add @subsocial/resource-discussions

Then, use Resource for the resource parameter, like here.

Channel Settings

You can customize the look and feel of the Grill UI via channel settings.

| Name | Type | Description | | ---------------------- | --------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | enableBackButton | boolean | If set to true, it will show the back button in the channel iframe. Default to false | | enableLoginButton | boolean | If set to true, it will show the login button in the channel iframe. Defaults to false. | | enableInputAutofocus | boolean | If set to true, it will autofocus on the message input when the iframe is loaded. The default behavior is true, except on touch devices. If set to true, it will autofocus the input on all devices. |

Examples

Hub config

import { GrillConfig } from '@subsocial/grill-widget'

const config: GrillConfig = {
  hub: { id: '1002' },
  theme: 'light',
}

Full Channel Config with 'type': 'channel'

import { GrillConfig } from '@subsocial/grill-widget'

const config: GrillConfig = {
  widgetElementId: 'grill',
  hub: { id: '1002' },
  channel: {
    type: 'channel',
    id: '2673',
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
  },
  theme: 'light',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}

Resource Discussion Examples

Full Resource Config with 'type': 'resource'
import { GrillConfig } from '@subsocial/grill-widget'

const config: GrillConfig = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'social',
      app: 'twitter',
      resourceType: 'profile',
      resourceValue: { id: 'elonmusk' },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'Elon Musk',
      body: 'Onchain discussion about Elon Musk',
    },
  },
  theme: 'light',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}

Resource config structure

The resource config has a conditional structure, which means that each subsequent config value depends on the previous one through a config hierarchy. You can envision this hierarchy as a directed graph tree with a variety of values and a strict config structure. There are various supported combinations of config values. On the other hand, you can provide your own values. However, in that case, your resource config will only have a basic list of resourceValue properties.

  • social -> twitter -> post -> id;
  • social -> twitter -> profile -> id;

  • social -> youtube -> post -> id;
  • social -> youtube -> profile -> id;

  • social -> any_social_app -> post -> id;

  • social -> any_social_app -> profile -> id;

Any chain type -> any chain name

  • chain -> any_chainType -> any_chainType_any_chainName -> block -> blockNumber;
  • chain -> any_chainType -> any_chainType_any_chainName -> tx -> txHash;
  • chain -> any_chainType -> any_chainType_any_chainName -> token -> tokenAddress;
  • chain -> any_chainType -> any_chainType_any_chainName -> account;

EVM chain type

  • chain -> evm -> ethereum -> block -> blockNumber;
  • chain -> evm -> ethereum -> tx -> txHash;
  • chain -> evm -> ethereum -> token -> tokenAddress;
  • chain -> evm -> ethereum -> nft -> collectionId;
  • chain -> evm -> ethereum -> nft -> nftId;
  • chain -> evm -> ethereum -> nft -> standard;

  • chain -> evm -> any_evm_chainName -> block -> blockNumber;
  • chain -> evm -> any_evm_chainName -> tx -> txHash;
  • chain -> evm -> any_evm_chainName -> token -> tokenAddress;
  • chain -> evm -> any_evm_chainName -> account;
  • chain -> evm -> any_evm_chainName -> nft -> collectionId;
  • chain -> evm -> any_evm_chainName -> nft -> nftId;
  • chain -> evm -> any_evm_chainName -> nft -> standard;

Substrate chain type

  • chain -> substrate -> subsocial -> block -> blockNumber;
  • chain -> substrate -> subsocial -> tx -> txHash;
  • chain -> substrate -> subsocial -> token -> tokenAddress;
  • chain -> substrate -> subsocial -> nft -> collectionId;
  • chain -> substrate -> subsocial -> nft -> nftId;
  • chain -> substrate -> subsocial -> nft -> standard;
  • chain -> substrate -> subsocial -> proposal -> id;

  • chain -> substrate -> zeitgeist -> block -> blockNumber;
  • chain -> substrate -> zeitgeist -> tx -> txHash;
  • chain -> substrate -> zeitgeist -> token -> tokenAddress;
  • chain -> substrate -> zeitgeist -> nft -> collectionId;
  • chain -> substrate -> zeitgeist -> nft -> nftId;
  • chain -> substrate -> zeitgeist -> nft -> standard;
  • chain -> substrate -> zeitgeist -> proposal -> id;
  • chain -> substrate -> zeitgeist -> market -> id;

  • chain -> substrate -> any_substrate_chainName -> block -> blockNumber;

  • chain -> substrate -> any_substrate_chainName -> tx -> txHash;

  • chain -> substrate -> any_substrate_chainName -> token -> tokenAddress;

  • chain -> substrate -> any_substrate_chainName -> account;

Resource Examples

1. EVM account address on Ethereum
new Resource({
  schema: 'chain',
  chainType: 'evm',
  chainName: 'ethereum',
  resourceType: 'account',
  resourceValue: {
    accountAddress: '0x0000000000000000000000000',
  },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'chain',
      chainType: 'evm',
      chainName: 'ethereum',
      resourceType: 'account',
      resourceValue: {
        accountAddress: '0x0000000000000000000000000',
      },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'Ethereum account',
      body: '...',
      image: '',
    },
  },
  theme: 'light',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}
2. NFT on Polygon
new Resource({
  schema: 'chain',
  chainType: 'evm',
  chainName: 'polygon',
  resourceType: 'nft',
  resourceValue: {
    standard: 'ERC-721',
    collectionId: '0x0000000000000000000000000',
    tokenId: '112',
  },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'chain',
      chainType: 'evm',
      chainName: 'polygon',
      resourceType: 'nft',
      resourceValue: {
        standard: 'ERC-721',
        collectionId: '0x0000000000000000000000000',
        tokenId: '112',
      },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'ERC-721 NFT on Polygon',
      body: '...',
      image: '',
    },
  },
  theme: 'dark',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}
3. Block on Kusama
new Resource({
  schema: 'chain',
  chainType: 'substrate',
  chainName: 'kusama',
  resourceType: 'block',
  resourceValue: {
    blockNumber: '1',
  },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'chain',
      chainType: 'substrate',
      chainName: 'kusama',
      resourceType: 'block',
      resourceValue: {
        blockNumber: '1',
      },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'Block #1 on Kusama',
      body: '...',
      image: '',
    },
  },
  theme: 'dark',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}
4. Elon Musk Twitter profile
new Resource({
  schema: 'social',
  app: 'twitter',
  resourceType: 'profile',
  resourceValue: { id: 'elonmusk' },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'social',
      app: 'twitter',
      resourceType: 'profile',
      resourceValue: { id: 'elonmusk' },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'Elon Musk Twitter profile',
      body: '...',
      image: '',
    },
  },
  theme: 'dark',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}
5. Youtube video
new Resource({
  schema: 'social',
  app: 'youtube',
  resourceType: 'post',
  resourceValue: { id: '58QuLi9ff9g' },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'social',
      app: 'youtube',
      resourceType: 'post',
      resourceValue: { id: '58QuLi9ff9g' },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'Youtube video title',
      body: '...',
      image: '',
    },
  },
  theme: 'dark',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}
6. RMRK2 NFT on Kusama
new Resource({
  schema: 'chain',
  chainType: 'substrate',
  chainName: 'kusama',
  resourceType: 'nft',
  resourceValue: {
    standard: 'rmrk2',
    collectionId: '22708b368d163c8007',
    tokenId: '00000020',
  },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'chain',
      chainType: 'substrate',
      chainName: 'kusama',
      resourceType: 'nft',
      resourceValue: {
        standard: 'rmrk2',
        collectionId: '22708b368d163c8007',
        tokenId: '00000020',
      },
    })
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'RMRK2 NFT on Kusama',
      body: '...',
      image: ''
    },
  },
  theme: 'dark',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}
7. Zeitgeist Market
new Resource({
  schema: 'chain',
  chainType: 'substrate',
  chainName: 'zeitgeist',
  resourceType: 'market',
  resourceValue: {
    id: '111',
  },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'chain',
      chainType: 'substrate',
      chainName: 'zeitgeist',
      resourceType: 'market',
      resourceValue: {
        id: '111',
      },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'Zeitgeist Market #111',
      body: '...',
      image: '',
    },
  },
  theme: 'dark',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}
8. Kusama Proposal
new Resource({
  schema: 'chain',
  chainType: 'substrate',
  chainName: 'kusama',
  resourceType: 'proposal',
  resourceValue: {
    id: '1',
  },
})
const config = {
  widgetElementId: 'grill',
  hub: { id: 'YOUR-HUB_ID' },
  channel: {
    type: 'resource',
    resource: new Resource({
      schema: 'chain',
      chainType: 'substrate',
      chainName: 'kusama',
      resourceType: 'proposal',
      resourceValue: {
        id: '1',
      },
    }),
    settings: {
      enableBackButton: false,
      enableLoginButton: false,
      enableInputAutofocus: true,
    },
    metadata: {
      title: 'Proposal #1 on Kusama',
      body: '...',
      image: '...',
    },
  },
  theme: 'light',
  onWidgetCreated: (iframe) => {
    iframe.classList.add('my-custom-class')
    return iframe
  },
}