Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

feat(patients): escape string in appointments search #2031

Merged
merged 44 commits into from
May 2, 2020

Commits on Apr 21, 2020

  1. npm yarn install

    JDarke committed Apr 21, 2020
    Configuration menu
    Copy the full SHA
    1f19bb8 View commit details
    Browse the repository at this point in the history
  2. fix(src/components/input/textfieldwithlabelformgroup.tsx): update Label

    Reason field on new appointment screen no longer a required field.  Line 21, Label element now takes
    isRequired attr from interface Props.
    
    fix HospitalRun#1997
    JDarke committed Apr 21, 2020
    Configuration menu
    Copy the full SHA
    1d922c7 View commit details
    Browse the repository at this point in the history
  3. revert(package.json): remove yarn listing

    Previously added a listing for yarn in the dependencies in package.json.  This commit undoes that.
    
    re |
    JDarke committed Apr 21, 2020
    Configuration menu
    Copy the full SHA
    7efe678 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into master

    HospitalRun Bot committed Apr 21, 2020
    Configuration menu
    Copy the full SHA
    c7dba69 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'master' into master

    HospitalRun Bot committed Apr 21, 2020
    Configuration menu
    Copy the full SHA
    ba91b21 View commit details
    Browse the repository at this point in the history

Commits on Apr 22, 2020

  1. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    404a7a2 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    6a2523c View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    9f8c1d7 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    9bfb378 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    71cd8b0 View commit details
    Browse the repository at this point in the history
  6. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    8cac332 View commit details
    Browse the repository at this point in the history
  7. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    92ad7f7 View commit details
    Browse the repository at this point in the history
  8. Merge branch 'master' into master

    HospitalRun Bot committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    b7e355a View commit details
    Browse the repository at this point in the history
  9. test(textfieldwithlabelformgroup.test.tsx): add test to Label isRequired

    Added a test case to test if the Label receives the isRequired prop on required fields
    
    re HospitalRun#2003
    JDarke committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    36b889e View commit details
    Browse the repository at this point in the history
  10. refactor(textfieldwithlabelformgroup.test.tsx): make props semantic

    Changed const expectedValue to const expectedRequired, named for prop isRequired
    
    re HospitalRun#2003
    JDarke committed Apr 22, 2020
    Configuration menu
    Copy the full SHA
    7791d9e View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2020

  1. fix(patientrepository.ts): clean the search string of illegal chars

    Added a step to take the search string and remove all non-letter/whitespace characters. Line 16 and
    22
    
    fix HospitalRun#1999
    JDarke committed Apr 23, 2020
    Configuration menu
    Copy the full SHA
    add9c02 View commit details
    Browse the repository at this point in the history
  2. fix(patientrepository.ts): clean search string of illegal chars

    Added a step to remove all non-alphabetical and whitespace characters from search string regex
    
    fix HospitalRun#1999
    JDarke committed Apr 23, 2020
    Configuration menu
    Copy the full SHA
    57144a2 View commit details
    Browse the repository at this point in the history

Commits on Apr 24, 2020

  1. fix(patientrepository.ts): clean search string of special chars

    Removed special chars that interfered with RegExp in search strings
    
    re HospitalRun#1999
    JDarke committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    0ffef66 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into master

    HospitalRun Bot committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    3354e9f View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into master

    HospitalRun Bot committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    7cfaf06 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into master

    HospitalRun Bot committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    a6e9be3 View commit details
    Browse the repository at this point in the history
  5. Merge branch 'master' into master

    HospitalRun Bot committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    ee2f4d6 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2020

  1. Merge branch 'master' into master

    HospitalRun Bot committed Apr 25, 2020
    Configuration menu
    Copy the full SHA
    6b56390 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into master

    HospitalRun Bot committed Apr 25, 2020
    Configuration menu
    Copy the full SHA
    b147cae View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into master

    HospitalRun Bot committed Apr 25, 2020
    Configuration menu
    Copy the full SHA
    14c71f8 View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into master

    HospitalRun Bot committed Apr 25, 2020
    Configuration menu
    Copy the full SHA
    8b044e5 View commit details
    Browse the repository at this point in the history
  5. test(patientrepository.test.ts): add test for search string clean regex

    Added a test to pass a search string including all prohibited chars, expects cleaned version of
    string to be used for search.
    
    re HospitalRun#1999
    JDarke committed Apr 25, 2020
    Configuration menu
    Copy the full SHA
    fccc145 View commit details
    Browse the repository at this point in the history
  6. test(src/__tests__/clients/db/patientrepository.test.ts): add test

    Added test on the search string cleaning regex;  runs search string containing all prohibited chars,
    expects cleaned version to be searched and matched
    
    re HospitalRun#1999
    JDarke committed Apr 25, 2020
    Configuration menu
    Copy the full SHA
    1f97dff View commit details
    Browse the repository at this point in the history
  7. revert(package.json): undo mocha dependency in package.json

    Removing mocha listed dependency added in error
    
    re HospitalRun#1999
    JDarke committed Apr 25, 2020
    Configuration menu
    Copy the full SHA
    7347207 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2020

  1. Merge branch 'master' into master

    HospitalRun Bot committed Apr 26, 2020
    Configuration menu
    Copy the full SHA
    1d2c485 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into master

    HospitalRun Bot committed Apr 26, 2020
    Configuration menu
    Copy the full SHA
    df737ec View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into master

    HospitalRun Bot committed Apr 26, 2020
    Configuration menu
    Copy the full SHA
    7e63752 View commit details
    Browse the repository at this point in the history

Commits on Apr 27, 2020

  1. Merge branch 'master' into master

    HospitalRun Bot committed Apr 27, 2020
    Configuration menu
    Copy the full SHA
    f3ec82a View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into master

    HospitalRun Bot committed Apr 27, 2020
    Configuration menu
    Copy the full SHA
    5214a4c View commit details
    Browse the repository at this point in the history
  3. Merge branch 'master' into master

    HospitalRun Bot committed Apr 27, 2020
    Configuration menu
    Copy the full SHA
    6b5b30b View commit details
    Browse the repository at this point in the history
  4. Merge branch 'master' into master

    HospitalRun Bot committed Apr 27, 2020
    Configuration menu
    Copy the full SHA
    f830e3d View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2020

  1. Merge branch 'master' into master

    HospitalRun Bot committed Apr 28, 2020
    Configuration menu
    Copy the full SHA
    d2314da View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into master

    HospitalRun Bot committed Apr 28, 2020
    Configuration menu
    Copy the full SHA
    234b125 View commit details
    Browse the repository at this point in the history
  3. fix(src/clients/db/patientrepository.ts): add escapeStringRegex package

    Added escapeStringRegexp package to escape special chars in search string for p
    
    fix HospitalRun#1999
    JDarke committed Apr 28, 2020
    Configuration menu
    Copy the full SHA
    b603dd1 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2020

  1. Configuration menu
    Copy the full SHA
    bb1af60 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' into master

    HospitalRun Bot committed Apr 29, 2020
    Configuration menu
    Copy the full SHA
    d8be269 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2020

  1. Merge pull request #1 from HospitalRun/master

    Updating forked repo from main
    JDarke committed May 1, 2020
    Configuration menu
    Copy the full SHA
    e94dfe5 View commit details
    Browse the repository at this point in the history
  2. fix(appointmentrepository.ts): add escapeStringRegex to appointment srch

    Added escapeStringRegexp to AppointmentRepository.ts to escape regex chars in appointment search
    feild in patient info area.
    
    fix HospitalRun#2029
    JDarke committed May 1, 2020
    Configuration menu
    Copy the full SHA
    f4dccc8 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2020

  1. Merge branch 'master' into fix-2029

    HospitalRun Bot committed May 2, 2020
    Configuration menu
    Copy the full SHA
    cd233d2 View commit details
    Browse the repository at this point in the history