├── .babelrc ├── .editorconfig ├── .eslintrc ├── .gitignore ├── .setup.js ├── .travis.yml ├── Procfile ├── README.md ├── favicon.ico ├── index.html ├── package.json ├── src ├── Api │ └── api.js ├── actions │ └── mediaActions.js ├── common │ └── Header.js ├── components │ ├── HomePage.js │ ├── PhotosPage.js │ └── VideosPage.js ├── constants │ └── actionTypes.js ├── containers │ ├── App.js │ └── MediaGalleryPage.js ├── index.js ├── reducers │ ├── imageReducer.js │ ├── index.js │ ├── initialState.js │ └── videoReducer.js ├── routes.js ├── sagas │ ├── index.js │ ├── mediaSagas.js │ └── watchers.js ├── stores │ └── configureStores.js └── styles │ └── style.css └── test ├── App.test.js ├── Header.test.js ├── HomePage.test.js ├── MediaGalleryPage.test.js ├── PhotoPage.test.js ├── flickr.test.js ├── imageReducers.test.js ├── mediaActions.test.js ├── mediaSagas.test.js ├── sagas.index.test.js ├── store.test.js ├── videoPage.test.js ├── videoReducer.test.js └── watchers.test.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/.gitignore -------------------------------------------------------------------------------- /.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/.setup.js -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/.travis.yml -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm run deploy 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/README.md -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/package.json -------------------------------------------------------------------------------- /src/Api/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/Api/api.js -------------------------------------------------------------------------------- /src/actions/mediaActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/actions/mediaActions.js -------------------------------------------------------------------------------- /src/common/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/common/Header.js -------------------------------------------------------------------------------- /src/components/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/components/HomePage.js -------------------------------------------------------------------------------- /src/components/PhotosPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/components/PhotosPage.js -------------------------------------------------------------------------------- /src/components/VideosPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/components/VideosPage.js -------------------------------------------------------------------------------- /src/constants/actionTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/constants/actionTypes.js -------------------------------------------------------------------------------- /src/containers/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/containers/App.js -------------------------------------------------------------------------------- /src/containers/MediaGalleryPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/containers/MediaGalleryPage.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reducers/imageReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/reducers/imageReducer.js -------------------------------------------------------------------------------- /src/reducers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/reducers/index.js -------------------------------------------------------------------------------- /src/reducers/initialState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/reducers/initialState.js -------------------------------------------------------------------------------- /src/reducers/videoReducer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/reducers/videoReducer.js -------------------------------------------------------------------------------- /src/routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/routes.js -------------------------------------------------------------------------------- /src/sagas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/sagas/index.js -------------------------------------------------------------------------------- /src/sagas/mediaSagas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/sagas/mediaSagas.js -------------------------------------------------------------------------------- /src/sagas/watchers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/sagas/watchers.js -------------------------------------------------------------------------------- /src/stores/configureStores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/stores/configureStores.js -------------------------------------------------------------------------------- /src/styles/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/src/styles/style.css -------------------------------------------------------------------------------- /test/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/App.test.js -------------------------------------------------------------------------------- /test/Header.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/Header.test.js -------------------------------------------------------------------------------- /test/HomePage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/HomePage.test.js -------------------------------------------------------------------------------- /test/MediaGalleryPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/MediaGalleryPage.test.js -------------------------------------------------------------------------------- /test/PhotoPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/PhotoPage.test.js -------------------------------------------------------------------------------- /test/flickr.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/flickr.test.js -------------------------------------------------------------------------------- /test/imageReducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/imageReducers.test.js -------------------------------------------------------------------------------- /test/mediaActions.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/mediaActions.test.js -------------------------------------------------------------------------------- /test/mediaSagas.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/mediaSagas.test.js -------------------------------------------------------------------------------- /test/sagas.index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/sagas.index.test.js -------------------------------------------------------------------------------- /test/store.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/store.test.js -------------------------------------------------------------------------------- /test/videoPage.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/videoPage.test.js -------------------------------------------------------------------------------- /test/videoReducer.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/videoReducer.test.js -------------------------------------------------------------------------------- /test/watchers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scotch-io/react-redux-media-library/HEAD/test/watchers.test.js --------------------------------------------------------------------------------