0.1.5 • Published 2 years ago

twitchext-react v0.1.5

Weekly downloads
2
License
ISC
Repository
github
Last release
2 years ago

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

0.1.2

2 years ago

0.1.4

2 years ago

0.1.3

2 years ago

0.1.5

2 years ago

0.1.1

2 years ago

0.1.0

4 years ago

0.0.18

4 years ago

0.0.17

4 years ago

0.0.16

5 years ago

0.0.15

5 years ago

0.0.14

5 years ago

0.0.13

5 years ago

0.0.12

5 years ago

0.0.11

5 years ago

0.0.10

5 years ago

0.0.9

5 years ago

0.0.8

5 years ago

0.0.7

5 years ago

0.0.6

5 years ago

0.0.4

5 years ago

0.0.3

5 years ago

0.0.2

5 years ago

0.0.1

5 years ago