fix proxiwash change not auto refreshing list

This commit is contained in:
Arnaud Vergnet 2021-05-22 18:38:10 +02:00
parent 44d35090ac
commit fe96d9f8a1
3 changed files with 15 additions and 9 deletions

View file

@ -41,7 +41,7 @@ export type RequestProps = {
type Props<T> = RequestScreenProps<T>;
const MIN_REFRESH_TIME = 5 * 1000;
const MIN_REFRESH_TIME = 3 * 1000;
export default function RequestScreen<T>(props: Props<T>) {
const navigation = useNavigation<StackNavigationProp<any>>();
@ -94,8 +94,7 @@ export default function RequestScreen<T>(props: Props<T>) {
clearInterval(refreshInterval.current);
}
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [props.cache, props.refreshOnFocus])
}, [props.cache, props.refreshOnFocus, props.autoRefreshTime, refreshData])
);
const isErrorCritical = (e: API_REQUEST_CODES | undefined) => {

View file

@ -44,12 +44,7 @@ type Props<ItemT, RawData> = Omit<
> &
Omit<
RequestScreenProps<RawData>,
| 'render'
| 'showLoading'
| 'showError'
| 'refresh'
| 'onFinish'
| 'onMajorError'
'render' | 'showLoading' | 'showError' | 'onMajorError'
> &
Omit<
SectionListProps<ItemT>,
@ -171,6 +166,8 @@ function WebSectionList<ItemT, RawData>(props: Props<ItemT, RawData>) {
refreshOnFocus={props.refreshOnFocus}
cache={props.cache}
onCacheUpdate={props.onCacheUpdate}
refresh={props.refresh}
onFinish={props.onFinish}
/>
);
}

View file

@ -59,6 +59,7 @@ import {
ProxiwashPreferenceKeys,
} from '../../utils/asyncStorage';
import { useProxiwashPreferences } from '../../context/preferencesContext';
import { useSubsequentEffect } from '../../utils/customHooks';
const REFRESH_TIME = 1000 * 10; // Refresh every 10 seconds
const LIST_ITEM_HEIGHT = 64;
@ -106,6 +107,7 @@ function ProxiwashScreen() {
ProxiwashPreferenceKeys.proxiwashNotifications,
preferences
);
const [refresh, setRefresh] = useState(false);
const getMachinesWatched = () => {
const data = getPreferenceObject(
@ -130,6 +132,11 @@ function ProxiwashScreen() {
const machinesWatched: Array<ProxiwashMachineType> = getMachinesWatched();
const selectedWash: 'washinsa' | 'tripodeB' = getSelectedWash();
useSubsequentEffect(() => {
// Refresh the list when the selected wash changes
setRefresh(true);
}, [selectedWash]);
const modalStateStrings: { [key in MachineStates]: string } = {
[MachineStates.AVAILABLE]: i18n.t('screens.proxiwash.modal.ready'),
[MachineStates.RUNNING]: i18n.t('screens.proxiwash.modal.running'),
@ -446,6 +453,7 @@ function ProxiwashScreen() {
default:
data = ProxiwashConstants.washinsa;
}
return (
<View style={GENERAL_STYLES.flex}>
<View style={styles.container}>
@ -458,6 +466,8 @@ function ProxiwashScreen() {
refreshOnFocus={true}
extraData={machinesWatched.length}
renderListHeaderComponent={renderListHeaderComponent}
refresh={refresh}
onFinish={() => setRefresh(false)}
/>
</View>
<MascotPopup