Wanna see something cool? Check out Angular Spotify 🎧

A simple Spotify client built with Angular 11, Nx workspace, ngrx, TailwindCSS and ng-zorro

Working application

Check out the live application -> https://spotify.trungk18.com

Spotify premium is required for the Web Playback SDK to play music. If you are using a free account, you can still browse the app, but it couldn’t play the music. Sorry about that 🀣

Angular Spotify Demo

Angular Spotify Visualizer

Angular Spotify Browse

Angular Spotify Blurry Background

Angular Spotify Web Player

Support

If you like my work, feel free to:

  • ⭐ this repository. And we will be happy together :)
  • Tweet about Angular Spotify
  • Get me a coffee β˜•οΈ

Thanks a bunch for stopping by and supporting me!

Who is it for πŸ€·β€β™€οΈ

I still remember Window Media Player on windows has the visualization when you start to play the music, and I wanted to have the same experience when listening to Spotify. That is the reason I started this project.

I found that there weren’t many resources on building a proper real-world scale application, and that’s my focus for sharing. I made a Jira clone application as the first one for that purpose. Nx workspace is getting more and more attention from the Angular community, but people are always confused about how to architect and set up a Nx project. I hope Angular Spotify will give you more insight on that despite the fact that it is my first project using Nx 🀣


You know I am one of the moderators of Angular Vietnam. Recently, I also started Angular Singapore. This piece of work is my another long-term plan to bring Angular knowledge to more people. I desire to advocate and grow the Angular developer community in Singapore and Vietnam :)

Tech stack

Tech logos

I experimented with the ngrx/component store for AuthStore and UIStore. It might not be a best practice and I will refactor it very soon. Just FYI 🀣

High-level design

See my original notes on Nx workspace structure for NestJS and Angular

Principles

All components are following:

  • OnPush Change Detection and async pipes: all components use observable and async pipe for rendering data without any single manual subscribe. Only some places are calling subscribe for dispatching an action, which I will have a refactor live stream session with my friend @nartc to use the component store for a fully subscribe-less application.
  • SCAMs (single component Angular modules) for tree-shakable components, meaning each component will have a respective module. For example, a RegisterComponent will have a corresponding RegisterModule. We won’t declare RegisterComponent as part of AuthModule, for instance.
  • Mostly, everything will stay in the libs folder. New modules, new models, new configurations, new components etc… are in libs. libs should be separated into different directories based on existing apps. We won’t put them inside the apps folder. For example in an Angular, contains the main.ts, app.component.ts and app.module.ts

Structure

I followed the structure recommended by my friend @nartc. Below is the simplified version of the application structure.

.
└── root
    β”œβ”€β”€ apps
    β”‚   └── angular-spotify
    └── libs
        └── web (dir)
            β”œβ”€β”€ shell (dir)
            β”‚   β”œβ”€β”€ feature (angular:lib) - for configure any forRoot modules
            β”‚   └── ui
            β”‚       └── layout (angular:lib)
            β”œβ”€β”€ playlist (dir)
            β”‚   β”œβ”€β”€ data-access (angular:lib, service, state management)
            β”‚   β”œβ”€β”€ features
            β”‚   β”‚   β”œβ”€β”€ list (angular:lib PlaylistsComponent)
            β”‚   β”‚   └── detail (angular:lib PlaylistDetailComopnent)
            β”‚   └── ui (dir)
            β”‚       └── playlist-track (angular:lib, SCAM for Component)
            β”œβ”€β”€ visualizer (dir)
            β”‚   β”œβ”€β”€ data-access (angular:lib)
            β”‚   └── feature
            β”œβ”€β”€ home (dir)
            β”‚   β”œβ”€β”€ data-access (angular:lib)
            β”‚   β”œβ”€β”€ feature (angular:lib)
            β”‚   └── ui (dir)
            β”‚       β”œβ”€β”€ featured-playlists (angular:lib, SCAM for Component)
            β”‚       β”œβ”€β”€ greeting (angular:lib, SCAM for Component)
            β”‚       └── recent-played (angular:lib, SCAM for Component)
            └── shared (dir)
                β”œβ”€β”€ app-config (injection token for environment)
                β”œβ”€β”€ data-access (angular:lib, API call, Service or State management to share across the Client app)
                β”œβ”€β”€ ui (dir)
                β”œβ”€β”€ pipes (dir)
                β”œβ”€β”€ directives (dir)
                └── utils (angular:lib, usually shared Guards, Interceptors, Validators...)

Authentication Flow

I follow Implicit Grant Flow that Spotify recommended for client-side only application and does not involve secret keys. The access tokens that are issued are short-lived, and there are no refresh tokens to extend them when they expire.

View the Spotify Authorization Guide

  • Upon opening Angular Spotify, It will redirect you to Spotify to get access to your data. Angular Spotify only uses the data purely for displaying on the UI. We won’t store your information anywhere else.
  • Angular Spotify only keeps the access token in the browser memory without even storing it into browser local storage. If you do a hard refresh on the browser, It will ask for a new access token from Spotify. One access token is only valid for one hour.
  • After having the token, I’ll try to connect to the Web Playback SDK with a new player - Angular Spotify Web Player

Angular Spotify Web Playback SDK flow

Dependency Graph

Nx provides an dependency graph out of the box. To view it on your browser, clone my repository and run:

npm run dep-graph

A simplified graph looks like the following. It gives you insightful information for your mono repo and especially helpful when multiple projects are depending on each other.

Angular Spotify Dependency Graph

Nx Computation Cache

Having Nx Cloud configured shorten the deployment time quite a lot.

Nx Cloud pairs with Nx in order to enable you to build and test code more rapidly, by up to 10 times. Even teams that are new to Nx can connect to Nx Cloud and start saving time instantly. Visit Nx Cloud to learn more.

Nx cloud

Features and Roadmap

I set the tentative deadline for motivating myself to finish the work on time. Otherwise, It will take forever to complete :)

1.0 - Simple Spotify client

March 01 - 28, 2021

  • Proven, scalable, and easy to understand structure with Nx workspace
  • Play music using Spotify SDK
  • Load a maximum of 50 save playlists and top 100 songs per playlist.
  • Cool visualization

Live stream

Let work on it together!

I scheduled a few live stream sessions to show you how I continue developing Angular Spotify. Follow my twitter for the latest updates. See the scheduled events.

# Time Description/Link
1 Sat, 3rd April 2021, 10AM Structure your Angular application with Nx workspace
2 Sat, 10th April 2021, 10AM Build the album list page
3 Sat, 17th April 2021, 10AM Build the album detail page
4 Sat, 24th April 2021, 10AM Build the artist detail page
5 Sat, 1st May 2021, 10AM Build the track list page
6 TBD Setup i18n and support new language
7 TBD Config Nx build:affected with Github action

I will also do some refactoring with @nartc for Angular Vietnam Office Hours. More detail is coming soon.

Time spending

It is a side project that I only spent time outside of the office hours to work on. I initially planned to complete the project within two weeks, but the first two weekends were not very productive, maybe because of the holiday mood from Lunar New Year :) But once the lego blocks are getting together, I feel the rhythm, and I know it has to be finished by the end of March.

I couldn’t get the full-time report from waka time because it only shows me the latest two weeks. 🀣

I have spent approximately 50 hours working on this project, which is almost the same amount that I worked on the first version of jira.trungk18.com.

The visualizer was the most exciting feature, and I decided to start this project because of that single component.

Angular Spotify - Time spending

Accessibility β™Ώ

Not all components have properly defined aria attributes, visual focus indicators, etc.

Setting up the development environment πŸ› 

  • git clone https://github.com/trungvose/angular-spotify.git
  • cd angular-spotify
  • npm start for starting Angular web application
  • The app should run on http://localhost:4200/

Unit/Integration tests πŸ§ͺ

I skipped writing test for this project.

Compatibility

Web Playback SDK provided supports for Chrome, Firefox, Edge, IE 11, or above running on Mac/Windows/Linux.

It doesn’t support Safari or any mobile browser on Android or iOS

View completed list of supported browsers

Author: Trung Vo ✍️

  • A seasoned front-end engineer with seven years of passion in creating experience-driven products. I am proficient in Angular, React and TypeScript development.
  • Personal blog: https://trungvose.com/
  • Say hello: trungk18 [et] gmail [dot] com

Contributing

If you have any ideas, just open an issue and tell me what you think.

If you’d like to contribute, please fork the repository and make changes as you’d like. Pull requests are warmly welcome.

Credits and reference

Special thanks to my friend @nartc, who helped me review the code early.

Resource Description
@koel/koel A cool player made by @phanan, I reused the visualizer code from this repo with my additional customization
beeman/component-store-playground A nice example of using Nx with ngrx/component-store, I refer to the project structure from this repo
Start using ngrx/effects for this An excellent write up by Tim Deschryver

License

Feel free to use my code on your project. Please put a reference to this repository.

MIT

Published 7 Apr 2021

Read more

Β β€”Β Nx Workspace structure for an application with NestJS and Angular
Β β€”Β SVG fill color doesn't work with hex colors
Β β€”Β TypeScript unknown vs any types
Β β€”Β Convert Promise to Observable
Β β€”Β Migrate Angular to ESLint

Follow @trungvose on Twitter for more!