Preflight.Umbraco 13.0.0

dotnet add package Preflight.Umbraco --version 13.0.0
NuGet\Install-Package Preflight.Umbraco -Version 13.0.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="Preflight.Umbraco" Version="13.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Preflight.Umbraco --version 13.0.0
#r "nuget: Preflight.Umbraco, 13.0.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 Preflight.Umbraco as a Cake Addin
#addin nuget:?package=Preflight.Umbraco&version=13.0.0

// Install Preflight.Umbraco as a Cake Tool
#tool nuget:?package=Preflight.Umbraco&version=13.0.0

Preflight is a pluggable framework for content quality assurance. Out of the box, Preflight tests general readability (including Flesch reading level; sentence length; and word length and complexity), checks links, and provides a text replacement mechanism.

Preflight is an Umbraco content app, and supports content in RTEs and textareas, including those nested in the Block List, Block Grid, Grid and Nested Content.

Please note the Preflight versions supporting Umbraco 8, 9 and 10 are considered feature complete, all future development effort will target Umbraco 11+. Bug fixes targeting earlier versions will be considered where required.

Note also Preflight 10 requires Umbraco 10.4.0 as a minimum dependency (as Block Grid was introduced in this version).

Getting started

Install Preflight via your CLI of choice ⇒ Install-Package Preflight.Umbraco

After installing, you'll find a new tree in the settings section, from which you can manage generic Preflight settings and all active plugins.

When navigating the content tree, Preflight will run when a content node is loaded, and reports test findings in the Preflight content app. The app shows a summary of executed tests and their results.

Generic settings

Preflight is variant-friendly, and provides variant-specific settings as not all tests are relevant to all cultures (eg comprehension rules for English will differ to those for German).

  • Run Preflight on save: set to true to run tests when a content node is saved
  • Cancel save when Preflight tests fail: set to true to cancel save events, if run on save is true and any tests fail
  • Properties to test: set the property types to include in test runs (eg only test changes in TinyMCE and Block Grid properties)
  • User group opt in/out: set the user groups to include in test runs (eg only test changes from members of the Editors group)

Plugins

Preflight plugins are defined in C# classes deriving the IPreflightPlugin interface.

The interface requires a range of fields be populated, but the heavy lifting takes place in the Check() method:

  • {string} Name: displayed in the settings as the name of the collapsable panel (which contains the plugin settings)
  • {string} Summary: a brief description of what the plugin tests, also displayed in the settings section
  • {string} Description: a longer description of the plugin. The value is available in the test results and can be displayed within the content app (ie in an overlay, if the test is complex and requires explanation)
  • {string} ViewPath: the path to an AngularJs view used to display the test results in the content app. There is no default, if this is not set to a valid view, the results will not be displayed.
  • {int} SortOrder: set the return order for the plugin result
  • {int} FailedCount: the number of tests failed. Check() can return multiple values (ie readability tests length, blacklist, reading ease, and returns values for each which are summed into FailedCount. The value is used to set the content app badge, and badges against each property in the result view.
  • {bool} Failed: set this in Check() to reflect the completed test status
  • {object} Result: returned to the content app (and ultimately to the AngularJs view defined at ViewPath, as $scope.model).
  • {IEnumerable<SettingsModel> Settings: a collection of settings for the plugin (refer below)

Settings

A plugin can have multiple user-editable settings, of type GenericSettingModel - these are displayed in the backoffice settings section, and configured in a plugin constructor. Each setting requires:

  • {string} Name: should be obvious?
  • {guid} Guid: a unique identifier for the plugin
  • {Dictionary<string, object>} Value: a value dictionary, where the key is the variant culture code
  • {object} DefaultValue: an optional default value applied to all variants when the setting is first registered
  • {string} Description: a friendly explanation of what the setting controls
  • {string} View: a path to an Umbraco property editor view (SettingType holds common options)
  • {int} Order: the order for display on the settings tab
  • {object} Prevalues: an optional object to provide property editor prevalues for use in the setting UI (eg a list of checkbox values)

The following settings are added by default to all plugins

  • Properties to test: allows subsetting properties per test (eg Plugin 1 should run on all Block Grid properties, Plugin 2 should only run on TextBox)
  • Disabled: set to true to exclude the plugin from test runs
  • On save only: only run the plugin on save events, not when loading the content app

To populate the settings on a plugin, use the PluginSettingsList.Populate() method.

Check()

Check is the method where the magic happens. The only requirement for the method is that it sets the Failed, FailedCount and Result fields on the enclosing class - the content app depends on these values existing.

The method receives three arguments - {int} id, {guid} culture, {string} val and {List<SettingsModel> settings}:

  • id: the id of the current content item under test
  • culture: the culture of the current property under test
  • val: the string value of the current property under test
  • settings: a list of settings applied to all existing Preflight plugins (includes the settings for the current plugin, if any have been added)

Use those argument to determine the result for your test - how you do that is entirely up to you, so long as the aforementioned fields are set.

For implementation examples, refer to the core plugins in Preflight.Plugins eg Preflight.Plugins.Readability.

Credits

Icon sourced from Feather Icons

Product 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. 
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
13.0.0 108 2/2/2024
12.0.0 145 9/19/2023
11.0.1 553 1/17/2023
11.0.0 250 1/17/2023
10.0.1 262 1/17/2023
10.0.0 243 1/17/2023
2.0.1 1,247 10/1/2021
2.0.0 1,107 9/28/2021
2.0.0-rc-004.857 175 9/24/2021
2.0.0-rc-001 209 9/4/2021
1.3.4 1,398 7/30/2020
1.3.3 818 4/29/2020
1.3.2 485 3/19/2020
1.3.1 486 2/12/2020
1.3.0 476 2/12/2020
1.1.0 1,043 10/25/2019
1.0.2 560 5/19/2019
1.0.1 544 5/19/2019
1.0.0 631 1/22/2019