-
Notifications
You must be signed in to change notification settings - Fork 522
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
feat: export as markdown #245
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -48,7 +48,6 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, [row.serializableOutput]); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Function to convert table data to CSV format | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const convertToCSV = (data: any[], columns: string[]): string => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const header = columns.join(','); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -58,6 +57,29 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return [header, ...rows].join('\n'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const convertToMarkdown = (data: any[], columns: string[]): string => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const headerRow = `| ${columns.join(' | ')} |`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Create separator row for Markdown tables | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const separatorRow = `| ${columns.map(() => '---').join(' | ')} |`; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const dataRows = data.map(row => | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
`| ${columns.map(col => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const value = row[col]; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return value === undefined || value === "" ? "-" : | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
String(value).replace(/\|/g, '\\|').replace(/\n/g, ' '); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}).join(' | ')} |` | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return [headerRow, separatorRow, ...dataRows].join('\n'); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const downloadCSV = () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const csvContent = convertToCSV(tableData, columns); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const blob = new Blob([csvContent], { type: 'text/csv;charset=utf-8;' }); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -71,6 +93,19 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
document.body.removeChild(link); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const downloadMarkdown = () => { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const markdownContent = convertToMarkdown(tableData, columns); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const blob = new Blob([markdownContent], { type: 'text/markdown;charset=utf-8;' }); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const url = URL.createObjectURL(blob); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
const link = document.createElement("a"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
link.href = url; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
link.setAttribute("download", "data.md"); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
document.body.appendChild(link); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
link.click(); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
document.body.removeChild(link); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+96
to
+107
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🛠️ Refactor suggestion Add cleanup and error handling to downloadMarkdown function The current implementation might cause memory leaks and doesn't handle potential errors. const downloadMarkdown = () => {
- const markdownContent = convertToMarkdown(tableData, columns);
- const blob = new Blob([markdownContent], { type: 'text/markdown;charset=utf-8;' });
- const url = URL.createObjectURL(blob);
+ try {
+ const markdownContent = convertToMarkdown(tableData, columns);
+ const blob = new Blob([markdownContent], { type: 'text/markdown;charset=utf-8;' });
+ const url = URL.createObjectURL(blob);
- const link = document.createElement("a");
- link.href = url;
- link.setAttribute("download", "data.md");
- document.body.appendChild(link);
- link.click();
- document.body.removeChild(link);
+ const link = document.createElement("a");
+ link.href = url;
+ link.setAttribute("download", "data.md");
+ document.body.appendChild(link);
+ link.click();
+ document.body.removeChild(link);
+ URL.revokeObjectURL(url);
+ } catch (error) {
+ console.error('Failed to download markdown:', error);
+ // Consider adding user feedback here
+ }
}; The changes:
📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Box sx={{ width: '100%' }}> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<TabContext value={tab}> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -129,6 +164,11 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<a style={{ textDecoration: 'none', cursor: 'pointer' }}>Download as CSV</a> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</Typography> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<Typography | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
onClick={downloadMarkdown} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<a style={{ textDecoration: 'none', cursor: 'pointer' }}>Download as Markdown</a> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</Typography> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</Box> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{tableData.length > 0 ? ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
<TableContainer component={Paper} sx={{ maxHeight: 440, marginTop: 2 }}> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -199,4 +239,4 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</TabContext> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
</Box> | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🛠️ Refactor suggestion
Enhance the robustness of Markdown conversion
The implementation needs improvements in type safety and data handling:
The changes:
📝 Committable suggestion