Skip to content

peacoders/frontend-ng-assignment

Repository files navigation

ImpactechFeTestSolution

This project was generated with Angular CLI version 9.1.1.

Development server

Run ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.

Code scaffolding

Run ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.

Mock API

The mock API module provides an HTTP interceptor that intercepts specific API calls. It can be used by imporint the ApiModule into the AppModule of the application. The below API calls will be intercepted:

GET:
https://localhost:42000/notifications
Expects: Query Parameter username
Returns: Table of user notifications any[]

POST:
https://localhost:42000/login
Expects: Object {usename:string, password:string}
Returns: Object {isAuthenticated: boolean, userDetails: any}

POST:
https://localhost:42000/register
Expects: Object {usename:string, password:string, ...} The object can include any field you seem necessary. It should at leaset contain a username field.
Returns: Object {status: string, message: string}

POST:
https://localhost:42000/sendNotification
Expects: Object {recepient:string, notification:any}
Returns: Object {status: string, message: string}

The mock API uses the browser local host to store the provided data. The above APIs should suffice for the implementation of the basic functionality of this excersise. You can extend the API as needed to implement different more advanced functionality.

Build

Run ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.

Running unit tests

Run ng test to execute the unit tests via Karma.

Running end-to-end tests

Run ng e2e to execute the end-to-end tests via Protractor.

Further help

To get more help on the Angular CLI use ng help or go check out the Angular CLI README.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published