FamilyHubs.SharedKernel.Razor 9.1.6

dotnet add package FamilyHubs.SharedKernel.Razor --version 9.1.6
NuGet\Install-Package FamilyHubs.SharedKernel.Razor -Version 9.1.6
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="FamilyHubs.SharedKernel.Razor" Version="9.1.6" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FamilyHubs.SharedKernel.Razor --version 9.1.6
#r "nuget: FamilyHubs.SharedKernel.Razor, 9.1.6"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install FamilyHubs.SharedKernel.Razor as a Cake Addin
#addin nuget:?package=FamilyHubs.SharedKernel.Razor&version=9.1.6

// Install FamilyHubs.SharedKernel.Razor as a Cake Tool
#tool nuget:?package=FamilyHubs.SharedKernel.Razor&version=9.1.6

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 using CookiePageUrl in the Analytics 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

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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.1.6 341 4/10/2024
9.1.5 157 3/21/2024
9.1.4 76 3/21/2024
9.1.3 145 3/19/2024
9.1.2 54 3/19/2024
9.1.1 69 3/19/2024
9.1.0 85 3/15/2024
9.0.0 371 2/23/2024
8.4.0 247 2/16/2024
8.3.0 184 2/13/2024
8.2.0 126 2/9/2024
8.1.2 113 2/9/2024
8.1.1 378 1/26/2024
8.1.0 72 1/26/2024
8.0.1 83 1/25/2024
8.0.0 89 1/25/2024
7.4.0 119 1/22/2024
7.3.3 122 1/19/2024
7.3.2 119 1/18/2024
7.3.1 73 1/18/2024
7.3.0 91 1/17/2024
7.2.0 154 1/15/2024
7.1.0 121 1/12/2024
7.0.0 95 1/12/2024
6.6.3 208 12/22/2023
6.6.2 122 12/21/2023
6.6.1 119 12/19/2023
6.6.0 78 12/19/2023
6.5.0 128 12/14/2023
6.4.0 369 11/29/2023
6.3.0 348 11/24/2023
6.2.0 123 11/21/2023
6.1.1 261 11/14/2023
6.1.0 102 11/13/2023
6.0.0 102 11/10/2023
5.8.0 160 11/1/2023
5.7.0 312 10/19/2023
5.6.0 158 10/17/2023
5.5.0 166 10/6/2023
5.4.0 106 10/3/2023
5.3.0 150 9/27/2023
5.2.0 212 9/20/2023
5.1.0 84 9/20/2023
5.0.0 91 9/19/2023
4.0.1 172 9/14/2023
4.0.0 126 9/12/2023
3.1.1 184 9/8/2023
3.1.0 99 9/8/2023
3.0.1 137 9/7/2023
3.0.0 124 9/6/2023
2.4.0 124 9/5/2023
2.3.1 128 9/4/2023
2.3.0 126 8/31/2023
2.2.1 133 8/30/2023
2.2.0 105 8/29/2023
2.1.0 104 8/29/2023
2.0.0 107 8/25/2023
1.16.0 114 8/24/2023
1.15.1 156 8/24/2023
1.15.0 133 8/23/2023
1.14.0 125 8/16/2023
1.13.0 93 8/7/2023
1.12.0 102 8/3/2023
1.11.0 181 7/20/2023
1.10.0 88 7/20/2023
1.8.0 86 7/19/2023
1.7.0 88 7/18/2023
1.6.0 88 7/17/2023
1.5.0 82 7/17/2023
1.4.0 84 7/13/2023
1.3.0 176 7/7/2023
1.2.0 80 7/7/2023
1.1.0 504 6/30/2023
1.0.66-alpha 208 6/22/2023
1.0.65-alpha 61 6/21/2023
1.0.64-alpha 215 6/8/2023
1.0.63-alpha 68 6/7/2023
1.0.62-alpha 58 6/7/2023
1.0.61-alpha 59 6/7/2023
1.0.60-alpha 61 6/7/2023
1.0.59-alpha 64 6/7/2023
1.0.58-alpha 63 6/7/2023
1.0.57-alpha 68 6/6/2023
1.0.56-alpha 113 6/5/2023
1.0.55-alpha 82 6/1/2023
1.0.54-alpha 116 5/30/2023
1.0.53-alpha 74 5/30/2023
1.0.52-alpha 77 5/30/2023
1.0.51-alpha 63 5/30/2023
1.0.50-alpha 173 5/25/2023
1.0.49-alpha 78 5/25/2023
1.0.48-alpha 72 5/25/2023
1.0.47-alpha 100 5/24/2023
1.0.46-alpha 77 5/24/2023
1.0.45-alpha 141 5/19/2023
1.0.44-alpha 92 5/18/2023
1.0.43-alpha 85 5/18/2023
1.0.42-alpha 112 5/17/2023
1.0.41-alpha 84 5/17/2023
1.0.40-alpha 75 5/16/2023
1.0.39-alpha 99 5/16/2023
1.0.38-alpha 69 5/16/2023
1.0.37-alpha 97 5/16/2023
1.0.36-alpha 93 5/16/2023
1.0.35-alpha 76 5/16/2023
1.0.34-alpha 576 4/19/2023
1.0.33-alpha 102 4/19/2023
1.0.32-alpha 114 4/17/2023
1.0.31-alpha 97 4/11/2023
1.0.30-alpha 104 3/31/2023
1.0.29-alpha 97 3/31/2023
1.0.28-alpha 93 3/31/2023
1.0.27-alpha 83 3/31/2023
1.0.26-alpha 99 3/31/2023
1.0.25-alpha 96 3/31/2023
1.0.24-alpha 79 3/31/2023
1.0.23-alpha 81 3/31/2023
1.0.22-alpha 94 3/31/2023
1.0.21-alpha 90 3/31/2023
1.0.20-alpha 96 3/31/2023
1.0.19-alpha 77 3/30/2023
1.0.18-alpha 101 3/30/2023
1.0.17-alpha 95 3/30/2023
1.0.15-alpha 81 3/30/2023
1.0.14-alpha 89 3/30/2023
1.0.13-alpha 105 3/29/2023
1.0.12-alpha 89 3/29/2023
1.0.10-alpha 112 3/28/2023
1.0.9-alpha 92 3/28/2023
1.0.4-alpha 90 3/27/2023
1.0.3-alpha 105 3/27/2023
1.0.2-alpha 90 3/27/2023
1.0.0 74 6/30/2023