├── .editorconfig ├── .gitignore ├── LICENSE ├── README.md ├── angular.json ├── browserslist ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.e2e.json ├── example.png ├── package.json ├── spotify.json ├── src ├── app │ ├── api │ │ ├── api-configuration.ts │ │ ├── api.module.ts │ │ ├── base-service.ts │ │ ├── models.ts │ │ ├── models │ │ │ ├── album-simple-page.ts │ │ │ ├── album-simple.ts │ │ │ ├── album.ts │ │ │ ├── artist-simple.ts │ │ │ ├── artist.ts │ │ │ ├── category-page.ts │ │ │ ├── category.ts │ │ │ ├── current-user-profile.ts │ │ │ ├── featured-playlists.ts │ │ │ ├── followers.ts │ │ │ ├── image.ts │ │ │ ├── playlist-simple-page.ts │ │ │ ├── playlist-simple.ts │ │ │ ├── playlist-snapshot.ts │ │ │ ├── playlist-track-page.ts │ │ │ ├── playlist-track.ts │ │ │ ├── playlist.ts │ │ │ ├── saved-track-page.ts │ │ │ ├── saved-track.ts │ │ │ ├── search.ts │ │ │ ├── track-simple-page.ts │ │ │ ├── track-simple.ts │ │ │ ├── track.ts │ │ │ ├── user-followed.ts │ │ │ └── user-profile.ts │ │ ├── services.ts │ │ ├── services │ │ │ └── api.service.ts │ │ └── strict-http-response.ts │ ├── apiInterceptor.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ └── app.module.ts ├── assets │ ├── .gitkeep │ └── mapify.png ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── favicon.ico ├── index.html ├── karma.conf.js ├── main.ts ├── polyfills.ts ├── styles.scss ├── test.ts ├── tsconfig.app.json ├── tsconfig.spec.json └── tslint.json ├── tsconfig.json ├── tslint.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/README.md -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/browserslist -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/example.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/package.json -------------------------------------------------------------------------------- /spotify.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/spotify.json -------------------------------------------------------------------------------- /src/app/api/api-configuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/api-configuration.ts -------------------------------------------------------------------------------- /src/app/api/api.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/api.module.ts -------------------------------------------------------------------------------- /src/app/api/base-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/base-service.ts -------------------------------------------------------------------------------- /src/app/api/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models.ts -------------------------------------------------------------------------------- /src/app/api/models/album-simple-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/album-simple-page.ts -------------------------------------------------------------------------------- /src/app/api/models/album-simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/album-simple.ts -------------------------------------------------------------------------------- /src/app/api/models/album.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/album.ts -------------------------------------------------------------------------------- /src/app/api/models/artist-simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/artist-simple.ts -------------------------------------------------------------------------------- /src/app/api/models/artist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/artist.ts -------------------------------------------------------------------------------- /src/app/api/models/category-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/category-page.ts -------------------------------------------------------------------------------- /src/app/api/models/category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/category.ts -------------------------------------------------------------------------------- /src/app/api/models/current-user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/current-user-profile.ts -------------------------------------------------------------------------------- /src/app/api/models/featured-playlists.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/featured-playlists.ts -------------------------------------------------------------------------------- /src/app/api/models/followers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/followers.ts -------------------------------------------------------------------------------- /src/app/api/models/image.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/image.ts -------------------------------------------------------------------------------- /src/app/api/models/playlist-simple-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/playlist-simple-page.ts -------------------------------------------------------------------------------- /src/app/api/models/playlist-simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/playlist-simple.ts -------------------------------------------------------------------------------- /src/app/api/models/playlist-snapshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/playlist-snapshot.ts -------------------------------------------------------------------------------- /src/app/api/models/playlist-track-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/playlist-track-page.ts -------------------------------------------------------------------------------- /src/app/api/models/playlist-track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/playlist-track.ts -------------------------------------------------------------------------------- /src/app/api/models/playlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/playlist.ts -------------------------------------------------------------------------------- /src/app/api/models/saved-track-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/saved-track-page.ts -------------------------------------------------------------------------------- /src/app/api/models/saved-track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/saved-track.ts -------------------------------------------------------------------------------- /src/app/api/models/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/search.ts -------------------------------------------------------------------------------- /src/app/api/models/track-simple-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/track-simple-page.ts -------------------------------------------------------------------------------- /src/app/api/models/track-simple.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/track-simple.ts -------------------------------------------------------------------------------- /src/app/api/models/track.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/track.ts -------------------------------------------------------------------------------- /src/app/api/models/user-followed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/user-followed.ts -------------------------------------------------------------------------------- /src/app/api/models/user-profile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/models/user-profile.ts -------------------------------------------------------------------------------- /src/app/api/services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/services.ts -------------------------------------------------------------------------------- /src/app/api/services/api.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/services/api.service.ts -------------------------------------------------------------------------------- /src/app/api/strict-http-response.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/api/strict-http-response.ts -------------------------------------------------------------------------------- /src/app/apiInterceptor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/apiInterceptor.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/app.component.scss -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/assets/mapify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/assets/mapify.png -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/favicon.ico -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/index.html -------------------------------------------------------------------------------- /src/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/karma.conf.js -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/styles.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/styles.scss -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/tsconfig.app.json -------------------------------------------------------------------------------- /src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/tsconfig.spec.json -------------------------------------------------------------------------------- /src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/src/tslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jakejdavis/mapify/HEAD/yarn.lock --------------------------------------------------------------------------------