Git Product home page Git Product logo

twitchext-react's Introduction

TwitchExt-react

Install

npm i --save twitchext-react

yarn add twitchext-react

How to use

If you are not familiar with React hooks, take a look at the documentation

App.js

import React from 'react'
import {ExtensionProvider} from 'twitchext-react'
import View from "./View";


const Panel = ()=>{
    return <ExtensionProvider>
      <View/>
    </ExtensionProvider>
}

export default Panel

View.js

import React from 'react'
import {useExt} from 'twitchext-react'

const Example = ()=>{
  const ext = useExt()
  
  return <div>{ext.viewer.opaqueId}</div>
}

export default Example

Structure

The data structure is based on the - Twitch Extension Helper

You can access the data using the same structure

clientId:string extension client id, initialized after the first onAuthorized callback calls

Custom data

Channel

channel.initialized:boolean return if the channel information have been set.

id:string return the channel id of the stream.

Configuration Service

configuration.initialized:boolean return if the configuration service has been set.

Context

For the default data structure see the OnContext method.

The same structure is used to store the data under the context field.

context.initialized:boolean return if the context information have been set.

Viewer

viewer.initialized:boolean return if the viewer information have been set.

Features

features.initialized:boolean return if the viewer information have been set.

Other framework

Vue

You can use my other package for VueJs/Vuex : TwitchExt-Vuex

Resources

twitchext-react's People

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.