├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github └── auto-comment.yml ├── .gitignore ├── .gradle ├── 4.4 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileHashes │ │ └── fileHashes.lock │ └── taskHistory │ │ └── taskHistory.lock └── buildOutputCleanup │ ├── buildOutputCleanup.lock │ └── cache.properties ├── .husky ├── .gitignore └── pre-commit ├── .lintstagedrc.js ├── .prettierrc.json ├── LICENSE ├── README.md ├── angular.json ├── capacitor.config.json ├── e2e ├── app.e2e-spec.ts ├── app.po.ts └── tsconfig.e2e.json ├── json-server └── db.json ├── karma.conf.js ├── package.json ├── protractor.conf.js ├── readme_resources ├── app.gif └── technologies.png ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.css │ ├── app.component.html │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── components │ │ └── genre-carousel │ │ │ ├── genre-carousel.component.css │ │ │ ├── genre-carousel.component.html │ │ │ ├── genre-carousel.component.spec.ts │ │ │ └── genre-carousel.component.ts │ ├── modals │ │ ├── comment-modal │ │ │ ├── comment.modal.html │ │ │ ├── comment.modal.scss │ │ │ └── comment.modal.ts │ │ ├── favorites-movies-modal │ │ │ ├── favorites.movies.modal.html │ │ │ ├── favorites.movies.modal.scss │ │ │ └── favorites.movies.modal.ts │ │ ├── movie-modal │ │ │ ├── movie.modal.html │ │ │ ├── movie.modal.scss │ │ │ └── movie.modal.ts │ │ ├── show-actors-modal │ │ │ ├── show.actors.modal.html │ │ │ ├── show.actors.modal.scss │ │ │ └── show.actors.modal.ts │ │ ├── show-comments-modal │ │ │ ├── show.comments.modal.html │ │ │ ├── show.comments.modal.scss │ │ │ └── show.comments.modal.ts │ │ └── youtube-modal │ │ │ ├── youtube.modal.html │ │ │ ├── youtube.modal.scss │ │ │ └── youtube.modal.ts │ ├── models │ │ ├── custom-event.model.ts │ │ ├── form.model.ts │ │ └── movie.model.ts │ ├── pages │ │ ├── detail │ │ │ ├── detail-routing.module.ts │ │ │ ├── detail.html │ │ │ ├── detail.module.ts │ │ │ ├── detail.scss │ │ │ └── detail.ts │ │ └── home │ │ │ ├── home-routing.module.ts │ │ │ ├── home.html │ │ │ ├── home.module.ts │ │ │ ├── home.scss │ │ │ └── home.ts │ ├── pipes │ │ ├── filter.pipe.spec.ts │ │ └── filter.pipe.ts │ ├── popovers │ │ ├── filter-movie.popover.html │ │ ├── filter-movie.popover.scss │ │ └── filter-movie.popover.ts │ ├── services │ │ ├── form-error-hanlder │ │ │ ├── form-error-handler.service.spec.ts │ │ │ └── form-error-handler.service.ts │ │ ├── izi-toast │ │ │ └── izi-toast.service.ts │ │ ├── loader │ │ │ └── loader.service.ts │ │ ├── movies │ │ │ └── movies-service.ts │ │ ├── search-image │ │ │ └── search-image-service.ts │ │ └── youtube-api │ │ │ └── youtube-api-service.ts │ └── store │ │ ├── actions │ │ ├── movies.actions.impl.ts │ │ └── movies.actions.ts │ │ └── state │ │ └── movies.state.ts ├── assets │ ├── .gitkeep │ ├── avatar.png │ ├── images │ │ └── star-rating.icons.svg │ └── movies-genres │ │ ├── action.png │ │ ├── animation.png │ │ ├── comedy.png │ │ ├── crime.png │ │ ├── documentary.png │ │ ├── drama.png │ │ ├── fantasy.png │ │ ├── film noir.png │ │ ├── horror.png │ │ ├── image1.png │ │ ├── image10.png │ │ ├── image11.png │ │ ├── image12.png │ │ ├── image2.png │ │ ├── image3.png │ │ ├── image4.png │ │ ├── image5.png │ │ ├── image6.png │ │ ├── image7.png │ │ ├── image8.png │ │ ├── image9.png │ │ ├── romance.png │ │ ├── science fiction.png │ │ └── westerns.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── styles.css ├── test.ts ├── theme │ └── variables.scss └── typings.d.ts ├── tsconfig.app.json ├── tsconfig.json └── tsconfig.spec.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/auto-comment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.github/auto-comment.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/4.4/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/4.4/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.gradle/4.4/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/4.4/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.gradle/4.4/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 07 12:26:13 CEST 2018 2 | gradle.version=4.4 3 | -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.lintstagedrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.lintstagedrc.js -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/angular.json -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/e2e/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /json-server/db.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/json-server/db.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/package.json -------------------------------------------------------------------------------- /protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/protractor.conf.js -------------------------------------------------------------------------------- /readme_resources/app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/readme_resources/app.gif -------------------------------------------------------------------------------- /readme_resources/technologies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/readme_resources/technologies.png -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/components/genre-carousel/genre-carousel.component.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/components/genre-carousel/genre-carousel.component.css -------------------------------------------------------------------------------- /src/app/components/genre-carousel/genre-carousel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/components/genre-carousel/genre-carousel.component.html -------------------------------------------------------------------------------- /src/app/components/genre-carousel/genre-carousel.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/components/genre-carousel/genre-carousel.component.spec.ts -------------------------------------------------------------------------------- /src/app/components/genre-carousel/genre-carousel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/components/genre-carousel/genre-carousel.component.ts -------------------------------------------------------------------------------- /src/app/modals/comment-modal/comment.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/comment-modal/comment.modal.html -------------------------------------------------------------------------------- /src/app/modals/comment-modal/comment.modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/comment-modal/comment.modal.scss -------------------------------------------------------------------------------- /src/app/modals/comment-modal/comment.modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/comment-modal/comment.modal.ts -------------------------------------------------------------------------------- /src/app/modals/favorites-movies-modal/favorites.movies.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/favorites-movies-modal/favorites.movies.modal.html -------------------------------------------------------------------------------- /src/app/modals/favorites-movies-modal/favorites.movies.modal.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/modals/favorites-movies-modal/favorites.movies.modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/favorites-movies-modal/favorites.movies.modal.ts -------------------------------------------------------------------------------- /src/app/modals/movie-modal/movie.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/movie-modal/movie.modal.html -------------------------------------------------------------------------------- /src/app/modals/movie-modal/movie.modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/movie-modal/movie.modal.scss -------------------------------------------------------------------------------- /src/app/modals/movie-modal/movie.modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/movie-modal/movie.modal.ts -------------------------------------------------------------------------------- /src/app/modals/show-actors-modal/show.actors.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/show-actors-modal/show.actors.modal.html -------------------------------------------------------------------------------- /src/app/modals/show-actors-modal/show.actors.modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/show-actors-modal/show.actors.modal.scss -------------------------------------------------------------------------------- /src/app/modals/show-actors-modal/show.actors.modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/show-actors-modal/show.actors.modal.ts -------------------------------------------------------------------------------- /src/app/modals/show-comments-modal/show.comments.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/show-comments-modal/show.comments.modal.html -------------------------------------------------------------------------------- /src/app/modals/show-comments-modal/show.comments.modal.scss: -------------------------------------------------------------------------------- 1 | app-comment-modal { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/modals/show-comments-modal/show.comments.modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/show-comments-modal/show.comments.modal.ts -------------------------------------------------------------------------------- /src/app/modals/youtube-modal/youtube.modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/youtube-modal/youtube.modal.html -------------------------------------------------------------------------------- /src/app/modals/youtube-modal/youtube.modal.scss: -------------------------------------------------------------------------------- 1 | app-youtube-modal { 2 | } 3 | -------------------------------------------------------------------------------- /src/app/modals/youtube-modal/youtube.modal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/modals/youtube-modal/youtube.modal.ts -------------------------------------------------------------------------------- /src/app/models/custom-event.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/models/custom-event.model.ts -------------------------------------------------------------------------------- /src/app/models/form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/models/form.model.ts -------------------------------------------------------------------------------- /src/app/models/movie.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/models/movie.model.ts -------------------------------------------------------------------------------- /src/app/pages/detail/detail-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/detail/detail-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/detail/detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/detail/detail.html -------------------------------------------------------------------------------- /src/app/pages/detail/detail.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/detail/detail.module.ts -------------------------------------------------------------------------------- /src/app/pages/detail/detail.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/detail/detail.scss -------------------------------------------------------------------------------- /src/app/pages/detail/detail.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/detail/detail.ts -------------------------------------------------------------------------------- /src/app/pages/home/home-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/home/home-routing.module.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/home/home.html -------------------------------------------------------------------------------- /src/app/pages/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/home/home.module.ts -------------------------------------------------------------------------------- /src/app/pages/home/home.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/home/home.scss -------------------------------------------------------------------------------- /src/app/pages/home/home.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pages/home/home.ts -------------------------------------------------------------------------------- /src/app/pipes/filter.pipe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pipes/filter.pipe.spec.ts -------------------------------------------------------------------------------- /src/app/pipes/filter.pipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/pipes/filter.pipe.ts -------------------------------------------------------------------------------- /src/app/popovers/filter-movie.popover.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/popovers/filter-movie.popover.html -------------------------------------------------------------------------------- /src/app/popovers/filter-movie.popover.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/popovers/filter-movie.popover.scss -------------------------------------------------------------------------------- /src/app/popovers/filter-movie.popover.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/popovers/filter-movie.popover.ts -------------------------------------------------------------------------------- /src/app/services/form-error-hanlder/form-error-handler.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/services/form-error-hanlder/form-error-handler.service.spec.ts -------------------------------------------------------------------------------- /src/app/services/form-error-hanlder/form-error-handler.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/services/form-error-hanlder/form-error-handler.service.ts -------------------------------------------------------------------------------- /src/app/services/izi-toast/izi-toast.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/services/izi-toast/izi-toast.service.ts -------------------------------------------------------------------------------- /src/app/services/loader/loader.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/services/loader/loader.service.ts -------------------------------------------------------------------------------- /src/app/services/movies/movies-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/services/movies/movies-service.ts -------------------------------------------------------------------------------- /src/app/services/search-image/search-image-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/services/search-image/search-image-service.ts -------------------------------------------------------------------------------- /src/app/services/youtube-api/youtube-api-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/services/youtube-api/youtube-api-service.ts -------------------------------------------------------------------------------- /src/app/store/actions/movies.actions.impl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/store/actions/movies.actions.impl.ts -------------------------------------------------------------------------------- /src/app/store/actions/movies.actions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/store/actions/movies.actions.ts -------------------------------------------------------------------------------- /src/app/store/state/movies.state.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/app/store/state/movies.state.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/avatar.png -------------------------------------------------------------------------------- /src/assets/images/star-rating.icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/images/star-rating.icons.svg -------------------------------------------------------------------------------- /src/assets/movies-genres/action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/action.png -------------------------------------------------------------------------------- /src/assets/movies-genres/animation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/animation.png -------------------------------------------------------------------------------- /src/assets/movies-genres/comedy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/comedy.png -------------------------------------------------------------------------------- /src/assets/movies-genres/crime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/crime.png -------------------------------------------------------------------------------- /src/assets/movies-genres/documentary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/documentary.png -------------------------------------------------------------------------------- /src/assets/movies-genres/drama.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/drama.png -------------------------------------------------------------------------------- /src/assets/movies-genres/fantasy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/fantasy.png -------------------------------------------------------------------------------- /src/assets/movies-genres/film noir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/film noir.png -------------------------------------------------------------------------------- /src/assets/movies-genres/horror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/horror.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image1.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image10.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image11.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image12.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image2.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image3.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image4.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image5.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image6.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image7.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image8.png -------------------------------------------------------------------------------- /src/assets/movies-genres/image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/image9.png -------------------------------------------------------------------------------- /src/assets/movies-genres/romance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/romance.png -------------------------------------------------------------------------------- /src/assets/movies-genres/science fiction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/science fiction.png -------------------------------------------------------------------------------- /src/assets/movies-genres/westerns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/assets/movies-genres/westerns.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | API_URL_BASE: 'http://localhost:3000/' 4 | }; 5 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/styles.css -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abritopach/angular-ionic-ngxs-movies/HEAD/tsconfig.spec.json --------------------------------------------------------------------------------