├── .babelrc ├── .github └── workflows │ └── metrics.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── example ├── app.js ├── components │ ├── App.js │ ├── CheckBox.js │ ├── ConnectionStatus.js │ ├── Publisher.js │ ├── RadioButtons.js │ └── Subscriber.js ├── config.template.js └── index.html ├── karma.conf.js ├── package.json ├── src ├── .eslintrc.js ├── OTPublisher.js ├── OTSession.js ├── OTStreams.js ├── OTSubscriber.js ├── OTSubscriberContext.js ├── createSession.js ├── index.js └── preloadScript.js ├── test ├── .eslintrc.js ├── OTPublisher.spec.js ├── OTSession.spec.js ├── OTStreams.spec.js ├── OTSubscriber.spec.js ├── createSession.spec.js └── preloadScript.spec.js ├── types ├── index.d.ts ├── index.test-d.ts ├── opentok.d.ts └── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/metrics.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/.github/workflows/metrics.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/README.md -------------------------------------------------------------------------------- /example/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/app.js -------------------------------------------------------------------------------- /example/components/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/components/App.js -------------------------------------------------------------------------------- /example/components/CheckBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/components/CheckBox.js -------------------------------------------------------------------------------- /example/components/ConnectionStatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/components/ConnectionStatus.js -------------------------------------------------------------------------------- /example/components/Publisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/components/Publisher.js -------------------------------------------------------------------------------- /example/components/RadioButtons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/components/RadioButtons.js -------------------------------------------------------------------------------- /example/components/Subscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/components/Subscriber.js -------------------------------------------------------------------------------- /example/config.template.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/config.template.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/example/index.html -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/package.json -------------------------------------------------------------------------------- /src/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/.eslintrc.js -------------------------------------------------------------------------------- /src/OTPublisher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/OTPublisher.js -------------------------------------------------------------------------------- /src/OTSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/OTSession.js -------------------------------------------------------------------------------- /src/OTStreams.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/OTStreams.js -------------------------------------------------------------------------------- /src/OTSubscriber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/OTSubscriber.js -------------------------------------------------------------------------------- /src/OTSubscriberContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/OTSubscriberContext.js -------------------------------------------------------------------------------- /src/createSession.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/createSession.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/index.js -------------------------------------------------------------------------------- /src/preloadScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/src/preloadScript.js -------------------------------------------------------------------------------- /test/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/test/.eslintrc.js -------------------------------------------------------------------------------- /test/OTPublisher.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/test/OTPublisher.spec.js -------------------------------------------------------------------------------- /test/OTSession.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/test/OTSession.spec.js -------------------------------------------------------------------------------- /test/OTStreams.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/test/OTStreams.spec.js -------------------------------------------------------------------------------- /test/OTSubscriber.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/test/OTSubscriber.spec.js -------------------------------------------------------------------------------- /test/createSession.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/test/createSession.spec.js -------------------------------------------------------------------------------- /test/preloadScript.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/test/preloadScript.spec.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/index.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/types/index.test-d.ts -------------------------------------------------------------------------------- /types/opentok.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/types/opentok.d.ts -------------------------------------------------------------------------------- /types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/types/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opentok/opentok-react/HEAD/yarn.lock --------------------------------------------------------------------------------