CCNextGen_Template 1.0.62
See the version list below for details.
dotnet add package CCNextGen_Template --version 1.0.62
NuGet\Install-Package CCNextGen_Template -Version 1.0.62
<PackageReference Include="CCNextGen_Template" Version="1.0.62" />
paket add CCNextGen_Template --version 1.0.62
#r "nuget: CCNextGen_Template, 1.0.62"
// Install CCNextGen_Template as a Cake Addin #addin nuget:?package=CCNextGen_Template&version=1.0.62 // Install CCNextGen_Template as a Cake Tool #tool nuget:?package=CCNextGen_Template&version=1.0.62
CC NextGen Template
Note
Please visit the Source Repository on Github for the most up-to-date documentation.
Installation
- Download the template and link it to your project.
- Add the necessary code to Program.cs to allow the library to run.
- Delete or rename the default _Layout.cshtml file (this is what the template uses and local files override the template)
- Add the configuration items from the section below to your appsettings.json file
- Add additional partials to add items to the sidebar or top menu based on the options in the sections below.
Program.cs
using CCNextGen_Template;
builder.WebHost.UseWebRoot("wwwroot");
builder.WebHost.UseStaticWebAssets();
builder.Services.ConfigureOptions(typeof(UIConfigureOptions));
builder.Services.AddRazorPages(); //if it is not already there
app.MapRazorPages();
Add .AddCustomRazorConfiguration() Extension Methods
Add the .AddCustomRazorConfiguration() method to both the .AddControllerWithViews() and .AddRazorPages() in your startup code. This will allow the partials to render properly.
builder.Services.AddControllersWithViews().AddCustomRazorConfiguration();
builder.Services.AddRazorPages().AddCustomRazorConfiguration();
Appsettings.json
Add the following to appsettings.json
"TemplateConfiguration": {
"AppFullName": "",
"AppShortName": "",
"ThemeColor": "#00072d",
"Favicon": "",
"Logo": ""
}
Key | Meaning | Optional? |
---|---|---|
AppFullName | Full name of application, used for title bar and alt text for logo | No |
AppShortName | Shorter name of application, used under logo | No |
ThemeColor | Used to alter color scheme of some browsers | Yes |
Favicon | Icon used in bookmarks/title bar. Defaults to Chemung County Logo if blank | Yes |
Logo | Logo used in sidebar | Yes |
Template Files
You can create partials with the following names to add content to various areas of the template.
File Name | Renders | Description |
---|---|---|
_Sidebar.cshtml | Left Sidebar | Displays under logo in left sidebar for if the area is not set to "admin" |
_AdminSidebar.cshtml | Left Sidebar | Displays under logo in left sidebar if the area is set to "admin" |
_Topbar.cshtml | Above Main Content | Displays a grey bar above the main content |
Sections
You can add sections to individual pages, or if you want them to appear on multiple pages, add them to _ViewStart.cshtml or _ViewImports.cshtml
SectionName | Description |
---|---|
CustomAdminLogo | Override the Admin Logo block with your own code |
AdminSidebar | Add content to the sidebar (this will appear before the partial when the area is set to "admin" |
CustomLogo | Override the Logo with your own code |
Sidebar | Add content to the sidebar (this will appear before the partial when the area is not set to "admin" |
HeadInject | Add content to the <head></head> section of the layout. |
Scripts | Add content before the closing body (</body>) html tag. |
Helpful Partials
_PageHeader.cshtml
This partial will display the title of the page as well as add a button linking to the "Create" form (or if on an editor page, a link to return to the list view. Success, error, and warning message displays are also generated from this partial.
To set the text in the partial, set the following in your view
ViewData["Title"] = "Page Title"
To hide the button, set the following
ViewData["HideButton"] = true
To add additional buttons, you can create a list of AdditionalLink objects:
ViewData["AdditionalLinks"] = new List<AdditionalLinks> {
new AdditionalLink {
Url = "http://google.com",
Title = "Google",
ClassName = "btn btn-secondary",
IdName = "googleButton",
},
new AdditionalLink {
Area = "Admin",
Controller = "Users",
Action = "Edit",
Data = new Dictionary<string, string> {
{ "id", "3" }
},
Title = "Edit Account",
Icon = "person"
}
}
Field | Description | Required |
---|---|---|
Url | Absolute or Relative url to website or file | no* |
Area | Name of area (if using asp-based routing) | no* |
Controller | Controller name (if using asp-based routing) | no* |
Action | Action Name (if using asp-based routing) | no* |
Data | Dictionary of items added as route-data | no |
Title | Text used for button | yes |
ClassName | Class used when rendering button | no |
IdName | Id used for rendering button | no |
Icon | Icon used for button. Uses Material Icons names | no |
* Either URL or asp-based routing needs to be used for the button
_Pagination.cshtml
Generates pagination links and a drop down to change the number of items displayed on a list page. This partial requires the package:
https://github.com/SitholeWB/Pagination.EntityFrameworkCore.Extensions
Your results need to be of the type Pagination<TModel>
and from your controller, the following ViewData items need to be set:
|ViewData Key | Description |
| --- | --- |
| Search | Search Term (can be blank or null) |
| Page | int, default to 1 |
| PerPage | int, default to 100 |
something along the lines of the following would provide everything the pagination partial needs to function.
public async Task<IActionResult> Index(string? search = "", int page = 1, int perPage = 100)
{
var users = _context.Users.AsQueryable();
if(!String.IsNullOrEmpty(search))
{
users = users.where(x => x.FirstName.Contains(search) || x.LastName.Contains(search));
}
ViewData["Search"] = search;
ViewData["Page"] = page;
ViewData["PerPage"] = perPage;
return View(new Pagination(await user.Skip((page - 1) * perPage)).Take(perPage).ToListAsync(), await user.CountAsync(), page, perPage))
}
Special Sub-Layouts
These layouts extend the base layout for cases where patterns were identified in page layouts.
_Editor.cshtml
A simple page layout for forms. This layout loads the page header partial and the code for select2.
_Index.cshtml
A complex layout that makes rendering list pages simple. This layout displays the page header partial, but also displays a search form (and if the user is searching, it provides a link to "view all results."). The Pagination is disabled at the bottom of this view. When you load this view, all you need to worry about is creating the data table.
The necessary javascript to make the pagination work, and the links for the page header will work automatically.
To uses these pages, open the view you want to use the "sub-layout" on:
e.g., /views/users/index.cshtml
@model Pagination<MyNameSpace.Models.User>
@{
ViewData["Title"] = "Manage Users";
Layout = "SubLayouts/_Index";
}
<table class="table table-striped">
...rest of code...
</table>
Layout Partial Samples
_Sidebar.cshtml
The sidebar makes use of Bootstrap pills and Material Icons. Below is an example of what the file may look like
<hr />
<ul class="nav nav-pills flex-column mb-auto flex-grow-1">
<li>
<a asp-area="" asp-controller="Home" asp-action="Create"
class="nav-link text-white @Html.ActiveClass(controller: "Home", action: "Index", cssClass: "active")">
<div class="d-flex justify-content-start align-items-center g-2">
<i class="material-symbols-outlined me-2">home</i>
<span class="text-nowrap flex-grow-1">Home</span>
</div>
</a>
</li>
</ul>
Additional Notes
To use the Yellow pill highlighting in the sidebar, add the following CSS to your stylesheet. (It is used on a per-app basis, so it is not enabled by default).
.nav-pills .nav-link.active
{
background-color: #ECC435 !important;
color: black !important;
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net8.0 is compatible. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
-
net8.0
- BuildBundlerMinifier (>= 3.2.449)
- Microsoft.Extensions.FileProviders.Embedded (>= 8.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
1.0.83 | 72 | 10/21/2024 |
1.0.81 | 96 | 9/6/2024 |
1.0.80 | 100 | 9/6/2024 |
1.0.79 | 102 | 7/12/2024 |
1.0.78 | 98 | 7/10/2024 |
1.0.76 | 109 | 7/2/2024 |
1.0.74 | 92 | 7/1/2024 |
1.0.72 | 97 | 6/27/2024 |
1.0.71 | 92 | 6/27/2024 |
1.0.70 | 91 | 6/27/2024 |
1.0.68 | 97 | 6/27/2024 |
1.0.67 | 92 | 6/27/2024 |
1.0.64 | 125 | 4/30/2024 |
1.0.63 | 115 | 4/30/2024 |
1.0.62 | 222 | 3/22/2024 |
1.0.61 | 141 | 3/22/2024 |
1.0.6 | 159 | 3/21/2024 |
1.0.5 | 1,491 | 1/29/2024 |
1.0.4 | 284 | 1/29/2024 |
1.0.3 | 266 | 1/29/2024 |
1.0.2 | 250 | 1/29/2024 |