├── .gitignore ├── angular.json ├── browserslist ├── capacitor.config.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.json ├── karma.conf.js ├── package.json ├── readme.md ├── src ├── app │ ├── album │ │ ├── album-routing.module.ts │ │ ├── album.module.ts │ │ ├── album.page.html │ │ ├── album.page.scss │ │ ├── album.page.spec.ts │ │ └── album.page.ts │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ ├── directives │ │ ├── image-fade.directive.spec.ts │ │ ├── image-fade.directive.ts │ │ └── shared-directives.module.ts │ ├── explore-container │ │ ├── explore-container.component.html │ │ ├── explore-container.component.scss │ │ ├── explore-container.component.spec.ts │ │ ├── explore-container.component.ts │ │ └── explore-container.module.ts │ ├── tab1 │ │ ├── tab1-routing.module.ts │ │ ├── tab1.module.ts │ │ ├── tab1.page.html │ │ ├── tab1.page.scss │ │ ├── tab1.page.spec.ts │ │ └── tab1.page.ts │ ├── tab2 │ │ ├── tab2-routing.module.ts │ │ ├── tab2.module.ts │ │ ├── tab2.page.html │ │ ├── tab2.page.scss │ │ ├── tab2.page.spec.ts │ │ └── tab2.page.ts │ ├── tab3 │ │ ├── tab3-routing.module.ts │ │ ├── tab3.module.ts │ │ ├── tab3.page.html │ │ ├── tab3.page.scss │ │ ├── tab3.page.spec.ts │ │ └── tab3.page.ts │ └── tabs │ │ ├── tabs-routing.module.ts │ │ ├── tabs.module.ts │ │ ├── tabs.page.html │ │ ├── tabs.page.scss │ │ ├── tabs.page.spec.ts │ │ └── tabs.page.ts ├── assets │ ├── fonts │ │ ├── spotify-bold.ttf │ │ ├── spotify-light.ttf │ │ └── spotify-regular.ttf │ ├── icon │ │ └── favicon.png │ ├── images │ │ ├── albums │ │ │ ├── blank-face-lp.jpg │ │ │ ├── born-to-die.jpg │ │ │ ├── come-around-sundown.jpg │ │ │ ├── dear-miss-lonelyhearts.jpg │ │ │ ├── ex-re.jpg │ │ │ ├── extra-machine.jpg │ │ │ ├── houses-of-the-holy.jpg │ │ │ ├── illuminate.jpg │ │ │ ├── sea-of-cowards.jpg │ │ │ ├── stadium-arcadium.jpg │ │ │ ├── swimming.jpg │ │ │ ├── the-creek-drank.jpg │ │ │ ├── the-legend-of-mr-rager.jpg │ │ │ ├── the-lonesome-crowded-west.jpg │ │ │ ├── when-we-all-fall-asleep.jpg │ │ │ └── wish-you-were-here.jpg │ │ └── user.png │ ├── mockdata │ │ ├── albums │ │ │ ├── bornToDie.json │ │ │ ├── comeAroundSundown.json │ │ │ ├── exRe.json │ │ │ ├── extraordinaryMachine.json │ │ │ ├── index.js │ │ │ ├── manOnTheMoon2.json │ │ │ ├── seaOfCowards.json │ │ │ ├── swimming.json │ │ │ ├── whenWeAllFallAsleep.json │ │ │ └── wishYouWereHere.json │ │ ├── heavyRotation.json │ │ ├── jumpBackIn.json │ │ ├── menuMoreOptions.json │ │ ├── menuYourLibrary.json │ │ ├── recentlyPlayed.json │ │ ├── searchBrowseAll.json │ │ └── searchTopGenres.json │ └── shapes.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/angular.json -------------------------------------------------------------------------------- /browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/browserslist -------------------------------------------------------------------------------- /capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/capacitor.config.json -------------------------------------------------------------------------------- /e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/e2e/protractor.conf.js -------------------------------------------------------------------------------- /e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/e2e/src/app.po.ts -------------------------------------------------------------------------------- /e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/e2e/tsconfig.json -------------------------------------------------------------------------------- /ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/ionic.config.json -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/readme.md -------------------------------------------------------------------------------- /src/app/album/album-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/album/album-routing.module.ts -------------------------------------------------------------------------------- /src/app/album/album.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/album/album.module.ts -------------------------------------------------------------------------------- /src/app/album/album.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/album/album.page.html -------------------------------------------------------------------------------- /src/app/album/album.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/album/album.page.scss -------------------------------------------------------------------------------- /src/app/album/album.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/album/album.page.spec.ts -------------------------------------------------------------------------------- /src/app/album/album.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/album/album.page.ts -------------------------------------------------------------------------------- /src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/app.component.html -------------------------------------------------------------------------------- /src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/app.component.ts -------------------------------------------------------------------------------- /src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/app.module.ts -------------------------------------------------------------------------------- /src/app/directives/image-fade.directive.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/directives/image-fade.directive.spec.ts -------------------------------------------------------------------------------- /src/app/directives/image-fade.directive.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/directives/image-fade.directive.ts -------------------------------------------------------------------------------- /src/app/directives/shared-directives.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/directives/shared-directives.module.ts -------------------------------------------------------------------------------- /src/app/explore-container/explore-container.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/explore-container/explore-container.component.html -------------------------------------------------------------------------------- /src/app/explore-container/explore-container.component.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/explore-container/explore-container.component.scss -------------------------------------------------------------------------------- /src/app/explore-container/explore-container.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/explore-container/explore-container.component.spec.ts -------------------------------------------------------------------------------- /src/app/explore-container/explore-container.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/explore-container/explore-container.component.ts -------------------------------------------------------------------------------- /src/app/explore-container/explore-container.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/explore-container/explore-container.module.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab1/tab1-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab1/tab1.module.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab1/tab1.page.html -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab1/tab1.page.scss -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab1/tab1.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab1/tab1.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab1/tab1.page.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab2/tab2-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab2/tab2.module.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab2/tab2.page.html -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab2/tab2.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab2/tab2.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab2/tab2.page.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab3/tab3-routing.module.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab3/tab3.module.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab3/tab3.page.html -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab3/tab3.page.spec.ts -------------------------------------------------------------------------------- /src/app/tab3/tab3.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tab3/tab3.page.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tabs/tabs-routing.module.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tabs/tabs.module.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tabs/tabs.page.html -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tabs/tabs.page.scss -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tabs/tabs.page.spec.ts -------------------------------------------------------------------------------- /src/app/tabs/tabs.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/app/tabs/tabs.page.ts -------------------------------------------------------------------------------- /src/assets/fonts/spotify-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/fonts/spotify-bold.ttf -------------------------------------------------------------------------------- /src/assets/fonts/spotify-light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/fonts/spotify-light.ttf -------------------------------------------------------------------------------- /src/assets/fonts/spotify-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/fonts/spotify-regular.ttf -------------------------------------------------------------------------------- /src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /src/assets/images/albums/blank-face-lp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/blank-face-lp.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/born-to-die.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/born-to-die.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/come-around-sundown.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/come-around-sundown.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/dear-miss-lonelyhearts.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/dear-miss-lonelyhearts.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/ex-re.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/ex-re.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/extra-machine.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/extra-machine.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/houses-of-the-holy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/houses-of-the-holy.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/illuminate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/illuminate.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/sea-of-cowards.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/sea-of-cowards.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/stadium-arcadium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/stadium-arcadium.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/swimming.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/swimming.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/the-creek-drank.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/the-creek-drank.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/the-legend-of-mr-rager.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/the-legend-of-mr-rager.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/the-lonesome-crowded-west.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/the-lonesome-crowded-west.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/when-we-all-fall-asleep.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/when-we-all-fall-asleep.jpg -------------------------------------------------------------------------------- /src/assets/images/albums/wish-you-were-here.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/albums/wish-you-were-here.jpg -------------------------------------------------------------------------------- /src/assets/images/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/images/user.png -------------------------------------------------------------------------------- /src/assets/mockdata/albums/bornToDie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/bornToDie.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/comeAroundSundown.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/comeAroundSundown.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/exRe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/exRe.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/extraordinaryMachine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/extraordinaryMachine.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/index.js -------------------------------------------------------------------------------- /src/assets/mockdata/albums/manOnTheMoon2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/manOnTheMoon2.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/seaOfCowards.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/seaOfCowards.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/swimming.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/swimming.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/whenWeAllFallAsleep.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/whenWeAllFallAsleep.json -------------------------------------------------------------------------------- /src/assets/mockdata/albums/wishYouWereHere.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/albums/wishYouWereHere.json -------------------------------------------------------------------------------- /src/assets/mockdata/heavyRotation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/heavyRotation.json -------------------------------------------------------------------------------- /src/assets/mockdata/jumpBackIn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/jumpBackIn.json -------------------------------------------------------------------------------- /src/assets/mockdata/menuMoreOptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/menuMoreOptions.json -------------------------------------------------------------------------------- /src/assets/mockdata/menuYourLibrary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/menuYourLibrary.json -------------------------------------------------------------------------------- /src/assets/mockdata/recentlyPlayed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/recentlyPlayed.json -------------------------------------------------------------------------------- /src/assets/mockdata/searchBrowseAll.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/searchBrowseAll.json -------------------------------------------------------------------------------- /src/assets/mockdata/searchTopGenres.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/mockdata/searchTopGenres.json -------------------------------------------------------------------------------- /src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/assets/shapes.svg -------------------------------------------------------------------------------- /src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/environments/environment.ts -------------------------------------------------------------------------------- /src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/global.scss -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/polyfills.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/theme/variables.scss -------------------------------------------------------------------------------- /src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/src/zone-flags.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/tsconfig.spec.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saimon24/ionic-spotify-ui/HEAD/tslint.json --------------------------------------------------------------------------------