* update i18n version -- already published
* update ohif/i18n version and add modules
* update ohif/i18n version
* update translating documentation
* replace addLocales method and exported modules
* lock files
* Update index.js
* fix(@ohif/i18n): export custom methods in the main i18n object
`initI18n`, `addLocales` and `T` are now being exported inside the main `i18n` object.
* remove unecessary dependencies
* update vtk-extension lock file
* Creates E2E tests using Cypress and includes two tests
* Improves yarn.lock file
* Includes documentation
* Cypress project id
* test e2e w/ ci and video
* run unit command before e2e
* Also cache cypress
* Persist cypress to next build step
* Try a different path
* Try without working dir
* Persist less data, but restore yarn/cypress cache in next step
* Install cypress to invalidate cache
* Add e2e as a blocker for merged publishing
I encountered this bug trying to use the IHEInvokeImageDisplay API in order to render multiple DICOM
studies in the viewer. Unfortunately, the component was no longer working and required some changes
in order to access the query parameters used in the API. These changes update the component to use
react router to access the query parameters and pass them to ConnectedViewerRetrieveStudyData as
appropriate. The move from ViewerRetrieveStudyData to ConnectedViewerRetrieveStudyData was necessary
in order to access the active server from the redux store. I also made a change from a series of if
clauses to a switch statement as it seemed a little more appropriate given the nature of the code
paths. Happy to change that back if needed. The PATIENT and default paths were not fixed as a part
of this work because we'll need a way to pass the filter in to the StudyList component.