Skip to content

Commit

Permalink
Changed export format back to TSV to avoid additional CSV format inco…
Browse files Browse the repository at this point in the history
…nsistencies (handling quotes and newlines). Escapes tabs in free-form responses for proper TSV parsing. #1000
  • Loading branch information
allennatang committed Jan 4, 2025
1 parent 5211e94 commit 51fedb2
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion src/features/Search/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -276,19 +276,42 @@ class SearchContainer extends React.Component<{}, ISearchState> {
headers.push({label: CONSTANTS.DIETARY_RESTRICTIONS_LABEL, key: 'accountId.dietaryRestrictions'});
headers.push({label: 'Authorize MLH to send emails', key: 'application.other.sendEmail'})
}

const tempHeaders: string[] = [];
headers.forEach((header) => {
tempHeaders.push(header.label);
});
const csvData: string[] = [tempHeaders.join('\t')]; // actually in tsv format

const csvData: string[] = [tempHeaders.join(',')];

this.filter().forEach((result) => {
if (result.selected) {
const row: string[] = [];
headers.forEach((header) => {
let value;
let free_response = false;

if (header.key.indexOf('.') >= 0) {

// Check if the field is a free-form response
if (header.key == "application.shortAnswer.question1" || header.key == "application.shortAnswer.question2" || header.key == "application.shortAnswer.comments") {
free_response = true
}

// Get the value of the field by navigating the nested structure of the hacker object,
// using the header key to determine the path
const nestedAttr = header.key.split('.');
value = getNestedAttr(result.hacker, nestedAttr);

// Format free responses to be properly parsed as tab-separated value (TSV)
if (free_response == true){

// If the value contains a tab, wrap it in double quotes
if (value.includes('\t')) {
value = `"${value}"`;
}
}

} else {
value = result.hacker[header.key];
}
Expand All @@ -297,6 +320,7 @@ class SearchContainer extends React.Component<{}, ISearchState> {
csvData.push(row.join('\t'));
}
});

fileDownload(csvData.join('\n'), 'hackerData.tsv', 'text/tsv');
}

Expand Down

0 comments on commit 51fedb2

Please sign in to comment.