├── .babelrc.json ├── .circleci └── config.yml ├── .gitignore ├── .storybook ├── main.ts └── preview.ts ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── jest.config.js ├── package.json ├── prettier.config.js ├── renovate.json ├── src ├── @types │ └── react-twitter-embed │ │ └── index.d.ts ├── ReactEmbed.tsx ├── __tests__ │ ├── index.spec.ts │ └── setup.js ├── blocks │ ├── codesandbox │ │ └── index.tsx │ ├── dropbox │ │ └── index.tsx │ ├── figma │ │ └── index.tsx │ ├── gfycat │ │ └── index.tsx │ ├── gist │ │ └── index.tsx │ ├── gmaps │ │ └── index.tsx │ ├── imgur │ │ └── index.tsx │ ├── instagram │ │ └── index.tsx │ ├── jsfiddle │ │ └── index.tsx │ ├── pdf │ │ ├── canPlay.ts │ │ └── index.tsx │ ├── react-player │ │ ├── canPlay.ts │ │ └── index.tsx │ ├── react-simple-player │ │ ├── canPlay.ts │ │ └── index.tsx │ ├── replit │ │ └── index.tsx │ ├── soundcloud │ │ └── index.tsx │ ├── tweet │ │ └── index.tsx │ ├── vimeo │ │ └── index.tsx │ └── youtube │ │ └── index.tsx ├── index.tsx ├── renderer.tsx ├── routeToBlock.ts └── stories │ ├── Box.tsx │ └── ReactEmbed.stories.tsx ├── tsconfig.json ├── tslint.json └── yarn.lock /.babelrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/.babelrc.json -------------------------------------------------------------------------------- /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/.storybook/main.ts -------------------------------------------------------------------------------- /.storybook/preview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/.storybook/preview.ts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/commitlint.config.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/prettier.config.js -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/renovate.json -------------------------------------------------------------------------------- /src/@types/react-twitter-embed/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/@types/react-twitter-embed/index.d.ts -------------------------------------------------------------------------------- /src/ReactEmbed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/ReactEmbed.tsx -------------------------------------------------------------------------------- /src/__tests__/index.spec.ts: -------------------------------------------------------------------------------- 1 | xit('Jest working', () => {}); 2 | -------------------------------------------------------------------------------- /src/__tests__/setup.js: -------------------------------------------------------------------------------- 1 | // Jest setup. 2 | process.env.JEST = true; 3 | -------------------------------------------------------------------------------- /src/blocks/codesandbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/codesandbox/index.tsx -------------------------------------------------------------------------------- /src/blocks/dropbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/dropbox/index.tsx -------------------------------------------------------------------------------- /src/blocks/figma/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/figma/index.tsx -------------------------------------------------------------------------------- /src/blocks/gfycat/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/gfycat/index.tsx -------------------------------------------------------------------------------- /src/blocks/gist/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/gist/index.tsx -------------------------------------------------------------------------------- /src/blocks/gmaps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/gmaps/index.tsx -------------------------------------------------------------------------------- /src/blocks/imgur/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/imgur/index.tsx -------------------------------------------------------------------------------- /src/blocks/instagram/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/instagram/index.tsx -------------------------------------------------------------------------------- /src/blocks/jsfiddle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/jsfiddle/index.tsx -------------------------------------------------------------------------------- /src/blocks/pdf/canPlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/pdf/canPlay.ts -------------------------------------------------------------------------------- /src/blocks/pdf/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/pdf/index.tsx -------------------------------------------------------------------------------- /src/blocks/react-player/canPlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/react-player/canPlay.ts -------------------------------------------------------------------------------- /src/blocks/react-player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/react-player/index.tsx -------------------------------------------------------------------------------- /src/blocks/react-simple-player/canPlay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/react-simple-player/canPlay.ts -------------------------------------------------------------------------------- /src/blocks/react-simple-player/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/react-simple-player/index.tsx -------------------------------------------------------------------------------- /src/blocks/replit/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/replit/index.tsx -------------------------------------------------------------------------------- /src/blocks/soundcloud/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/soundcloud/index.tsx -------------------------------------------------------------------------------- /src/blocks/tweet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/tweet/index.tsx -------------------------------------------------------------------------------- /src/blocks/vimeo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/vimeo/index.tsx -------------------------------------------------------------------------------- /src/blocks/youtube/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/blocks/youtube/index.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/renderer.tsx -------------------------------------------------------------------------------- /src/routeToBlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/routeToBlock.ts -------------------------------------------------------------------------------- /src/stories/Box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/stories/Box.tsx -------------------------------------------------------------------------------- /src/stories/ReactEmbed.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/src/stories/ReactEmbed.stories.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/streamich/react-embed/HEAD/yarn.lock --------------------------------------------------------------------------------