├── .babelrc ├── .codeclimate.yml ├── .eslintrc.json ├── .flowconfig ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── flow-typed └── npm │ ├── activestorage_vx.x.x.js │ ├── jest_v23.x.x.js │ └── react-test-renderer_v16.x.x.js ├── package.json ├── rollup.config.js ├── src ├── DirectUploadProvider.js ├── DirectUploadProvider.test.js ├── Upload.js ├── Upload.test.js ├── __snapshots__ │ ├── DirectUploadProvider.test.js.snap │ └── index.test.js.snap ├── csrfHeader.js ├── csrfHeader.test.js ├── helpers.js ├── helpers.test.js ├── index.js ├── index.test.js └── types.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/.babelrc -------------------------------------------------------------------------------- /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .* 2 | rollup.config.* 3 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/README.md -------------------------------------------------------------------------------- /flow-typed/npm/activestorage_vx.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/flow-typed/npm/activestorage_vx.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/jest_v23.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/flow-typed/npm/jest_v23.x.x.js -------------------------------------------------------------------------------- /flow-typed/npm/react-test-renderer_v16.x.x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/flow-typed/npm/react-test-renderer_v16.x.x.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/DirectUploadProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/DirectUploadProvider.js -------------------------------------------------------------------------------- /src/DirectUploadProvider.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/DirectUploadProvider.test.js -------------------------------------------------------------------------------- /src/Upload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/Upload.js -------------------------------------------------------------------------------- /src/Upload.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/Upload.test.js -------------------------------------------------------------------------------- /src/__snapshots__/DirectUploadProvider.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/__snapshots__/DirectUploadProvider.test.js.snap -------------------------------------------------------------------------------- /src/__snapshots__/index.test.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/__snapshots__/index.test.js.snap -------------------------------------------------------------------------------- /src/csrfHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/csrfHeader.js -------------------------------------------------------------------------------- /src/csrfHeader.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/csrfHeader.test.js -------------------------------------------------------------------------------- /src/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/helpers.js -------------------------------------------------------------------------------- /src/helpers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/helpers.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/src/types.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cbothner/react-activestorage-provider/HEAD/yarn.lock --------------------------------------------------------------------------------