Book Image

Angular Services

Book Image

Angular Services

Overview of this book

A primary concern with modern day applications is that they need to be dynamic, and for that, data access from the server side, data authentication, and security are very important. Angular leverages its services to create such state-of-the-art dynamic applications. This book will help you create and design customized services, integrate them into your applications, import third-party plugins, and make your apps perform better and faster. This book starts with a basic rundown on how you can create your own Angular development environment compatible with v2 and v4. You will then use Bootstrap and Angular UI components to create pages. You will also understand how to use controllers to collect data and populate them into NG UIs. Later, you will then create a rating service to evaluate entries and assign a score to them. Next, you will create "cron jobs" in NG. We will then create a crawler service to find all relevant resources regarding a selected headline and generate reports on it. Finally, you will create a service to manage accuracy and provide feedback about troubled areas in the app created. This book is up to date for the 2.4 release and is compatible with the 4.0 release as well, and it does not have any code based on the beta or release candidates.
Table of Contents (15 chapters)
Angular Services
Credits
About the Author
About the Reviewer
www.PacktPub.com
Customer Feedback
Preface

The evidence service


Let's start by creating an empty service and creating a very basic structure for its functions. Create a new TypeScript file inside the evidence/ folder and add the following contents to it:

// src/app/evidence/evidenc.service.ts 
import {Injectable} from "@angular/core"; 
 
@Injectable() 
export class EvidenceService { 
  private words = [ {key:"w1",value:1}, {key:"w2",value:2} ]; 
  wordCounts(url) { 
    // ToDo: get a url subscribe to its response and call other 
    // functions to count the words and their occurrence in it. 
    // Ideally it will return an array of objects. 
    return words; 
  } 
} 

So the draft version of our service is very simple. It gets a URL which contains the article of our interest and then finds and returns all unique words and number of their instances.

Before implementing these functions, we need to get the URL and find a way to extract useful content out of it. The important question here is how we distinguish between HTML tags and...