Web Application Development Tutorial - Part 9: Authors: User Interface
Introduction
This part explains how to create a CRUD page for the Author
entity introduced in the previous parts.
The Author Management Page
Run the following command line to create a new module, named AuthorModule
in the root folder of the angular application:
This command should produce the following output:
AuthorModule
Open the /src/app/author/author.module.ts
and replace the content as shown below:
- Added the
SharedModule
.SharedModule
exports some common modules needed to create user interfaces. SharedModule
already exports theCommonModule
, so we've removed theCommonModule
.- Added
NgbDatepickerModule
that will be used later on the author create and edit forms.
Menu Definition
Open the src/app/route.provider.ts
file and add the following menu definition:
Open the /src/app/route.provider.ts
and add 'BookStore.Books || BookStore.Authors'
to the /book-store
route. The /book-store
route block should be following:
The final configureRoutes
function declaration should be following:
Service Proxy Generation
ABP CLI provides generate-proxy
command that generates client proxies for your HTTP APIs to make easy to consume your HTTP APIs from the client side. Before running generate-proxy
command, your host must be up and running.
Run the following command in the angular
folder:
This command generates the service proxy for the author service and the related model (DTO) classes:
AuthorComponent
Open the /src/app/author/author.component.ts
file and replace the content as below:
Open the /src/app/author/author.component.html
and replace the content as below:
Localizations
This page uses some localization keys we need to declare. Open the en.json
file under the Localization/BookStore
folder of the Acme.BookStore.Domain.Shared
project and add the following entries:
Run the Application
Run and login to the application. You can not see the menu item since you don't have permission yet. Go to the identity/roles
page, click to the Actions button and select the Permissions action for the admin role:
As you see, the admin role has no Author Management permissions yet. Click to the checkboxes and save the modal to grant the necessary permissions. You will see the Authors menu item under the Book Store in the main menu, after refreshing the page:
That's all! This is a fully working CRUD page, you can create, edit and delete authors.
Tip: If you run the
.DbMigrator
console application after defining a new permission, it automatically grants these new permissions to the admin role and you don't need to manually grant the permissions yourself.