In this article, we will create a reusable grid component for Blazor called BlazorGrid
. It will display the user data in a grid and supports client-side pagination.
Take a look at the final application.
To learn how to publish BlazorGrid component to nuget gallery refer to Publishing a Blazor Component to Nuget Gallery
(https://sksing.blogspot.com/2021/01/publishing-blazor-component-to-nuget.html)
Prerequisites
- Install the .NET Core 2.1 or above SDK from here
- Install latest version of Visual Studio 2017 from here
- Install ASP.NET Core Blazor Language Services extension from here
- Install Blazor templates on the command-line using the following command :
Creating Blazor Library project
To create a Blazor library project follow the steps mentioned below:
- Navigate to the folder where you want to create your project.
- Open command prompt or Windows PowerShell as administrator.
- Run the following command:
It will create a Blazor library project with the name BlazorGridComponent
.
Open this project using Visual Studio. You will see a folder structure as shown in the image below:
There are some predefined files provided in this project. We will delete Component1.cshtml, ExampleJsInterop.cs, exampleJsInterop.js and background.png files to make our solution clean. Do not delete styles.css as we will put the CSS definitions for our custom component in this file.
Creating BlazorGrid component
Now we will add the component view page to our project.
Right click on BlazorGridComponent
project and then select Add >> New Item. An “Add New Item” dialog box will open, select “Web” from the left panel, then select “Razor View” from templates panel and name it BlazorGrid.cshtml
. Click Add. Refer to the image below.
Open BlazorGrid.cshtml
file and put the following code into it.
Let’s understand this code.
In the HTML section of the code, we have defined a table. The <thead>
section of the table will display the header of the grid as defined in GridHeader parameter. Similarly, the <tbody> section will iterate through the content of GridRow parameter to display the data in rows.
We have also defined the HTML of pagination section. It contains Next and Prev buttons to move through the pages. We have also defined the buttons to navigate to next set of pages. The default pager size is set to five. This means the page buttons will be displayed in a set of five buttons.
In the functions section, we have defined four parameters for BlazorGrid component:
- Items: The list of items supplied to the BlazorGrid.
- PageSize: Size of each page of BlazorGrid.
- GridHeader: Header for BlazorGrid.
- GridRow: Rows for BlazorGrid.
Inside OnInitAsync
method, we are initializing the pagerSize to five and setting the curPage to one. We will calculate the total number of page and bind the data to the first page of grid.
The updateList
method will be invoked when we click on a page button. It will bind the data to the current page of grid.
The SetPagerSize
method will set the page number in every pager set. The page buttons will be displayed in a set of five buttons and if the number of pages is more than five, the page button will be displayed in next pager set. This method will accept string parameter and based on the value it will set the page buttons for next or previous set of five buttons. A demo of pager set is shown below:
The NavigateToPage
method will be invoked on clicking Next or Prev button. It will navigate the user to immediate next or immediate previous page in the grid.
Adding CSS for BlazorGrid component
Open /content/styles.css
file and put the following code into it:
In this file, we have defined styling for BlazorGrid component.
Now we will use this component in a Blazor project.
Create Blazor Web Application
Open Visual Studio and select File >> New >> Project.
After selecting the project, a “New Project” dialog will open. Select .NET Core inside Visual C# menu from the left panel. Then, select “ASP.NET Core Web Application” from available project types. Put the name of the project as TestApplication
and press OK.
After clicking on OK, a new dialog will open asking you to select the project template. You can observe two drop-down menus at the top left of the template window. Select “.NET Core” and “ASP.NET Core 2.1” from these dropdowns. Then, select “Blazor” template and press OK. Refer to the image below:
Adding the BlazorGrid component to the Blazor project
To include the BlazorGridComponent project in this Blazor project, follow the steps mentioned below:
- Right-click on the solution and select Add >> Existing item.
- Browse to the BlazorGridComponent library, select the
BlazorGridComponent.csproj
file, and click Add.
This will include the BlazorGridComponent project in current solution. Refer to the image below:
The next step is to add the reference to shared component. Right-click “TestApplication\Dependencies”. Select Add Reference...
Then, select BlazorGridComponent
project and click OK. Refer to the image below:
The final step is to add the following line to TestApplication\ _ViewImports.cshtml
file.
This will allow us to use the shared BlazorGridComponent in our TestApplication project.
Using BlazorGrid component
Open TestApplication\Pages\FetchData.cshtml
file. In the HTML section of the code put the following lines inside the else section.
The name of HTML tag will be same as the file name of our component, which is <BlazorGrid>
in this case. We are setting the value of Items parameter to forcasts. We have set the PageSize to 4 which means the grid will display four items in each page. The headers for the Grid are defined in <GridHeader>
.
Inside the <GridRow>
we have declared the row items for our grid using the implicit parameter “context”. The Blazor framework provides this and we need to use it to initialize the arguments of type RenderFragment<T>
, which is GridRow in this case.
Execution Demo
Run the application and navigate to the Fetch data page. You will see the data is being displayed in a Grid fashion as shown in the image below:
Conclusion
We have created a shared Blazor component – BlazorGrid
. It displays the user data in a grid. This component also provide client-side pagination. We learned how to reference and use the shared component in a Blazor application.
No comments:
Post a Comment