Web Application Development Tutorial - Part 9: Authors: User Interface
About This Tutorial
In this tutorial series, you will build an ABP based web application named Acme.BookStore
. This application is used to manage a list of books and their authors. It is developed using the following technologies:
- MongoDB as the database provider.
- Blazor WebAssembly as the UI Framework.
This tutorial is organized as the following parts;
- Part 1: Creating the server side
- Part 2: The book list page
- Part 3: Creating, updating and deleting books
- Part 4: Integration tests
- Part 5: Authorization
- Part 6: Authors: Domain layer
- Part 7: Authors: Database Integration
- Part 8: Authors: Application Layer
- Part 9: Authors: User Interface (this part)
- Part 10: Book to Author Relation
Download the Source Code
This tutorial has multiple versions based on your UI and Database preferences. We've prepared a few combinations of the source code to be downloaded:
Introduction
This part explains how to create a CRUD page for the Author
entity introduced in the previous parts.
The Author Management Page
Authors Razor Component
Create a new Razor Component Page, /Pages/Authors.razor
, in the Acme.BookStore.Blazor
project with the following content:
- This code is similar to the
Books.razor
, except it doesn't inherit from theBlazorisePageBase
, but uses its own implementation. - Injects the
IAuthorAppService
to consume the server side HTTP APIs from the UI. We can directly inject application service interfaces and use just like regular method calls by the help of Dynamic C# HTTP API Client Proxy System, which performs REST API calls for us. See theAuthors
class below to see the usage. - Injects the
IAuthorizationService
to check permissions. - Injects the
IObjectMapper
for object to object mapping.
Create a new code behind file, Authors.razor.cs
, under the Pages
folder, with the following content:
This class typically defines the properties and methods used by the Authors.razor
page.
Object Mapping
Authors
class uses the IObjectMapper
in the OpenEditAuthorModal
method. So, we need to define this mapping.
Open the BookStoreBlazorAutoMapperProfile.cs
in the Acme.BookStore.Blazor
project and add the following mapping code in the constructor:
You will need to declare a using Acme.BookStore.Authors;
statement to the beginning of the file.
Add to the Main Menu
Open the BookStoreMenuContributor.cs
in the Acme.BookStore.Blazor
project and add the following code to the end of the ConfigureMainMenuAsync
method:
Localizations
We should complete the localizations we've used above. 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. If you don't see the Authors menu item under the Book Store menu, that means you don't have the 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 the 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.
The Next Part
See the next part of this tutorial.