Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Warn when duplicate field labels are detected #118

Merged
merged 4 commits into from
Feb 6, 2023
Merged

Conversation

ezraporter
Copy link
Collaborator

Description

This PR implements a warning when REDCapTidieR detects a radio or dropdown field with duplicated labels. It also fixes the cryptic error noted in #89 (comment)

Proposed Changes

List changes below in bullet format:

  • Create check_parsed_labels() check function and call it in multi_choice_to_labels() after the labels are parsed
    • I thought about doing this within parse_labels() but this function gets called multiple times
  • Add a field with duplicate labels to the classic test REDCap and suppressWarnings() where necessary throughout the tests

Screenshots
Example warning:

Screenshot 2023-01-26 at 2 49 21 PM

Issue Addressed

closes #89

PR Checklist

Before submitting this PR, please check and verify below that the submission meets the below criteria:

  • New/revised functions have associated tests
  • New/revised functions that update downstream outputs have associated static testing files (.RDS) updated under inst/testdata/create_test_data.R
  • New tests that make API calls use httptest::with_mock_api and any new mocks were added to tests/testthat/fixtures/create_httptest_mocks.R
  • New/revised functions use appropriate naming conventions
  • New/revised functions don't repeat code
  • Code changes are less than 250 lines total
  • Issues linked to the PR using GitHub's list of keywords
  • The appropriate reviewer is assigned to the PR
  • The appropriate developers are assigned to the PR
  • Pre-release package version incremented using usethis::use_dev_version()

Code Review

This section to be used by the reviewer and developers during Code Review after PR submission

Code Review Checklist

  • I checked that new files follow naming conventions and are in the right place
  • I checked that documentation is complete, clear, and without typos
  • I added/edited comments to explain "why" not "how"
  • I checked that all new variable and function names follow naming conventions
  • I checked that new tests have been written for key business logic and/or bugs that this PR fixes
  • I checked that new tests address important edge cases

@ezraporter ezraporter added the bug Something isn't working label Jan 26, 2023
@ezraporter ezraporter self-assigned this Jan 26, 2023
@ezraporter ezraporter requested review from rsh52 and skadauke January 26, 2023 22:31
Copy link
Collaborator

@rsh52 rsh52 left a comment

Choose a reason for hiding this comment

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

Overall this looks great, a few comments and suggestions related to tightening up naming conventions/documentation open to discussion.

@ezraporter
Copy link
Collaborator Author

Made the following updates:

  • Added a return_stripped_text_flag parameter to parse_labels() to have it optionally return a flag indicating whether we changed the labels by stripping text
    • Minor refactoring of parse_labels() to achieve this
  • Pass that flag to check_parsed_labels() to determine whether we should add the note about HTML
  • Added a check to check_parsed_labels() to warn if any labels are blank ("")

@ezraporter ezraporter requested review from rsh52 and skadauke and removed request for skadauke February 2, 2023 15:51
Copy link
Collaborator

@rsh52 rsh52 left a comment

Choose a reason for hiding this comment

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

This is definitely starting to get complicated, but I think it looks good and I can generally follow the qualifier variables/arguments informing what checks we expect to fire off.

The tests also look good, we just want to be mindful that some of the test cases we're addressing that prompted these functions are spread across smaller tests.

@ezraporter ezraporter merged commit e7e2ee6 into main Feb 6, 2023
@ezraporter ezraporter deleted the duplicate-labels branch February 6, 2023 18:52
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE] Throw a warning when two or more choices have the same label
3 participants