diff --git a/components/dashboard/Charts.js b/components/dashboard/Charts.js index 3ba6faa9b..46978ca39 100644 --- a/components/dashboard/Charts.js +++ b/components/dashboard/Charts.js @@ -55,7 +55,8 @@ const Chart = React.memo(function Chart({ testName }) { ...fixedQuery, test_name: testName, since: since, - until: until + until: until, + time_grain: 'day' }), [since, testName, until]) const apiQuery = useMemo(() => { @@ -64,7 +65,7 @@ const Chart = React.memo(function Chart({ testName }) { }, [query]) const { data, error } = useSWR( - apiQuery, + () => since && until ? apiQuery : null, fetcher, swrOptions ) diff --git a/components/dashboard/Form.js b/components/dashboard/Form.js index 3521f22e8..6657ee7c0 100644 --- a/components/dashboard/Form.js +++ b/components/dashboard/Form.js @@ -30,14 +30,14 @@ export const Form = ({ onChange, query, availableCountries }) => { .sort((a, b) => (new Intl.Collator(intl.locale).compare(a.label, b.label))) , [availableCountries, intl]) - const query2formValues = (query) => { + const query2formValues = useMemo(() => { const countriesInQuery = query.probe_cc?.split(',') ?? defaultDefaultValues.probe_cc return { since: query?.since ?? defaultDefaultValues.since, until: query?.until ?? defaultDefaultValues.until, probe_cc: countryOptions.filter(country => countriesInQuery.includes(country.value)), } - } + }, [countryOptions, query]) const multiSelectStrings = useMemo(() => ({ 'allItemsAreSelected': intl.formatMessage({ id: 'ReachabilityDash.Form.Label.CountrySelect.AllSelected' }), @@ -51,10 +51,23 @@ export const Form = ({ onChange, query, availableCountries }) => { // 'create': 'Create', }), [intl]) - const { control, getValues, watch, setValue } = useForm({ - defaultValues: query2formValues(query) + const { control, getValues, watch, setValue, reset } = useForm({ + defaultValues: query2formValues }) + useEffect(()=> { + reset(query2formValues) + }, [query2formValues, reset]) + + const cleanedUpData = (values) => { + const { since, until, probe_cc } = values + return { + since, + until, + probe_cc: probe_cc.length > 0 ? probe_cc.map(d => d.value).join(',') : undefined + } + } + const [showDatePicker, setShowDatePicker] = useState(false) const handleRangeSelect = (range) => { if (range?.from) { @@ -68,19 +81,15 @@ export const Form = ({ onChange, query, availableCountries }) => { setValue('until', '') } setShowDatePicker(false) + onChange(cleanedUpData(getValues())) } - const {since, until, probe_cc} = watch() - - const submit = (e) => { - e.preventDefault() - const cleanedUpData = { - since, - until, - probe_cc: probe_cc.length > 0 ? probe_cc.map(d => d.value).join(',') : undefined - } - onChange(cleanedUpData) - } + useEffect(() => { + const subscription = watch((value, { name, type }) => { + if (name === 'probe_cc' && type === 'change') onChange(cleanedUpData(getValues())) + }) + return () => subscription.unsubscribe() + }, [watch, getValues]) return (