
Product
Socket for Jira Is Now Available
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.
hof-behaviour-summary-page
Advanced tools
HOF behaviour for showing summary pages
The behaviour mixin will create a set of "locals" data which is compatible with the confirm view from hof-template-partials.
If no sections config is passed, then the mixin will create a section for each step that has fields, and a row within each section for each field on that step.
'/confirm': {
behaviours: require('hof-behaviour-summary-page'),
...
}
Alternatively, sections can be defined manually as follows:
'/confirm': {
behaviours: require('hof-behaviour-summary-page'),
sections: {
'museum-details': [
'name',
{
field: 'exhibit-addresses',
parse: (value) => value.map(a => a.address),
step: '/exhibit-add-another-address'
}
],
'contact': [
'contact-name',
'contact-email',
'contact-phone',
{
field: 'contact-address',
step: '/contact-address'
}
]
},
...
}
The sections configuration should be a map of arrays, where the entries in the array are the fields that should be shown within that section.
Fields can be defined as simple strings of the field key, in which case all default configuration will be used.
Alternatively, a field can be passed as an object with a field property defining the field key, and any additional properties as follows:
step - String defines the step which the user is returned to to edit the field value. By default this is the first step in the form's steps configuration which contains the field.parse - Function can parse the value for the field from the session into a value for display.derivation - Object allows for a new derived field based on a combination of other fields in the form. Note that
if both derivation and parse are specified then parse will be applied to the result of derivation. E.G.
derivation: {
fromFields: ['field-one', 'field-two'],
combiner: (values) => values.map(it => Number(it)).reduce((a, b) => a + b, 0)
}
The content for section headings and field labels will be loaded from translation files based on the keys.
Translations for section headings are looked for in the following order:
pages.confirm.sections.${key}.headerpages.${key}.headerTranslations for field labels are looked for in the following order:
pages.confirm.fields.${key}.labelfields.${key}.labelfields.${key}.legendFAQs
HOF behaviour for showing summary pages
The npm package hof-behaviour-summary-page receives a total of 19 weekly downloads. As such, hof-behaviour-summary-page popularity was classified as not popular.
We found that hof-behaviour-summary-page demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 7 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.

Security News
NIST will stop enriching most CVEs under a new risk-based model, narrowing the NVD's scope as vulnerability submissions continue to surge.