Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set COVIDcast export values based on URL parameters #1244

Merged
merged 7 commits into from
May 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 45 additions & 3 deletions src/modes/exportdata/ExportData.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,18 +27,37 @@
}
}

// Pre-fill the form from URL parameters.
// Supported parameters: data_source, signal, start_day, end_day, geo_type, geo_value, as_of
const urlParams = new URLSearchParams(window.location.search);

// Overwrite default source & sensor if these are present in the URL
if (urlParams.has('data_source')) {
sourceValue = urlParams.get('data_source');

if (urlParams.has('signal')) {
sensorValue = urlParams.get('signal');
}
}

$: isWeekly = sensor ? sensor.isWeeklySignal : false;
$: formatDate = isWeekly ? (d) => formatWeek(d).replace('W', '') : formatDateISO;

let geoType = 'county';
let geoType = urlParams.has('geo_type') ? urlParams.get('geo_type') : 'county';

let startDate = new Date();
let endDate = new Date();

function initDate(date) {
const param = new DateParam(date);
endDate = param.sparkLineTimeFrame.max;
startDate = param.sparkLineTimeFrame.min;

// Populate date based on URL params or, if absent, the current date
startDate = urlParams.has('start_day') ? new Date(urlParams.get('start_day')) : param.sparkLineTimeFrame.min;
endDate = urlParams.has('end_day') ? new Date(urlParams.get('end_day')) : param.sparkLineTimeFrame.max;

// Also normalize the dates to the current timezone
startDate = new Date(startDate.getTime() - startDate.getTimezoneOffset() * -60000);
endDate = new Date(endDate.getTime() - endDate.getTimezoneOffset() * -60000);
Comment on lines +58 to +60
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's add a comment about the Javascript string parsing + negative timezone edge cases here. If this is a common fix, maybe we can include a link instead of writing the full explanation out.

}
$: initDate($currentDateObject);

Expand All @@ -59,12 +78,20 @@

let geoValuesMode = 'all';
let geoValues = [];
let geoURLSet = false;
$: geoItems = [...(infosByLevel[geoType] || []), ...(geoType === 'county' ? infosByLevel.state : [])];
$: {
if (geoItems != null) {
geoValues = [];
geoValuesMode = guessMode(geoItems.length);
}

// Populate region based on URL params... but let the user override this later
if (urlParams.has('geo_value') && !geoURLSet) {
Comment on lines +89 to +90
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

would it remove the need for geoURLSet if we put this outside of the $: {} block?

let infos = infosByLevel[geoType].filter((d) => d.propertyId == urlParams.get('geo_value'));
addRegion(infos[0]);
geoURLSet = true;
}
}

function flatIds(geoValues) {
Expand All @@ -90,6 +117,13 @@
}
}
$: usesAsOf = asOfMode !== 'latest' && asOfDate instanceof Date;
// set as_of based on URL params, if it's a valid date
if (urlParams.has('as_of') && !isNaN(new Date(urlParams.get('as_of')))) {
asOfMode = 'single';
asOfDate = new Date(urlParams.get('as_of'));
// Also normalize the dates to the current timezone
asOfDate = new Date(asOfDate.getTime() - asOfDate.getTimezoneOffset() * -60000);
}

let form = null;

Expand All @@ -104,6 +138,14 @@
);
});
}
// Fix up the UI if we got an inactive sensor from the URL parameters.
if (sensor && !sensor.active) {
showInActive = true;
// Force an update to sourceValue to set related reactive statements correctly.
let temp = sourceValue;
sourceValue = '';
sourceValue = temp;
}
});

function addRegion(detail) {
Expand Down
Loading