Subscribe

Creating a movie fetching service in Angular

✍️

How to create a service in Angular that will call a movie API?

17 Oct, 2020 · 4 min read

We have been exploring Angular for a couple of days now, and let’s make it awesome by getting some data from an API.

We will be learning how to do API calls and make a custom service to do all these calls.

The result will look like this.

Movie search app in Angular

Making use of the HttpClient module

To make any request, we will be using the HttpClient module. We will be loading this module in our app.module.ts so the whole application can leverage it.

Let’s start by defining the import at the top of our file.

import { HttpClientModule } from '@angular/common/http';

Then we can place the actual import after the BrowserModule.

@NgModule({
  declarations: [
    // All declarations
  ],
  imports: [
    BrowserModule,
    HttpClientModule,
    // Other imports
  ],
  providers: [],
  bootstrap: [AppComponent]
})

Creating our service

Now we can create a service to talk to our API.

Open your favorite terminal and run the following command in your project folder.

Let’s first make our movie model so Typescript can leverage this.

ng generate class movie

Open the movie.ts file in your editor and make it as such:

export class Movie {
  Poster: string;
  Title: string;
  Type: string;
  Year: string;
  imdbID: string;
}

Now let’s generate the service.

ng generate service movie

This will create a movie.service.ts file.

Open this file in your editor of choice, and let’s start by defining some basics.

import { HttpClient } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { Movie } from './movie';

export type ApiResponse = {
  Response: string;
  Search: Movie[];
  totalResults: string;
};

@Injectable({
  providedIn: 'root'
})
export class MovieService {
  apiURL: string = 'http://www.omdbapi.com/?apikey={key}';

  constructor(private httpClient: HttpClient) {}
}

We will use OMDBapi to get some movies. You can still get a free APIKey on their website.

We will just place this URL in the file for this example. In a real-world example, use an env file for the key or a constant file for storing URLs.

Now we can create our method. It will be a search method where we will search for a specific movie.

searchMovie(name: string) {
  return this.httpClient.get<any>(`${this.apiURL}&s=${name}`);
}

Calling our service

Now we, of course, want to call our service and show the movies we get.

Open the welcome.component.ts file and load our service in the import.

import { MovieService } from '../movie.service';

We must inject it into the component but add it to the constructor.

constructor(private movieService: MovieService) { }

Let’s also define our movies variable to be an array of our Movies class.

movies: Movie[];

On the ngOnInit we will call our service and ask it for Batman movies.

ngOnInit(): void {
  this.movieService.searchMovie('Batman').subscribe(result => {
    this.movies = result.Search;
  });
}

We call the service and subscribe to the result. In turn, we set the movie variable to be the result.Search value.

Now let’s adjust our HTML file to reflect our movies.

<div class="grid grid-cols-5">
  <div
    class="max-w-sm overflow-hidden rounded shadow-lg"
    *ngFor="let movie of movies"
  >
    <img class="w-full" [src]="movie.Poster" [alt]="movie.Title" />
    <div class="px-6 py-4">
      <div class="mb-2 text-xl font-bold">{{ movie.Title }}</div>
    </div>
  </div>
</div>

There we go. We now have our initial movie search app!

Up to you

Now it’s up to you to get this code and make an input field where we can search for a specific movie.

And even click on a poster to see more information about this movie.

Let me know on Twitter what you created with this!

You can find my part of this project on GitHub.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

Angular dynamic classes using ngClass

31 Mar, 2021 · 2 min read

Angular dynamic classes using ngClass

Angular dynamically change form validators

30 Mar, 2021 · 3 min read

Angular dynamically change form validators

Join 2099 devs and subscribe to my newsletter