Skip to content

Indicate required fields in Experiment and Scoreset forms - #717

Open
davereinhart wants to merge 8 commits into
release-2026.3.0from
feature/davereinhart/606/flag-required-fields
Open

Indicate required fields in Experiment and Scoreset forms#717
davereinhart wants to merge 8 commits into
release-2026.3.0from
feature/davereinhart/606/flag-required-fields

Conversation

@davereinhart

Copy link
Copy Markdown
Contributor

This pull request introduces a consistent and accessible way to indicate required fields in form components across the application. The main changes include adding a new MvRequiredMarker component, updating various form field components to support a required prop, and visually marking required fields in both labels and help texts.

Required field indication and accessibility:

  • Added a new MvRequiredMarker component that renders an asterisk and screen-reader-only "(required)" text for accessibility, and integrated it into form field labels where appropriate. [1] [2] [3] [4]
  • Updated MvFloatField, MvTagField, MvUploadField, and MvMarkdownField components to accept a required prop and display the required marker in labels when set. [1] [2] [3] [4] [5] [6] [7] [8]
  • Added aria-required attributes to relevant input elements for accessibility compliance. [1] [2]

Form field usage updates:

  • Updated usage of form field components in ExperimentFields.vue, ScoreSetFields.vue, ScoreSetContextFields.vue, and TargetFields.vue to set the required prop on fields that are mandatory, ensuring both visual and semantic indication. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15] [16] [17]
  • Updated wizard help labels in TargetFields.vue to include the required marker for required fields. [1] [2] [3]

These changes improve the user experience by clearly marking required fields and enhance accessibility for users relying on assistive technologies.

Introduce MvRequiredMarker, a shared span rendering a red asterisk with
an "(required)" screen-reader label, and wire it into the label slots of
MvFloatField, MvTagField, and MvUploadField via a new `required` prop.

MvMarkdownField forwards `required` to MvFloatField and sets
aria-required on the textarea; MvTagField does the same on its
AutoComplete input.
Set `required` on the mandatory MvFloatField, MvMarkdownField, MvTagField,
and MvUploadField instances across ExperimentFields, ScoreSetFields,
ScoreSetContextFields, TargetFields, and VariantScoreFields, so their
labels render the asterisk marker and the inputs expose aria-required.

Wizard-mode help labels for radio-group and custom fields (target
category, sequence type, reference sequence, scores file) get an explicit
MvRequiredMarker since they have no MvFloatField label to hang it on.

VariantScoreFields computes `scoresFileRequired` from
`existingVariantCount`: editing a score set that already has variants
keeps them when no new scores file is chosen, so the field is optional
there.
Add a subtitle to the ExperimentCreator and ScoreSetCreator page headers
noting that fields marked with an asterisk are required, so the markers
rendered by MvRequiredMarker have a legend.
@davereinhart
davereinhart marked this pull request as draft August 19, 2026 17:59
@coveralls

coveralls commented Aug 19, 2026

Copy link
Copy Markdown

Coverage Status

coverage: 10.271% (-0.003%) from 10.274% — feature/davereinhart/606/flag-required-fields into release-2026.3.0

@davereinhart
davereinhart marked this pull request as ready for review August 20, 2026 15:39

@bencap bencap left a comment

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for working on this Dave! A few general notes in addition to the comments:

  • The legend subtitle is only on the two creator screens. That should also go on the editor screens, since the asterisks will render there too.
  • We should also apply this marker to src/components/forms/KeywordFields.vue for consistency. On line 67 of that file, we currently have a ternary operator to denote optional/required that this could replace.

For the question of what to do about the markers for entries without a float field, I think keeping them on the left is reasonable for now. Maybe eventually we can try to unify everything on a float field. The one thing I would do is just split out the help text and the detail so that the asterisk isn't on the full sentence. For example in field-descriptions.ts, category would become:

...
    category: {
      hint: 'The biological category of the target.',
      help: 'Target category',
      detail: 'The biological category of the target.'
    },
...

The asterisk will then consistently appear on the field name, whether it renders in the help column or the data column.

Comment thread src/components/forms/TargetFields.vue
Comment thread src/components/forms/MvUploadField.vue
Sets aria-required prop on FileUpload to support screen readers.
Set `required` on the target label field when the score set has multiple
targets, which is when the API requires a label. In wizard mode the field
only renders for multi-target sequence-based score sets, so it is always
marked there; the flat editor also shows it for single-target score sets,
where it stays optional.

Move the sentence out of the `help` text for target category, sequence
type, and reference sequence, leaving the field name in `help` and the
sentence in `detail`. These three fields render their marker in the
wizard help column rather than on a float label, so the asterisk now sits
on the field name instead of a full sentence, matching how it reads
everywhere else.
Set `required` on the score set and title fields, which the API rejects a
calibration without: the create endpoint returns 422 with no score set
URN, and `title` has no default. The classes file gets the same treatment
for class-based calibrations, where the API demands a CSV on create and
on update alike. That upload field hides its own label, so its marker
goes on the wizard help label instead.

Mark the publication sources on the same conditions the API applies.
Method and threshold sources are required once the calibration defines
functional classifications, and evidence sources once a classification
carries ACMG evidence. Baseline-score-only calibrations are exempt from
all three.

Mark the baseline score while no functional classifications are defined.
The ScoreSetCreator wizard gates its Next button on either a baseline
score or at least one classification, so the marker moves between the
baseline score and the source fields as the submitter fills the form,
and the step's gate is no longer unexplained.

Add a `showRequiredLegend` prop to CalibrationEditor so the three dialog
hosts explain the marker they now render. ScoreSetCreator opts out, since
its page header already carries the legend.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Show required fields to user on ScoreSetCreator and ExperimentCreator components

3 participants