@ohif/app 3.9.0-beta.72 → 3.9.0-beta.74
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{2281.bundle.ee76ed91265e2c265164.js → 2281.bundle.a79f3334035e7c55ed44.js} +5 -8
- package/dist/{app.bundle.4dda5e34cdcf4d0aed73.js → app.bundle.361dbc97fcf0ae97c183.js} +3566 -1386
- package/dist/app.bundle.css +3 -2
- package/dist/index.html +1 -1
- package/dist/sw.js +1 -1
- package/package.json +18 -18
- /package/dist/{153.bundle.a7839621f2f74de3439b.js → 153.bundle.745a025408fd70c2f629.js} +0 -0
- /package/dist/{1994.bundle.d22ecbd6b10ff43accc9.js → 1994.bundle.b6bf94ade53ef509511b.js} +0 -0
- /package/dist/{2065.bundle.3a97a5381db93f0f3ccc.js → 2065.bundle.de0f2e82066aa976eb7c.js} +0 -0
- /package/dist/{2791.bundle.a0ef2e836330f7d3819b.js → 2791.bundle.52976705b124b8af19d4.js} +0 -0
- /package/dist/{3962.bundle.ca88fa9a95553c800b96.js → 3962.bundle.b7817c0e79bb3053c91d.js} +0 -0
- /package/dist/{4210.bundle.430c7b41c91cd56bb5b8.js → 4210.bundle.036548d88d093e8f2ba1.js} +0 -0
- /package/dist/{4353.bundle.f4d1e94a92cda5181f45.js → 4353.bundle.accf1029ad30013a8bfb.js} +0 -0
- /package/dist/{4842.bundle.b21e880426dd2f7c1861.js → 4842.bundle.299923db51fd093c7ebf.js} +0 -0
- /package/dist/{4978.bundle.d57a843d3d8f3e16ea65.js → 4978.bundle.e2f665ae9d2a22ee41a3.js} +0 -0
- /package/dist/{5516.bundle.5d737a1f1e694c104cb1.js → 5516.bundle.903b89c996968ea38417.js} +0 -0
- /package/dist/{5888.bundle.3fddbbb71b31c7dc6be6.js → 5888.bundle.c715596d4d4367d8b0be.js} +0 -0
- /package/dist/{6591.bundle.bd7460feb98b9bb22d21.js → 6591.bundle.d2d737040ba6d2adb0f4.js} +0 -0
- /package/dist/{7246.bundle.5efa51d7a24848ca344b.js → 7246.bundle.2c0e57a88770bc82cede.js} +0 -0
- /package/dist/{7360.bundle.d143c7ad7f6458577fe5.js → 7360.bundle.d2698ff25e52192b7822.js} +0 -0
- /package/dist/{7376.bundle.75c5346187a1bdd8a9e0.js → 7376.bundle.ef58593e3f01b8a315aa.js} +0 -0
- /package/dist/{7502.bundle.79ba6a9f4605dc498048.js → 7502.bundle.c91a1dae1a093a4fc4e5.js} +0 -0
- /package/dist/{7913.bundle.0ffa0e9ee29da8e352ce.js → 7913.bundle.eb54bf000dc92ab4945a.js} +0 -0
- /package/dist/{8944.bundle.8719801fd3724f15d764.js → 8944.bundle.a092081108a1230fc761.js} +0 -0
- /package/dist/{9824.bundle.f2bb58dae2ab28c07bfb.js → 9824.bundle.3c7e0c07f21fa648dd87.js} +0 -0
|
@@ -680,7 +680,6 @@ class RetrieveMetadataLoaderAsync extends RetrieveMetadataLoader {
|
|
|
680
680
|
* @param {*} enableStudyLazyLoad Whether the study metadata should be loaded asynchronously
|
|
681
681
|
* @param {object} filters Object containing filters to be applied on retrieve metadata process
|
|
682
682
|
* @param {string} [filters.seriesInstanceUID] Series instance uid to filter results against
|
|
683
|
-
* @param {array} [filters.SeriesInstanceUIDs] Series instance uids to filter results against
|
|
684
683
|
* @param {function} [sortCriteria] Sort criteria function
|
|
685
684
|
* @param {function} [sortFunction] Sort function
|
|
686
685
|
*
|
|
@@ -704,7 +703,6 @@ async function RetrieveMetadata(dicomWebClient, StudyInstanceUID, enableStudyLaz
|
|
|
704
703
|
* @param {*} enableStudyLazyLoad Whether the study metadata should be loaded asynchronously
|
|
705
704
|
* @param {object} filters Object containing filters to be applied on retrieve metadata process
|
|
706
705
|
* @param {string} [filters.seriesInstanceUID] Series instance uid to filter results against
|
|
707
|
-
* @param {array} [filters.SeriesInstanceUIDs] Series instance uids to filter results against
|
|
708
706
|
* @param {function} [sortCriteria] Sort criteria function
|
|
709
707
|
* @param {function} [sortFunction] Sort function
|
|
710
708
|
*
|
|
@@ -712,10 +710,10 @@ async function RetrieveMetadata(dicomWebClient, StudyInstanceUID, enableStudyLaz
|
|
|
712
710
|
*/
|
|
713
711
|
function retrieveMetadataFiltered(dicomWebClient, StudyInstanceUID, enableStudyLazyLoad, filters, sortCriteria, sortFunction) {
|
|
714
712
|
const {
|
|
715
|
-
|
|
713
|
+
seriesInstanceUID
|
|
716
714
|
} = filters;
|
|
717
715
|
return new Promise((resolve, reject) => {
|
|
718
|
-
const promises =
|
|
716
|
+
const promises = seriesInstanceUID.map(uid => {
|
|
719
717
|
const seriesSpecificFilters = Object.assign({}, filters, {
|
|
720
718
|
seriesInstanceUID: uid
|
|
721
719
|
});
|
|
@@ -753,7 +751,6 @@ const StudyMetaDataPromises = new Map();
|
|
|
753
751
|
* @param {boolean} enableStudyLazyLoad Whether the study metadata should be loaded asynchronously.
|
|
754
752
|
* @param {Object} [filters] Object containing filters to be applied on retrieve metadata process
|
|
755
753
|
* @param {string} [filters.seriesInstanceUID] Series instance uid to filter results against
|
|
756
|
-
* @param {array} [filters.SeriesInstanceUIDs] Series instance uids to filter results against
|
|
757
754
|
* @param {function} [sortCriteria] Sort criteria function
|
|
758
755
|
* @param {function} [sortFunction] Sort function
|
|
759
756
|
*
|
|
@@ -777,7 +774,7 @@ function retrieveStudyMetadata(dicomWebClient, StudyInstanceUID, enableStudyLazy
|
|
|
777
774
|
return StudyMetaDataPromises.get(promiseId);
|
|
778
775
|
}
|
|
779
776
|
let promise;
|
|
780
|
-
if (filters && filters.
|
|
777
|
+
if (filters && filters.seriesInstanceUID && Array.isArray(filters.seriesInstanceUID)) {
|
|
781
778
|
promise = utils_retrieveMetadataFiltered(dicomWebClient, StudyInstanceUID, enableStudyLazyLoad, filters, sortCriteria, sortFunction);
|
|
782
779
|
} else {
|
|
783
780
|
// Create a promise to handle the data retrieval
|
|
@@ -2857,8 +2854,8 @@ function ViewerHeader({
|
|
|
2857
2854
|
hotkeyDefinitions,
|
|
2858
2855
|
hotkeyDefaults
|
|
2859
2856
|
} = hotkeysManager;
|
|
2860
|
-
const versionNumber = "3.9.0-beta.
|
|
2861
|
-
const commitHash = "
|
|
2857
|
+
const versionNumber = "3.9.0-beta.74";
|
|
2858
|
+
const commitHash = "9b10303a2efa809096156d4a2322b2b46f160a91";
|
|
2862
2859
|
const menuOptions = [{
|
|
2863
2860
|
title: t('Header:About'),
|
|
2864
2861
|
icon: 'info',
|