2022-05-05 07:52:08 +00:00
|
|
|
export function parseCSV(text: string): string[][] {
|
|
|
|
// Works on RFC 4180 csv
|
|
|
|
let rows = splitCsvBlock(text);
|
|
|
|
if (rows.length === 1) {
|
|
|
|
rows = splitCsvBlock(text, '\n');
|
2022-02-22 06:30:37 +00:00
|
|
|
}
|
2022-05-05 07:52:08 +00:00
|
|
|
return rows.map(splitCsvLine);
|
|
|
|
}
|
2022-02-22 06:30:37 +00:00
|
|
|
|
2022-05-05 07:52:08 +00:00
|
|
|
export function generateCSV(matrix: unknown[][]): string {
|
|
|
|
// Generates RFC 4180 csv
|
|
|
|
const formattedRows = getFormattedRows(matrix);
|
|
|
|
return formattedRows.join('\r\n');
|
2022-02-22 06:30:37 +00:00
|
|
|
}
|
|
|
|
|
2023-06-22 08:52:54 +00:00
|
|
|
function splitCsvBlock(text: string, splitter = '\r\n'): string[] {
|
2022-04-03 11:52:57 +00:00
|
|
|
if (!text.endsWith(splitter)) {
|
|
|
|
text += splitter;
|
2022-02-22 06:30:37 +00:00
|
|
|
}
|
|
|
|
const lines = [];
|
|
|
|
let line = '';
|
|
|
|
let inDq = false;
|
|
|
|
|
|
|
|
for (let i = 0; i <= text.length; i++) {
|
|
|
|
const c = text[i];
|
|
|
|
|
|
|
|
if (
|
|
|
|
c === '"' &&
|
|
|
|
((c[i + 1] === '"' && c[i + 2] === '"') || c[i + 1] !== '"')
|
|
|
|
) {
|
|
|
|
inDq = !inDq;
|
|
|
|
}
|
|
|
|
|
2022-04-03 11:52:57 +00:00
|
|
|
const isEnd = [...splitter]
|
|
|
|
.slice(1)
|
|
|
|
.map((s, j) => text[i + j + 1] === s)
|
|
|
|
.every(Boolean);
|
|
|
|
|
|
|
|
if (!inDq && c === splitter[0] && isEnd) {
|
2022-02-22 06:30:37 +00:00
|
|
|
lines.push(line);
|
|
|
|
line = '';
|
2022-04-03 11:52:57 +00:00
|
|
|
i = i + splitter.length - 1;
|
2022-02-22 06:30:37 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
line += c;
|
|
|
|
}
|
|
|
|
|
|
|
|
return lines;
|
|
|
|
}
|
|
|
|
|
2022-05-19 07:30:28 +00:00
|
|
|
export function splitCsvLine(line: string): string[] {
|
|
|
|
line += ',';
|
2022-02-22 06:30:37 +00:00
|
|
|
|
|
|
|
const items = [];
|
|
|
|
let item = '';
|
|
|
|
let inDq = false;
|
|
|
|
|
|
|
|
for (let i = 0; i < line.length; i++) {
|
|
|
|
const c = line[i];
|
|
|
|
|
|
|
|
if (
|
|
|
|
c === '"' &&
|
|
|
|
((c[i + 1] === '"' && c[i + 2] === '"') || c[i + 1] !== '"')
|
|
|
|
) {
|
|
|
|
inDq = !inDq;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!inDq && c === ',') {
|
|
|
|
item = unwrapDq(item);
|
|
|
|
item = item.replaceAll('""', '"');
|
|
|
|
items.push(item);
|
|
|
|
item = '';
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
item += c;
|
|
|
|
}
|
|
|
|
|
|
|
|
return items;
|
|
|
|
}
|
|
|
|
|
2022-05-05 07:52:08 +00:00
|
|
|
function unwrapDq(item: string): string {
|
|
|
|
const s = item.at(0);
|
|
|
|
const e = item.at(-1);
|
|
|
|
if (s === '"' && e === '"') {
|
|
|
|
return item.slice(1, -1);
|
2022-04-03 11:52:57 +00:00
|
|
|
}
|
2022-05-05 07:52:08 +00:00
|
|
|
|
|
|
|
return item;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getFormattedRows(matrix: unknown[][]): string[] {
|
|
|
|
const formattedMatrix: string[] = [];
|
|
|
|
for (const row of matrix) {
|
|
|
|
const formattedRow: string[] = [];
|
|
|
|
for (const item of row) {
|
|
|
|
const formattedItem = getFormattedItem(item);
|
|
|
|
formattedRow.push(formattedItem);
|
|
|
|
}
|
|
|
|
formattedMatrix.push(formattedRow.join(','));
|
|
|
|
}
|
|
|
|
|
|
|
|
return formattedMatrix;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getFormattedItem(item: unknown): string {
|
|
|
|
if (typeof item === 'string') {
|
|
|
|
return formatStringToCSV(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item === null || item === undefined) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof item === 'object') {
|
|
|
|
return item.toString();
|
|
|
|
}
|
|
|
|
|
|
|
|
return String(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
function formatStringToCSV(item: string): string {
|
|
|
|
let shouldDq = false;
|
|
|
|
if (item.match(/^".*"$/)) {
|
|
|
|
shouldDq = true;
|
|
|
|
item = item.slice(1, -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item.match(/"/)) {
|
|
|
|
shouldDq = true;
|
|
|
|
item = item.replaceAll('"', '""');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (item.match(/,|\s/)) {
|
|
|
|
shouldDq = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (shouldDq) {
|
|
|
|
return '"' + item + '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
return item;
|
2022-02-22 06:30:37 +00:00
|
|
|
}
|