FamilyHubs.SharedKernel.Razor
8.1.1
See the version list below for details.
dotnet add package FamilyHubs.SharedKernel.Razor --version 8.1.1
NuGet\Install-Package FamilyHubs.SharedKernel.Razor -Version 8.1.1
<PackageReference Include="FamilyHubs.SharedKernel.Razor" Version="8.1.1" />
paket add FamilyHubs.SharedKernel.Razor --version 8.1.1
#r "nuget: FamilyHubs.SharedKernel.Razor, 8.1.1"
// Install FamilyHubs.SharedKernel.Razor as a Cake Addin #addin nuget:?package=FamilyHubs.SharedKernel.Razor&version=8.1.1 // Install FamilyHubs.SharedKernel.Razor as a Cake Tool #tool nuget:?package=FamilyHubs.SharedKernel.Razor&version=8.1.1
Family Hub web framework and components
This package is designed to work in conjunction with the familyhubs-frontend node package, to rapidly create new GOV.UK websites and add standard components.
It builds on top of these packages:
The package contains:
- configurable standard GOV.UK layout (although only the DfE header is included)
- configurable header and footer links
- cookie banner and page with pluggable content
- Google Analytics support
- GOV.UK pagination support
- Error handling, error pages and GOVUK error summary component
- MOJ dashboard support
- alternative configs for when pages need different layouts, headers, footers etc.
- Url helpers for picking Urls from config, manipulating them and inheriting them from ancestor configs
- a set of SASS files that import the above packages and add some additional styling
- .NET distributed cache support for SQL Server and Redis
- JavaScript postcode helpers
- HTTP security header support
There is an example ASP.Net 7 site that shows how to use the packages.
Consuming the packages
Install the familyhubs-frontend package into the website project using the following command:
npm install familyhubs-frontend
Installing the package, will add files to the wwwroot folder. (todo document which files)
In the styles/application.scss file, add the following line:
@import "../node_modules/familyhubs-frontend/styles/all";
Add the FamilyHubs.SharedKernel.Razor package to the website project.
The FamilyHubs.SharedKernel.Razor package contains:
- the layout
- common shared partial views
- todo add rest here
Check that the npm package and the Razor Class Library are on the same version.
Add the configuration section to the appsettings.json file of the website project.
Configuration
Here's an example configuration section that should be added to the appsettings.json file of a Family Hubs website:
"FamilyHubsUi": {
"ServiceName": "Manage family support services and accounts",
"Phase": "Beta",
"FeedbackUrl": "https://example.com/feedback",
"SupportEmail": "find-support-for-your-family.service@education.gov.uk",
"Analytics": {
"CookieName": "manage_family_support_cookies_policy",
"CookieVersion": 1,
"MeasurementId": "",
"ContainerId": ""
},
"Header": {
"NavigationLinks": [
{ "Text": "Requests Sent", "Url": "https://dev.manage-connection-requests.education.gov.uk/" },
{ "Text": "Search for service", "Url": "/ProfessionalReferral/Search" },
],
"ActionLinks": [
{ "Text": "My account", "Url": "/account/my-account" },
{ "Text": "Sign out", "Url": "/account/signout" }
]
},
"Footer": {
"Links": [
{ "Text": "Accessibility" },
{ "Text": "Contact Us" },
{ "Text": "Cookies" },
{ "Text": "Feedback", "ConfigUrl": "FamilyHubsUi:FeedbackUrl" },
{ "Text": "Terms and conditions" }
]
}
Notes:
Google Analytics is only enabled if the MeasurementId and ContainerId are set.
The Options classes have XML documentation on the properties.
If your cookie page is at a different location to
/cookies
, you can set it usingCookiePageUrl
in theAnalytics
section.
Version numbers
To ease testing, we should keep the version number of the NPM package and the Razor Class Library in sync. Consumers should then ensure that both packages are on the same version.
The version of the familyhubs-frontend package is given in its package.json file, as the value of the version property.
The version of the FamilyHubs.SharedKernel.Razor package is given in its FamilyHubs.SharedKernel.Razor.csproj file, as the value of the VersionPrefix property.
familyhubs-frontend
To publish this npm package, you�ll need to follow these steps:
- Create a user account on the npm website if you don�t already have one.
- In your terminal or command prompt, navigate to the
familyhubs-frontend
directory, containing the package files. - Run the
npm login
command and enter your npm username, password, and email when prompted. - Update the package.json file in the package directory with the version number synced to the FamilyHubs.SharedKernel.Razor version.
- Run the
npm publish
command to publish the package to the npm registry.
After publishing the package, it will be available for others to install and use nearly instantaneously.
It's best to reference the package using its exact version number, otherwise it might not pick up the latest, just published version.
FamilyHubs.SharedKernel.Razor
The package is automatically built when the solution is built.
It is not currently published automatically to the NuGet feed, and needs to be manually uploaded to NuGet.
Components
Cookie page
Call AddCookiePage()
on your IServiceCollection
, like so...
services.AddCookiePage(configuration);
Create a new Razor Page. Inject ICookiePage into the PageModel's constructor, stash it away, then pass it to the cookie page partial in the View.
To add support for users running without Javascript, add an OnPost method as per the example.
E.g.
public class IndexModel : PageModel
{
public readonly ICookiePage CookiePage;
public IndexModel(ICookiePage cookiePage)
{
CookiePage = cookiePage;
}
public void OnPost(bool analytics)
{
CookiePage.OnPost(analytics, Request, Response);
}
}
and add in your view...
<partial name="~/Pages/Shared/_CookiePage.cshtml" model="Model.CookiePage"/>
Add a partial view called Pages/Shared/_CookiePolicy.cshtml
and add the cookie policy content into it.
If you want to pick up the cookie policy content from a different partial view, pass its name into AddCookiePage()
, e.g.
services.AddCookiePage(configuration, "SomeOtherView.cshtml");
User-friendly, branded error pages
To add user-friendly Family Hub branded error pages, call UseErrorHandling()
on WebApplication
, e.g.
app.UseErrorHandling();
By default, the error handling middleware will only be added if it's not the development environment. If you want to always add it, irrespective of the environment (useful for local testing), pass true
as the first parameter.
If SupportEmail
is set in the configuration, the error page will include a link to the given support email address.
To test the not found page, navigate to a URL that doesn't exist, e.g. /not-found
.
To test the error page, navigate to /error/test
, which is a fault-injection page included in the library, explicitly for testing the error page handling.
Release Notes
Possible Improvements
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net7.0 is compatible. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. |
-
net7.0
- AspNetCore.HealthChecks.AzureApplicationInsights (>= 7.0.0)
- AspNetCore.HealthChecks.SqlServer (>= 7.0.0)
- AspNetCore.HealthChecks.UI (>= 7.0.2)
- AspNetCore.HealthChecks.UI.Client (>= 7.1.0)
- AspNetCore.HealthChecks.Uris (>= 7.0.0)
- Microsoft.Extensions.Caching.SqlServer (>= 7.0.14)
- Microsoft.Extensions.Caching.StackExchangeRedis (>= 7.0.14)
- Microsoft.Extensions.Hosting (>= 7.0.1)
- NetEscapades.AspNetCore.SecurityHeaders (>= 0.21.0)
- NetEscapades.AspNetCore.SecurityHeaders.TagHelpers (>= 0.21.0)
- StackExchange.Redis (>= 2.7.4)
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 |
---|---|---|
9.5.1 | 1,382 | 9/12/2024 |
9.5.0 | 216 | 8/27/2024 |
9.4.0 | 112 | 8/23/2024 |
9.3.5 | 113 | 8/23/2024 |
9.3.4 | 3,066 | 8/14/2024 |
9.3.3 | 126 | 8/8/2024 |
9.3.2 | 99 | 8/8/2024 |
9.3.1 | 3,642 | 6/21/2024 |
9.3.0 | 119 | 6/20/2024 |
9.2.2 | 500 | 5/21/2024 |
9.2.1 | 153 | 5/16/2024 |
9.2.0 | 104 | 5/13/2024 |
9.1.7 | 710 | 5/2/2024 |
9.1.6 | 555 | 4/10/2024 |
9.1.5 | 1,172 | 3/21/2024 |
9.1.4 | 101 | 3/21/2024 |
9.1.3 | 193 | 3/19/2024 |
9.1.2 | 101 | 3/19/2024 |
9.1.1 | 96 | 3/19/2024 |
9.1.0 | 128 | 3/15/2024 |
9.0.0 | 404 | 2/23/2024 |
8.4.0 | 313 | 2/16/2024 |
8.3.0 | 214 | 2/13/2024 |
8.2.0 | 154 | 2/9/2024 |
8.1.2 | 146 | 2/9/2024 |
8.1.1 | 411 | 1/26/2024 |
8.1.0 | 96 | 1/26/2024 |
8.0.1 | 112 | 1/25/2024 |
8.0.0 | 115 | 1/25/2024 |
7.4.0 | 150 | 1/22/2024 |
7.3.3 | 160 | 1/19/2024 |
7.3.2 | 148 | 1/18/2024 |
7.3.1 | 117 | 1/18/2024 |
7.3.0 | 118 | 1/17/2024 |
7.2.0 | 183 | 1/15/2024 |
7.1.0 | 147 | 1/12/2024 |
7.0.0 | 115 | 1/12/2024 |
6.6.3 | 233 | 12/22/2023 |
6.6.2 | 157 | 12/21/2023 |
6.6.1 | 161 | 12/19/2023 |
6.6.0 | 99 | 12/19/2023 |
6.5.0 | 168 | 12/14/2023 |
6.4.0 | 397 | 11/29/2023 |
6.3.0 | 376 | 11/24/2023 |
6.2.0 | 151 | 11/21/2023 |
6.1.1 | 286 | 11/14/2023 |
6.1.0 | 133 | 11/13/2023 |
6.0.0 | 133 | 11/10/2023 |
5.8.0 | 192 | 11/1/2023 |
5.7.0 | 348 | 10/19/2023 |
5.6.0 | 186 | 10/17/2023 |
5.5.0 | 190 | 10/6/2023 |
5.4.0 | 131 | 10/3/2023 |
5.3.0 | 172 | 9/27/2023 |
5.2.0 | 241 | 9/20/2023 |
5.1.0 | 114 | 9/20/2023 |
5.0.0 | 117 | 9/19/2023 |
4.0.1 | 201 | 9/14/2023 |
4.0.0 | 156 | 9/12/2023 |
3.1.1 | 209 | 9/8/2023 |
3.1.0 | 128 | 9/8/2023 |
3.0.1 | 164 | 9/7/2023 |
3.0.0 | 151 | 9/6/2023 |
2.4.0 | 145 | 9/5/2023 |
2.3.1 | 152 | 9/4/2023 |
2.3.0 | 154 | 8/31/2023 |
2.2.1 | 163 | 8/30/2023 |
2.2.0 | 135 | 8/29/2023 |
2.1.0 | 134 | 8/29/2023 |
2.0.0 | 133 | 8/25/2023 |
1.16.0 | 138 | 8/24/2023 |
1.15.1 | 189 | 8/24/2023 |
1.15.0 | 161 | 8/23/2023 |
1.14.0 | 142 | 8/16/2023 |
1.13.0 | 103 | 8/7/2023 |
1.12.0 | 113 | 8/3/2023 |
1.11.0 | 199 | 7/20/2023 |
1.10.0 | 102 | 7/20/2023 |
1.8.0 | 103 | 7/19/2023 |
1.7.0 | 105 | 7/18/2023 |
1.6.0 | 104 | 7/17/2023 |
1.5.0 | 94 | 7/17/2023 |
1.4.0 | 95 | 7/13/2023 |
1.3.0 | 188 | 7/7/2023 |
1.2.0 | 92 | 7/7/2023 |
1.1.0 | 523 | 6/30/2023 |
1.0.66-alpha | 223 | 6/22/2023 |
1.0.65-alpha | 76 | 6/21/2023 |
1.0.64-alpha | 225 | 6/8/2023 |
1.0.63-alpha | 82 | 6/7/2023 |
1.0.62-alpha | 66 | 6/7/2023 |
1.0.61-alpha | 68 | 6/7/2023 |
1.0.60-alpha | 69 | 6/7/2023 |
1.0.59-alpha | 78 | 6/7/2023 |
1.0.58-alpha | 77 | 6/7/2023 |
1.0.57-alpha | 83 | 6/6/2023 |
1.0.56-alpha | 137 | 6/5/2023 |
1.0.55-alpha | 97 | 6/1/2023 |
1.0.54-alpha | 134 | 5/30/2023 |
1.0.53-alpha | 87 | 5/30/2023 |
1.0.52-alpha | 94 | 5/30/2023 |
1.0.51-alpha | 79 | 5/30/2023 |
1.0.50-alpha | 198 | 5/25/2023 |
1.0.49-alpha | 101 | 5/25/2023 |
1.0.48-alpha | 99 | 5/25/2023 |
1.0.47-alpha | 119 | 5/24/2023 |
1.0.46-alpha | 102 | 5/24/2023 |
1.0.45-alpha | 169 | 5/19/2023 |
1.0.44-alpha | 117 | 5/18/2023 |
1.0.43-alpha | 106 | 5/18/2023 |
1.0.42-alpha | 132 | 5/17/2023 |
1.0.41-alpha | 102 | 5/17/2023 |
1.0.40-alpha | 91 | 5/16/2023 |
1.0.39-alpha | 117 | 5/16/2023 |
1.0.38-alpha | 90 | 5/16/2023 |
1.0.37-alpha | 121 | 5/16/2023 |
1.0.36-alpha | 113 | 5/16/2023 |
1.0.35-alpha | 98 | 5/16/2023 |
1.0.34-alpha | 598 | 4/19/2023 |
1.0.33-alpha | 130 | 4/19/2023 |
1.0.32-alpha | 141 | 4/17/2023 |
1.0.31-alpha | 120 | 4/11/2023 |
1.0.30-alpha | 128 | 3/31/2023 |
1.0.29-alpha | 117 | 3/31/2023 |
1.0.28-alpha | 117 | 3/31/2023 |
1.0.27-alpha | 112 | 3/31/2023 |
1.0.26-alpha | 122 | 3/31/2023 |
1.0.25-alpha | 117 | 3/31/2023 |
1.0.24-alpha | 109 | 3/31/2023 |
1.0.23-alpha | 106 | 3/31/2023 |
1.0.22-alpha | 114 | 3/31/2023 |
1.0.21-alpha | 110 | 3/31/2023 |
1.0.20-alpha | 120 | 3/31/2023 |
1.0.19-alpha | 98 | 3/30/2023 |
1.0.18-alpha | 122 | 3/30/2023 |
1.0.17-alpha | 124 | 3/30/2023 |
1.0.15-alpha | 102 | 3/30/2023 |
1.0.14-alpha | 106 | 3/30/2023 |
1.0.13-alpha | 128 | 3/29/2023 |
1.0.12-alpha | 110 | 3/29/2023 |
1.0.10-alpha | 136 | 3/28/2023 |
1.0.9-alpha | 108 | 3/28/2023 |
1.0.4-alpha | 119 | 3/27/2023 |
1.0.3-alpha | 130 | 3/27/2023 |
1.0.2-alpha | 112 | 3/27/2023 |
1.0.0 | 85 | 6/30/2023 |