fix: Issue branch from danny experimental changes pr 1128 (#1150)
* fix: study list translations * Don't render until translations are ready * Try to wait for translations to load * Use null to render "nothing" * Try toggling useSuspense off up a layer * logging * Remove useSuspense false flags * DO NOT OPEN A PR WITH IT. Experimental changes only. Try to solve issues with useTranslation hooks #Please enter the commit message for your changes. Lines starting * Remove unecessary changes * feat: 🎸 useMedia hook to not use one more prop for upd state vl * docs: Add license scan report and status (#1161) Signed-off-by: fossabot <badges@fossa.io> * fix: 🐛 Fix for JS breaking on header (#1164) * feat: 🎸 Code review and refact Revised code based on PRs(variable alias,...). Changed hook for useMedia. Now, it provides two hooks: one to get displayMediaSize and other to get Entity(component, objects...) based on displayMediaSize. Implemented a similar solution for state manager to store mediaQueryList(s) and displaySize for app. * feat: 🎸 Fine tunning on mediaQuery value, fixed issue about it * chore(release): publish [skip ci] - @ohif/extension-vtk@0.53.6 - @ohif/ui@0.62.1 - @ohif/viewer@2.8.2 * Add new modal service * Change serviceManager prop to servicesManager * CR Update: fix casing and add required proptypes to providers * CR Update: Improve ohifmodal proptypes * CR Update: Fix typo in extensionmanager * CR Update: add default props to service and check service in provider * Refactor modal provider to better use its own state * ci: don't build our master branch (#1177) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * Use modal instead of modal context * Ci/promotable builds (#1179) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * ci: try building with QUICK_BUILD flag * Change modal children order * Ci/promotable builds (#1180) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * ci: try building with QUICK_BUILD flag * Try using ~/repo prefix in command * Ci/promotable builds (#1181) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * ci: try building with QUICK_BUILD flag * Try using ~/repo prefix in command * ci: make sure netlify command is available * Ci/promotable builds (#1182) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * ci: try building with QUICK_BUILD flag * Try using ~/repo prefix in command * ci: make sure netlify command is available * ci: use sudo for global command * Fix OHIFModal proptypes * Ci/promotable builds (#1183) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * ci: try building with QUICK_BUILD flag * Try using ~/repo prefix in command * ci: make sure netlify command is available * ci: use sudo for global command * Inline personal access token w/ env var * Ci/promotable builds (#1184) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * ci: try building with QUICK_BUILD flag * Try using ~/repo prefix in command * ci: make sure netlify command is available * ci: use sudo for global command * Inline personal access token w/ env var * ci: workaround for sudo limitations * ci: restore release workflow (#1185) * ci: don't build our master branch * Add netlify-cli as a dev dependency * ci: trying a sheltered merge flow for promotions * ci: try building with QUICK_BUILD flag * Try using ~/repo prefix in command * ci: make sure netlify command is available * ci: use sudo for global command * Inline personal access token w/ env var * ci: workaround for sudo limitations * ci: restore release workflow * Pass services to each module, improve tests * Add servicesManager test and registerServices method * Fix key warning of snackbar elements * Remove netlify-cli; we';ll install this on CI server * Update staging and prod netlify site IDs * Clean up NPM_PUBLISH step * Clean up DOCS_PUBLISH step * Clean up Deploy workflow * Custom executor to override cypress config * Spacing * Use an existing docker hub image * Switch to npx instead of digging into npm bin location * Remove e2e test before prod deploy * Add workflow images * docs: continous integrationn * Add default props to modal * chore(release): publish [skip ci] - @ohif/extension-cornerstone@1.5.1 - @ohif/extension-vtk@0.53.7 - @ohif/core@1.9.1 - @ohif/ui@0.62.2 - @ohif/viewer@2.8.3 * chore(release): publish [skip ci] - @ohif/extension-vtk@0.53.8 - @ohif/core@1.10.0 - @ohif/ui@0.62.3 - @ohif/viewer@2.8.4 * ci: Redirect site traffic to index.html if file is not resolved * ci: fix typo * fix: 🐛 Code review. Remove 'global state' for displaySize * fix: 🐛 Code review. Ref back to useMedia and pass value down Code review. Ref back to useMedia and pass value down (components) instead of creating a specialized hook to tied any component on it * Merge from master. Missing files changes * feat: 🎸 Code review. Fix issues with DatePicker Fixed at least the minimum issue with datePicker and update some content on every translation changed
This commit is contained in:
parent
52687a7113
commit
a870b3cc60
@ -3,11 +3,22 @@ import './StudyList.styl';
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import classNames from 'classnames';
|
import classNames from 'classnames';
|
||||||
import TableSearchFilter from './TableSearchFilter.js';
|
import TableSearchFilter from './TableSearchFilter.js';
|
||||||
import useMedia from '../../hooks/useMedia.js';
|
|
||||||
import PropTypes from 'prop-types';
|
import PropTypes from 'prop-types';
|
||||||
import { StudyListLoadingText } from './StudyListLoadingText.js';
|
import { StudyListLoadingText } from './StudyListLoadingText.js';
|
||||||
import { withTranslation } from '../../contextProviders';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
|
const getContentFromUseMediaValue = (
|
||||||
|
displaySize,
|
||||||
|
contentArrayMap,
|
||||||
|
defaultContent
|
||||||
|
) => {
|
||||||
|
const content =
|
||||||
|
displaySize in contentArrayMap
|
||||||
|
? contentArrayMap[displaySize]
|
||||||
|
: defaultContent;
|
||||||
|
|
||||||
|
return content;
|
||||||
|
};
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*
|
*
|
||||||
@ -24,9 +35,10 @@ function StudyList(props) {
|
|||||||
filterValues,
|
filterValues,
|
||||||
onFilterChange: handleFilterChange,
|
onFilterChange: handleFilterChange,
|
||||||
onSelectItem: handleSelectItem,
|
onSelectItem: handleSelectItem,
|
||||||
t,
|
|
||||||
studyListDateFilterNumDays,
|
studyListDateFilterNumDays,
|
||||||
|
displaySize,
|
||||||
} = props;
|
} = props;
|
||||||
|
const { t, ready: translationsAreReady } = useTranslation('StudyList');
|
||||||
|
|
||||||
const largeTableMeta = [
|
const largeTableMeta = [
|
||||||
{
|
{
|
||||||
@ -69,13 +81,13 @@ function StudyList(props) {
|
|||||||
|
|
||||||
const mediumTableMeta = [
|
const mediumTableMeta = [
|
||||||
{
|
{
|
||||||
displayText: 'Patient / MRN',
|
displayText: `${t('Patient')} / ${t('MRN')}`,
|
||||||
fieldName: 'patientNameOrId',
|
fieldName: 'patientNameOrId',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
size: 250,
|
size: 250,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
displayText: 'Description',
|
displayText: t('Description'),
|
||||||
fieldName: 'accessionOrModalityOrDescription',
|
fieldName: 'accessionOrModalityOrDescription',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
size: 350,
|
size: 350,
|
||||||
@ -90,16 +102,16 @@ function StudyList(props) {
|
|||||||
|
|
||||||
const smallTableMeta = [
|
const smallTableMeta = [
|
||||||
{
|
{
|
||||||
displayText: 'Search',
|
displayText: t('Search'),
|
||||||
fieldName: 'allFields',
|
fieldName: 'allFields',
|
||||||
inputType: 'text',
|
inputType: 'text',
|
||||||
size: 100,
|
size: 100,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
const tableMeta = useMedia(
|
const tableMeta = getContentFromUseMediaValue(
|
||||||
['(min-width: 1750px)', '(min-width: 1000px)', '(min-width: 768px)'],
|
displaySize,
|
||||||
[largeTableMeta, mediumTableMeta, smallTableMeta],
|
{ large: largeTableMeta, medium: mediumTableMeta, small: smallTableMeta },
|
||||||
smallTableMeta
|
smallTableMeta
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -107,7 +119,7 @@ function StudyList(props) {
|
|||||||
.map(field => field.size)
|
.map(field => field.size)
|
||||||
.reduce((prev, next) => prev + next);
|
.reduce((prev, next) => prev + next);
|
||||||
|
|
||||||
return (
|
return translationsAreReady ? (
|
||||||
<table className="table table--striped table--hoverable">
|
<table className="table table--striped table--hoverable">
|
||||||
<colgroup>
|
<colgroup>
|
||||||
{tableMeta.map((field, i) => {
|
{tableMeta.map((field, i) => {
|
||||||
@ -176,11 +188,12 @@ function StudyList(props) {
|
|||||||
studyDescription={study.studyDescription || ''}
|
studyDescription={study.studyDescription || ''}
|
||||||
studyInstanceUid={study.studyInstanceUid}
|
studyInstanceUid={study.studyInstanceUid}
|
||||||
t={t}
|
t={t}
|
||||||
|
displaySize={displaySize}
|
||||||
/>
|
/>
|
||||||
))}
|
))}
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
);
|
) : null;
|
||||||
}
|
}
|
||||||
|
|
||||||
StudyList.propTypes = {
|
StudyList.propTypes = {
|
||||||
@ -205,9 +218,12 @@ StudyList.propTypes = {
|
|||||||
patientNameOrId: PropTypes.string.isRequired,
|
patientNameOrId: PropTypes.string.isRequired,
|
||||||
accessionOrModalityOrDescription: PropTypes.string.isRequired,
|
accessionOrModalityOrDescription: PropTypes.string.isRequired,
|
||||||
allFields: PropTypes.string.isRequired,
|
allFields: PropTypes.string.isRequired,
|
||||||
|
studyDateTo: PropTypes.any,
|
||||||
|
studyDateFrom: PropTypes.any,
|
||||||
}).isRequired,
|
}).isRequired,
|
||||||
onFilterChange: PropTypes.func.isRequired,
|
onFilterChange: PropTypes.func.isRequired,
|
||||||
studyListDateFilterNumDays: PropTypes.number,
|
studyListDateFilterNumDays: PropTypes.number,
|
||||||
|
displaySize: PropTypes.string,
|
||||||
};
|
};
|
||||||
|
|
||||||
StudyList.defaultProps = {};
|
StudyList.defaultProps = {};
|
||||||
@ -224,6 +240,7 @@ function TableRow(props) {
|
|||||||
studyInstanceUid,
|
studyInstanceUid,
|
||||||
onClick: handleClick,
|
onClick: handleClick,
|
||||||
t,
|
t,
|
||||||
|
displaySize,
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
const largeRowTemplate = (
|
const largeRowTemplate = (
|
||||||
@ -360,9 +377,13 @@ function TableRow(props) {
|
|||||||
</tr>
|
</tr>
|
||||||
);
|
);
|
||||||
|
|
||||||
const rowTemplate = useMedia(
|
const rowTemplate = getContentFromUseMediaValue(
|
||||||
['(min-width: 1750px)', '(min-width: 1000px)', '(min-width: 768px)'],
|
displaySize,
|
||||||
[largeRowTemplate, mediumRowTemplate, smallRowTemplate],
|
{
|
||||||
|
large: largeRowTemplate,
|
||||||
|
medium: mediumRowTemplate,
|
||||||
|
small: smallRowTemplate,
|
||||||
|
},
|
||||||
smallRowTemplate
|
smallRowTemplate
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -378,11 +399,11 @@ TableRow.propTypes = {
|
|||||||
studyDate: PropTypes.string.isRequired,
|
studyDate: PropTypes.string.isRequired,
|
||||||
studyDescription: PropTypes.string.isRequired,
|
studyDescription: PropTypes.string.isRequired,
|
||||||
studyInstanceUid: PropTypes.string.isRequired,
|
studyInstanceUid: PropTypes.string.isRequired,
|
||||||
|
displaySize: PropTypes.string,
|
||||||
};
|
};
|
||||||
|
|
||||||
TableRow.defaultProps = {
|
TableRow.defaultProps = {
|
||||||
isHighlighted: false,
|
isHighlighted: false,
|
||||||
};
|
};
|
||||||
|
|
||||||
const connectedComponent = withTranslation('StudyList')(StudyList);
|
export { StudyList };
|
||||||
export { connectedComponent as StudyList };
|
|
||||||
|
|||||||
@ -6,6 +6,22 @@ import CustomDateRangePicker from './CustomDateRangePicker.js';
|
|||||||
import { Icon } from './../../elements/Icon';
|
import { Icon } from './../../elements/Icon';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
|
|
||||||
|
const getDateEntry = (datePicked, rangeDatePicked) => {
|
||||||
|
return rangeDatePicked || datePicked || null;
|
||||||
|
};
|
||||||
|
|
||||||
|
const getDateEntryFromRange = (today, numOfDays, edge = 'start') => {
|
||||||
|
if (typeof numOfDays !== 'number') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (edge === 'end') {
|
||||||
|
return today;
|
||||||
|
} else {
|
||||||
|
today.subtract(numOfDays, 'days');
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
function TableSearchFilter(props) {
|
function TableSearchFilter(props) {
|
||||||
const {
|
const {
|
||||||
meta,
|
meta,
|
||||||
@ -17,20 +33,30 @@ function TableSearchFilter(props) {
|
|||||||
// TODO: Rename
|
// TODO: Rename
|
||||||
studyListDateFilterNumDays,
|
studyListDateFilterNumDays,
|
||||||
} = props;
|
} = props;
|
||||||
|
|
||||||
|
const { studyDateTo, studyDateFrom } = values || {};
|
||||||
const [focusedInput, setFocusedInput] = useState(null);
|
const [focusedInput, setFocusedInput] = useState(null);
|
||||||
const [t] = useTranslation(); // 'Common'?
|
const { t, ready: translationsAreReady } = useTranslation('Common');
|
||||||
|
|
||||||
const sortIcons = ['sort', 'sort-up', 'sort-down'];
|
const sortIcons = ['sort', 'sort-up', 'sort-down'];
|
||||||
const sortIconForSortField =
|
const sortIconForSortField =
|
||||||
sortDirection === 'asc' ? sortIcons[1] : sortIcons[2];
|
sortDirection === 'asc' ? sortIcons[1] : sortIcons[2];
|
||||||
|
|
||||||
const today = moment();
|
const today = moment();
|
||||||
const lastWeek = moment().subtract(7, 'day');
|
const lastWeek = moment().subtract(7, 'day');
|
||||||
const lastMonth = moment().subtract(1, 'month');
|
const lastMonth = moment().subtract(1, 'month');
|
||||||
const defaultStartDate = moment().subtract(
|
|
||||||
|
const defaultStartDate = getDateEntryFromRange(
|
||||||
|
today,
|
||||||
studyListDateFilterNumDays,
|
studyListDateFilterNumDays,
|
||||||
'days'
|
'start'
|
||||||
);
|
);
|
||||||
const defaultEndDate = today;
|
const defaultEndDate = getDateEntryFromRange(
|
||||||
|
today,
|
||||||
|
studyListDateFilterNumDays,
|
||||||
|
'end'
|
||||||
|
);
|
||||||
|
|
||||||
const studyDatePresets = [
|
const studyDatePresets = [
|
||||||
{
|
{
|
||||||
text: t('Today'),
|
text: t('Today'),
|
||||||
@ -49,7 +75,8 @@ function TableSearchFilter(props) {
|
|||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
return meta.map((field, i) => {
|
return translationsAreReady
|
||||||
|
? meta.map((field, i) => {
|
||||||
const { displayText, fieldName, inputType } = field;
|
const { displayText, fieldName, inputType } = field;
|
||||||
const isSortField = sortFieldName === fieldName;
|
const isSortField = sortFieldName === fieldName;
|
||||||
const sortIcon = isSortField ? sortIconForSortField : sortIcons[0];
|
const sortIcon = isSortField ? sortIconForSortField : sortIcons[0];
|
||||||
@ -76,14 +103,15 @@ function TableSearchFilter(props) {
|
|||||||
// https://github.com/airbnb/react-dates
|
// https://github.com/airbnb/react-dates
|
||||||
<CustomDateRangePicker
|
<CustomDateRangePicker
|
||||||
// Required
|
// Required
|
||||||
startDate={studyListDateFilterNumDays ? defaultStartDate : null}
|
startDate={getDateEntry(studyDateTo, defaultStartDate)}
|
||||||
startDateId="start-date"
|
startDateId="start-date"
|
||||||
endDate={studyListDateFilterNumDays ? defaultEndDate : null}
|
endDate={getDateEntry(studyDateFrom, defaultEndDate)}
|
||||||
endDateId="end-date"
|
endDateId="end-date"
|
||||||
|
autoFocus={false}
|
||||||
// TODO: We need a dynamic way to determine which fields values to update
|
// TODO: We need a dynamic way to determine which fields values to update
|
||||||
onDatesChange={({ startDate, endDate, preset = false }) => {
|
onDatesChange={({ startDate, endDate, preset = false }) => {
|
||||||
onValueChange('studyDateFrom', startDate);
|
onValueChange('studyDateTo', startDate);
|
||||||
onValueChange('studyDateTo', endDate);
|
onValueChange('studyDateFrom', endDate);
|
||||||
}}
|
}}
|
||||||
focusedInput={focusedInput}
|
focusedInput={focusedInput}
|
||||||
onFocusChange={updatedVal => setFocusedInput(updatedVal)}
|
onFocusChange={updatedVal => setFocusedInput(updatedVal)}
|
||||||
@ -98,7 +126,8 @@ function TableSearchFilter(props) {
|
|||||||
)}
|
)}
|
||||||
</th>
|
</th>
|
||||||
);
|
);
|
||||||
});
|
})
|
||||||
|
: null;
|
||||||
}
|
}
|
||||||
|
|
||||||
TableSearchFilter.propTypes = {
|
TableSearchFilter.propTypes = {
|
||||||
|
|||||||
@ -1,4 +1,4 @@
|
|||||||
import useMedia from './useMedia.js';
|
import { useMedia } from './useMedia.js';
|
||||||
import useDebounce from './useDebounce.js';
|
import useDebounce from './useDebounce.js';
|
||||||
|
|
||||||
export { useDebounce, useMedia };
|
export { useDebounce, useMedia };
|
||||||
|
|||||||
@ -1,54 +1,178 @@
|
|||||||
import { useState, useEffect } from 'react';
|
import { useState, useEffect, useRef, useCallback } from 'react';
|
||||||
|
import isEqual from 'lodash.isequal';
|
||||||
|
/**
|
||||||
|
* Get display size value for matched mediaQueryList
|
||||||
|
* @param {MediaQueryList[]} mediaQueryMap - Array of mappings, containing MediaQueryLists
|
||||||
|
* @param {Array} mediaTypesAliases - Array of strings representing each mediaQueryAlias.
|
||||||
|
* @param {string} defaultDisplaySize - default display size value. Fallback value.
|
||||||
|
*/
|
||||||
|
const getDisplaySize = (
|
||||||
|
mediaQueryMap,
|
||||||
|
mediaTypesAliases,
|
||||||
|
defaultDisplaySize
|
||||||
|
) => {
|
||||||
|
if ((!mediaTypesAliases && !defaultDisplaySize) || !mediaQueryMap) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Get index of first media query that matches
|
||||||
|
const index = mediaQueryMap.findIndex(mql => mql.matches);
|
||||||
|
|
||||||
|
// Return related value or defaultDisplaySize if none
|
||||||
|
return index >= 0 && typeof mediaTypesAliases[index] !== 'undefined'
|
||||||
|
? mediaTypesAliases[index]
|
||||||
|
: defaultDisplaySize;
|
||||||
|
};
|
||||||
|
/**
|
||||||
|
* Map each window MediaQueryLists
|
||||||
|
* @param {Array} mediaQueriesStringList - array of string media queries to be parsed
|
||||||
|
*/
|
||||||
|
const getMediaQueryMap = mediaQueriesStringList => {
|
||||||
|
return (
|
||||||
|
mediaQueriesStringList &&
|
||||||
|
mediaQueriesStringList.map(q => window.matchMedia(q))
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
const getMediaTypeAlias = (mediaQuery, state) => {
|
||||||
|
const { media } = mediaQuery;
|
||||||
|
const { mediaQueriesStringList, mediaTypesAliases } = state;
|
||||||
|
|
||||||
|
const index = mediaQueriesStringList.findIndex(originalMediaQuery => {
|
||||||
|
const { media: toCompareMedia } = window.matchMedia(originalMediaQuery);
|
||||||
|
return toCompareMedia === media;
|
||||||
|
});
|
||||||
|
|
||||||
|
return mediaTypesAliases[index];
|
||||||
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Hook to get current displaySize value.
|
||||||
*
|
*
|
||||||
* @example <caption></caption>
|
* Its state changes and also displaySize value changes in case viewport is resized.
|
||||||
* const currentViewportSize = useMedia(
|
* Its state changes in case mediaQueriesStringList or mediaTypesAliases changes.
|
||||||
* // Media queries
|
*
|
||||||
|
* Current hook only offers displayMedia size, it wont expose method to change its state.
|
||||||
|
* @param {Array} mediaQueriesStringList - array of string media queries to be parsed
|
||||||
|
* @param {Array} mediaTypesAliases - array of aliases. Each value represents one mediaQueryList from array mediaQueriesStringList
|
||||||
|
* @param {String} defaultMediaType - default mediaTypeAlias
|
||||||
|
* @returns {String} current displayMedia size based on viewport size.
|
||||||
|
*
|
||||||
|
* @example <caption>Example to getDisplayMedia Size based on viewport size</caption>
|
||||||
|
*
|
||||||
|
* const displaySize = useMedia(
|
||||||
* ['(min-width: 1500px)', '(min-width: 1000px)', '(min-width: 600px)'],
|
* ['(min-width: 1500px)', '(min-width: 1000px)', '(min-width: 600px)'],
|
||||||
* // Value to return for matched media query
|
* // Value to return for matched media query
|
||||||
* ['large', 'medium', 'small'],
|
* ['large', 'medium', 'small'],
|
||||||
* // Default value
|
* // Default value
|
||||||
* 'medium'
|
* 'medium');
|
||||||
* );
|
*
|
||||||
* @param {string[]} queries
|
* const currentDisplaySize = useMedia();
|
||||||
* @param {*} values
|
*
|
||||||
* @param {*} defaultValue
|
|
||||||
* @returns
|
|
||||||
*/
|
*/
|
||||||
function useMedia(queries, values, defaultValue) {
|
const useMedia = (
|
||||||
// Array containing a media query list for each query
|
mediaQueriesStringList,
|
||||||
const mediaQueryLists = queries.map(q => window.matchMedia(q));
|
mediaTypesAliases,
|
||||||
|
defaultMediaType
|
||||||
// Function that gets value based on matching media query
|
) => {
|
||||||
const getValue = () => {
|
// MediaQuery.state is the source of truth. This hook will be dependent on it.
|
||||||
// Get index of first media query that matches
|
const [state, setState] = useState(() => {
|
||||||
const index = mediaQueryLists.findIndex(mql => mql.matches);
|
const _mediaQueryMap = getMediaQueryMap(mediaQueriesStringList);
|
||||||
|
const _displaySize = getDisplaySize(
|
||||||
// Return related value or defaultValue if none
|
_mediaQueryMap,
|
||||||
return typeof values[index] !== 'undefined' ? values[index] : defaultValue;
|
mediaTypesAliases,
|
||||||
};
|
defaultMediaType
|
||||||
|
|
||||||
// State and setter for matched value
|
|
||||||
const [value, setValue] = useState(getValue);
|
|
||||||
|
|
||||||
useEffect(
|
|
||||||
() => {
|
|
||||||
// Event listener callback
|
|
||||||
// Note: By defining getValue outside of useEffect we ensure that it has ...
|
|
||||||
// ... current values of hook args (as this hook callback is created once on mount).
|
|
||||||
const handler = () => setValue(getValue);
|
|
||||||
|
|
||||||
// Set a listener for each media query with above handler as callback.
|
|
||||||
mediaQueryLists.forEach(mql => mql.addListener(handler));
|
|
||||||
|
|
||||||
// Remove listeners on cleanup
|
|
||||||
return () => mediaQueryLists.forEach(mql => mql.removeListener(handler));
|
|
||||||
},
|
|
||||||
[] // Empty array ensures effect is only run on mount and unmount
|
|
||||||
);
|
);
|
||||||
|
|
||||||
return value;
|
return {
|
||||||
}
|
mediaQueryMap: _mediaQueryMap,
|
||||||
|
displaySize: _displaySize,
|
||||||
|
mediaQueriesStringList,
|
||||||
|
mediaTypesAliases,
|
||||||
|
defaultMediaType,
|
||||||
|
};
|
||||||
|
});
|
||||||
|
let mount = useRef(false);
|
||||||
|
|
||||||
export default useMedia;
|
const updateDisplaySize = displaySize => {
|
||||||
|
if (mount.current) {
|
||||||
|
setState({ ...state, displaySize });
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const updateState = value => {
|
||||||
|
const {
|
||||||
|
mediaQueriesStringList,
|
||||||
|
mediaTypesAliases,
|
||||||
|
defaultMediaType,
|
||||||
|
} = value;
|
||||||
|
|
||||||
|
const mediaQueryMap = getMediaQueryMap(mediaQueriesStringList);
|
||||||
|
const displaySize = getDisplaySize(
|
||||||
|
mediaQueryMap,
|
||||||
|
mediaTypesAliases,
|
||||||
|
defaultMediaType
|
||||||
|
);
|
||||||
|
// immutable state
|
||||||
|
// last chance to avoid setState of unmount component
|
||||||
|
if (mount.current) {
|
||||||
|
setState({
|
||||||
|
...state,
|
||||||
|
mediaQueriesStringList,
|
||||||
|
mediaTypesAliases,
|
||||||
|
displaySize,
|
||||||
|
mediaQueryMap,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const onMediaQueryChange = useCallback(mediaQuery => {
|
||||||
|
if (mediaQuery.matches) {
|
||||||
|
const nextDisplaySize = getMediaTypeAlias(mediaQuery, state);
|
||||||
|
updateDisplaySize(nextDisplaySize);
|
||||||
|
}
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
// update state of MediaQuery in case mediaQueriesStringList or mediaTypesAliases has changed
|
||||||
|
useEffect(() => {
|
||||||
|
const {
|
||||||
|
mediaQueriesStringList: _mediaQueriesStringList,
|
||||||
|
mediaTypesAliases: _mediaTypesAliases,
|
||||||
|
} = state;
|
||||||
|
if (
|
||||||
|
(mediaQueriesStringList &&
|
||||||
|
!isEqual(mediaQueriesStringList, _mediaQueriesStringList)) ||
|
||||||
|
(mediaTypesAliases && !isEqual(mediaTypesAliases, _mediaTypesAliases))
|
||||||
|
) {
|
||||||
|
updateState({
|
||||||
|
mediaQueriesStringList,
|
||||||
|
mediaTypesAliases,
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}, [mediaQueriesStringList, mediaTypesAliases]);
|
||||||
|
|
||||||
|
// re-assign window resizing listeners
|
||||||
|
useEffect(() => {
|
||||||
|
const { mediaQueryMap } = state;
|
||||||
|
mediaQueryMap.forEach(mql => {
|
||||||
|
mql.removeListener(onMediaQueryChange);
|
||||||
|
mql.addListener(onMediaQueryChange);
|
||||||
|
});
|
||||||
|
}, [state.mediaQueryMap]);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
mount.current = true;
|
||||||
|
|
||||||
|
return () => {
|
||||||
|
mount.current = false;
|
||||||
|
const { mediaQueryMap } = state;
|
||||||
|
mediaQueryMap.forEach(mql => {
|
||||||
|
mql.removeListener(onMediaQueryChange);
|
||||||
|
});
|
||||||
|
};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return state.displaySize;
|
||||||
|
};
|
||||||
|
|
||||||
|
export { useMedia };
|
||||||
|
|||||||
@ -58,7 +58,11 @@ function StudyListRoute(props) {
|
|||||||
const appContext = useContext(AppContext);
|
const appContext = useContext(AppContext);
|
||||||
// ~~ RESPONSIVE
|
// ~~ RESPONSIVE
|
||||||
const displaySize = useMedia(
|
const displaySize = useMedia(
|
||||||
['(min-width: 1750px)', '(min-width: 1000px)', '(min-width: 768px)'],
|
[
|
||||||
|
'(min-width: 1750px)',
|
||||||
|
'(min-width: 1000px) and (max-width: 1749px)',
|
||||||
|
'(max-width: 999px)',
|
||||||
|
],
|
||||||
['large', 'medium', 'small'],
|
['large', 'medium', 'small'],
|
||||||
'small'
|
'small'
|
||||||
);
|
);
|
||||||
@ -257,6 +261,7 @@ function StudyListRoute(props) {
|
|||||||
filterValues={filterValues}
|
filterValues={filterValues}
|
||||||
onFilterChange={handleFilterChange}
|
onFilterChange={handleFilterChange}
|
||||||
studyListDateFilterNumDays={appConfig.studyListDateFilterNumDays}
|
studyListDateFilterNumDays={appConfig.studyListDateFilterNumDays}
|
||||||
|
displaySize={displaySize}
|
||||||
/>
|
/>
|
||||||
{/* PAGINATION FOOTER */}
|
{/* PAGINATION FOOTER */}
|
||||||
<TablePagination
|
<TablePagination
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user