Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
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}.header
pages.${key}.header
Translations for field labels are looked for in the following order:
pages.confirm.fields.${key}.label
fields.${key}.label
fields.${key}.legend
FAQs
HOF behaviour for showing summary pages
The npm package hof-behaviour-summary-page receives a total of 10 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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.