Umbraco.Community.BlockPreview 1.2.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Umbraco.Community.BlockPreview --version 1.2.0
NuGet\Install-Package Umbraco.Community.BlockPreview -Version 1.2.0
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="Umbraco.Community.BlockPreview" Version="1.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Umbraco.Community.BlockPreview --version 1.2.0
#r "nuget: Umbraco.Community.BlockPreview, 1.2.0"
#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 Umbraco.Community.BlockPreview as a Cake Addin
#addin nuget:?package=Umbraco.Community.BlockPreview&version=1.2.0

// Install Umbraco.Community.BlockPreview as a Cake Tool
#tool nuget:?package=Umbraco.Community.BlockPreview&version=1.2.0

Umbraco.Community.BlockPreview

Platform NuGet GitHub

Umbraco.Community.BlockPreview enables easy to use rich HTML backoffice previews for the Umbraco Block List and Block Grid editors.

Installation

The Umbraco 10.4+ version of this package is available via NuGet.

To install the package, you can use either .NET CLI:

dotnet add package Umbraco.Community.BlockPreview --version 1.2.0

or the older NuGet Package Manager:

Install-Package Umbraco.Community.BlockPreview -Version 1.2.0

Setup

Once installed, you'll need to add AddBlockPreview() to your Startup.cs file, before AddWebsite().

 public void ConfigureServices(IServiceCollection services)
 {
     services.AddUmbraco(_env, _config)
         .AddBackOffice()
+        .AddBlockPreview()
         .AddWebsite()
         .AddComposers()
         .Build();
 }

Usage

This package installs a custom Angular preview for both the Block List and Block Grid editors in the backoffice.

When setting up a block to be part of the List or Grid, setting the 'Custom View' property to block-preview.html will generate preview HTML based on the respective partial view found in /Views/Partials/blocklist/Components or /Views/Partials/blockgrid/Components.

How to select the custom views when creating a Block List/Grid: Screenshot

Before and after of how components look within the Block Grid: Screenshot2

Grid-specific setup

When using the new Block Grid, replace the references below in your Grid template partial views

Default Umbraco usage BlockPreview usage
@await Html.GetBlockGridItemAreasHtmlAsync(Model) @await Html.GetPreviewBlockGridItemAreasHtmlAsync(Model)
@await Html.GetBlockGridItemAreaHtmlAsync(Model) @await Html.GetPreviewBlockGridItemAreaHtmlAsync(Model)
@await Html.GetBlockGridItemsHtmlAsync(Model) @await Html.GetPreviewBlockGridItemsHtmlAsync(Model)

All of these extensions can be found in the namespace Umbraco.Community.BlockPreview.Extensions. This ensures that the grid editors correctly load in the back office.

Preview mode

This package adds an IsBlockPreviewRequest() extension to HttpContext.Request, similar to IsBackOfficeRequest() and IsFrontEndRequest() so you can add custom code to your views that only appears in the back office.

For example:

@using Umbraco.Community.BlockPreview.Extensions
@inherits UmbracoViewPage<BlockGridItem>

@if (Context.Request.IsBlockPreviewRequest())
{
    <p>This content will only be shown to content editors in the back office!</p>
}

Contribution guidelines

To raise a new bug, create an issue on the GitHub repository. To fix a bug or add new features, fork the repository and send a pull request with your changes. Feel free to add ideas to the repository's issues list if you would to discuss anything related to the library.

Who do I talk to?

This project is maintained by Rick Butterfield and contributors. If you have any questions about the project please get in touch on Twitter, or by raising an issue on GitHub.

Credits

This package is entirely based on the amazing work done by Dave Woestenborghs for 24days in Umbraco 2021. His code has been extended to support the new Block Grid editor in v10.4+ and turned into this package.

Matthew Wise also wrote a great article for 24days in Umbraco 2022 which added the ability to surface ViewComponents and has allowed his code to be contributed.

License

Copyright © 2022-2023 Rick Butterfield, and other contributors.

Licensed under the MIT License.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  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 (2)

Showing the top 2 NuGet packages that depend on Umbraco.Community.BlockPreview:

Package Downloads
Our.Umbraco.BlockPreview

Easy to use rich HTML backoffice previews for the Umbraco Block List and Block Grid editors

Our.Community.CustomForm

Custom forms add-on for UmBootstrap

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.8.4 797 4/23/2024
1.8.3 1,284 3/25/2024
1.8.2 996 3/15/2024
1.8.1 130 3/14/2024
1.8.0 9,439 12/15/2023
1.7.1 6,901 9/18/2023
1.7.0 376 9/15/2023
1.6.1 1,931 9/2/2023
1.6.0 175 9/1/2023
1.5.0 1,065 8/18/2023
1.4.1 3,362 6/30/2023
1.4.0 192 6/29/2023
1.3.1 245 6/26/2023
1.3.0 527 6/20/2023
1.2.3 1,448 5/24/2023
1.2.2 196 5/24/2023
1.2.1 1,221 4/12/2023
1.2.0 248 4/12/2023
1.1.2 894 3/14/2023
1.1.1 343 3/7/2023
1.1.0 342 2/25/2023