New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

react-csv-downloader

Package Overview
Dependencies
Maintainers
0
Versions
33
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-csv-downloader - npm Package Compare versions

Comparing version

to
3.2.0

eslint.config.mjs

6

CHANGELOG.md
# Change Log
## [3.2.0] - 2024-12-18
### Added
- Allowing number type [#450](https://github.com/dolezel/react-csv-downloader/pull/450)
## [3.1.1] - 2024-09-17

@@ -4,0 +10,0 @@

1

dist/cjs/index.js

@@ -31,3 +31,2 @@ "use strict";

super(...arguments);
// eslint-disable-next-line sonarjs/cognitive-complexity
this.handleClick = () => __awaiter(this, void 0, void 0, function* () {

@@ -34,0 +33,0 @@ const { suffix, prefix, bom, extension, disabled, meta, separator, handleError, handleEmpty } = this.props;

@@ -8,3 +8,3 @@ export interface IColumn {

export type Datas = (string[] | {
[key: string]: string | null | undefined;
[key: string]: string | number | null | undefined;
})[];

@@ -11,0 +11,0 @@ export interface ICsvProps {

@@ -65,7 +65,7 @@ "use strict";

const chunk = chunks[i];
// @ts-expect-error
// @ts-expect-error 7053
const asArray = Array.isArray(chunk[0]) && !columnOrder.some((k) => typeof chunk[0][k] !== 'undefined');
i += 1;
chunk
// @ts-expect-error
// @ts-expect-error 7053
.map((v) => (asArray ? v : columnOrder.map((k) => { var _a; return (_a = v[k]) !== null && _a !== void 0 ? _a : ''; })))

@@ -72,0 +72,0 @@ .forEach((v) => {

@@ -12,5 +12,4 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
/* eslint-disable sonarjs/no-duplicate-string,sonarjs/no-identical-functions */
const chai_1 = require("chai");
const csv_1 = require("./csv");
const expect = globalThis.expect;
const newLine = '\r\n';

@@ -40,3 +39,3 @@ const columnSet1 = [{ id: 'cell1' }];

const result = yield (0, csv_1.default)({ columns: [], datas: [] });
(0, chai_1.expect)(result).to.equal(``);
expect(result).to.equal(``);
}));

@@ -47,19 +46,19 @@ describe('Default separator', () => {

const result = yield (0, csv_1.default)({ columns: columnSet1, datas: dataSet1 });
(0, chai_1.expect)(result).to.equal(`cell1${newLine}row1`);
expect(result).to.equal(`cell1${newLine}row1`);
}));
it('Multiple cell', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: columnSet2, datas: dataSet2 });
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
expect(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
}));
it('Header display name', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: columnSet3, datas: dataSet1 });
(0, chai_1.expect)(result).to.equal(`Cell name${newLine}row1`);
expect(result).to.equal(`Cell name${newLine}row1`);
}));
it('Ordered cell', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: columnSet4, datas: dataSet2 });
(0, chai_1.expect)(result).to.equal(`cell2${separator}cell1${newLine}row1${separator}row1`);
expect(result).to.equal(`cell2${separator}cell1${newLine}row1${separator}row1`);
}));
it('Ordered cell 2', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: columnSet5, datas: dataSet8 });
(0, chai_1.expect)(result).to.equal(`FirstC${separator}SecondC${separator}ThirdC${newLine}FirstD${separator}SecondD${separator}ThirdD`);
expect(result).to.equal(`FirstC${separator}SecondC${separator}ThirdC${newLine}FirstD${separator}SecondD${separator}ThirdD`);
}));

@@ -73,19 +72,19 @@ it('No header', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal('row1');
expect(result).to.equal('row1');
}));
it('Auto header', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: false, datas: dataSet2 });
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
expect(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
}));
it('array of array datas - single row', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: false, datas: dataSet3 });
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2`);
expect(result).to.equal(`cell1${separator}cell2`);
}));
it('array of array datas - multiple row', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: false, datas: dataSet4 });
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2${newLine}cell1${separator}cell2`);
expect(result).to.equal(`cell1${separator}cell2${newLine}cell1${separator}cell2`);
}));
it('array of array datas - with header', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: columnSet4, datas: dataSet4 });
(0, chai_1.expect)(result).to.equal(`cell2${separator}cell1${newLine}cell1${separator}cell2${newLine}cell1${separator}cell2`);
expect(result).to.equal(`cell2${separator}cell1${newLine}cell1${separator}cell2${newLine}cell1${separator}cell2`);
}));

@@ -102,3 +101,3 @@ });

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}`);
}));

@@ -111,3 +110,3 @@ it('Multiple cell', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}${separator}${wrapColumnChar}row1${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}${separator}${wrapColumnChar}row1${wrapColumnChar}`);
}));

@@ -120,3 +119,3 @@ it('Header display name', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}Cell name${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}Cell name${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}`);
}));

@@ -129,3 +128,3 @@ it('Ordered cell', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}cell2${wrapColumnChar}${separator}${wrapColumnChar}cell1${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}${separator}${wrapColumnChar}row1${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}cell2${wrapColumnChar}${separator}${wrapColumnChar}cell1${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}${separator}${wrapColumnChar}row1${wrapColumnChar}`);
}));

@@ -140,3 +139,3 @@ it('No header', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}row1${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}row1${wrapColumnChar}`);
}));

@@ -149,3 +148,3 @@ it('Auto header', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}${separator}${wrapColumnChar}row1${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}row1${wrapColumnChar}${separator}${wrapColumnChar}row1${wrapColumnChar}`);
}));

@@ -158,3 +157,3 @@ it('array of array datas - single row', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}`);
}));

@@ -167,3 +166,3 @@ it('array of array datas - multiple row', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}`);
}));

@@ -176,3 +175,3 @@ it('array of array datas - with header', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`${wrapColumnChar}cell2${wrapColumnChar}${separator}${wrapColumnChar}cell1${wrapColumnChar}${newLine}${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}`);
expect(result).to.equal(`${wrapColumnChar}cell2${wrapColumnChar}${separator}${wrapColumnChar}cell1${wrapColumnChar}${newLine}${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}${newLine}${wrapColumnChar}cell1${wrapColumnChar}${separator}${wrapColumnChar}cell2${wrapColumnChar}`);
}));

@@ -188,3 +187,3 @@ });

});
(0, chai_1.expect)(result).to.equal(`cell1${newLine}row1`);
expect(result).to.equal(`cell1${newLine}row1`);
}));

@@ -197,3 +196,3 @@ it('Multiple cell', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
expect(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
}));

@@ -206,3 +205,3 @@ it('Header display name', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`Cell name${newLine}row1`);
expect(result).to.equal(`Cell name${newLine}row1`);
}));

@@ -215,3 +214,3 @@ it('Ordered cell', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`cell2${separator}cell1${newLine}row1${separator}row1`);
expect(result).to.equal(`cell2${separator}cell1${newLine}row1${separator}row1`);
}));

@@ -225,15 +224,15 @@ it('No header', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal('row1');
expect(result).to.equal('row1');
}));
it('Auto header', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: false, datas: dataSet2, separator });
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
expect(result).to.equal(`cell1${separator}cell2${newLine}row1${separator}row1`);
}));
it('array of array datas - single row', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: false, datas: dataSet3, separator });
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2`);
expect(result).to.equal(`cell1${separator}cell2`);
}));
it('array of array datas - multiple row', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: false, datas: dataSet4, separator });
(0, chai_1.expect)(result).to.equal(`cell1${separator}cell2${newLine}cell1${separator}cell2`);
expect(result).to.equal(`cell1${separator}cell2${newLine}cell1${separator}cell2`);
}));

@@ -246,3 +245,3 @@ it('array of array datas - with header', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`cell2${separator}cell1${newLine}cell1${separator}cell2${newLine}cell1${separator}cell2`);
expect(result).to.equal(`cell2${separator}cell1${newLine}cell1${separator}cell2${newLine}cell1${separator}cell2`);
}));

@@ -257,3 +256,3 @@ });

});
(0, chai_1.expect)(result).to.equal(`cell1${newLine}row1${newLine}row2`);
expect(result).to.equal(`cell1${newLine}row1${newLine}row2`);
}));

@@ -266,3 +265,3 @@ it('should insert new line at end', () => __awaiter(void 0, void 0, void 0, function* () {

});
(0, chai_1.expect)(result).to.equal(`cell1${newLine}row1${newLine}row2${newLine}`);
expect(result).to.equal(`cell1${newLine}row1${newLine}row2${newLine}`);
}));

@@ -277,3 +276,3 @@ });

});
(0, chai_1.expect)(result).to.equal(`cell1${newLine}row1${newLine}row2`);
expect(result).to.equal(`cell1${newLine}row1${newLine}row2`);
}));

@@ -284,7 +283,7 @@ });

const result = yield (0, csv_1.default)({ columns: columnSet1, datas: dataSet6 });
(0, chai_1.expect)(result).to.equal(`cell1${newLine}row1${newLine}${newLine}row3`);
expect(result).to.equal(`cell1${newLine}row1${newLine}${newLine}row3`);
}));
it('should convert null to empty field', () => __awaiter(void 0, void 0, void 0, function* () {
const result = yield (0, csv_1.default)({ columns: columnSet1, datas: dataSet7 });
(0, chai_1.expect)(result).to.equal(`cell1${newLine}row1${newLine}${newLine}row3`);
expect(result).to.equal(`cell1${newLine}row1${newLine}${newLine}row3`);
}));

@@ -294,3 +293,3 @@ });

it('should not duplicate columns', () => __awaiter(void 0, void 0, void 0, function* () {
let data = [
const data = [
{ k1: 'v1', k2: 'v2' },

@@ -301,6 +300,17 @@ { k1: 'v3', k2: 'v4' },

const result = yield (0, csv_1.default)({ datas: data });
(0, chai_1.expect)(result).to.equal(`k1,k2${newLine}v1,v2${newLine}v3,v4${newLine}v5,v6`);
expect(result).to.equal(`k1,k2${newLine}v1,v2${newLine}v3,v4${newLine}v5,v6`);
}));
});
describe('Numbers', () => {
it('should be ok', () => __awaiter(void 0, void 0, void 0, function* () {
const people = [
{ name: 'Alice', age: 25 },
{ name: 'Bob', age: 27 },
{ name: 'Charlie', age: 40 },
];
const result = yield (0, csv_1.default)({ datas: people });
expect(result).to.equal(`name,age${newLine}Alice,25${newLine}Bob,27${newLine}Charlie,40`);
}));
});
});
//# sourceMappingURL=csv.spec.js.map

@@ -28,3 +28,2 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

super(...arguments);
// eslint-disable-next-line sonarjs/cognitive-complexity
this.handleClick = () => __awaiter(this, void 0, void 0, function* () {

@@ -31,0 +30,0 @@ const { suffix, prefix, bom, extension, disabled, meta, separator, handleError, handleEmpty } = this.props;

@@ -8,3 +8,3 @@ export interface IColumn {

export type Datas = (string[] | {
[key: string]: string | null | undefined;
[key: string]: string | number | null | undefined;
})[];

@@ -11,0 +11,0 @@ export interface ICsvProps {

@@ -62,7 +62,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

const chunk = chunks[i];
// @ts-expect-error
// @ts-expect-error 7053
const asArray = Array.isArray(chunk[0]) && !columnOrder.some((k) => typeof chunk[0][k] !== 'undefined');
i += 1;
chunk
// @ts-expect-error
// @ts-expect-error 7053
.map((v) => (asArray ? v : columnOrder.map((k) => { var _a; return (_a = v[k]) !== null && _a !== void 0 ? _a : ''; })))

@@ -69,0 +69,0 @@ .forEach((v) => {

@@ -10,5 +10,4 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {

};
/* eslint-disable sonarjs/no-duplicate-string,sonarjs/no-identical-functions */
import { expect } from 'chai';
import csv from './csv';
const expect = globalThis.expect;
const newLine = '\r\n';

@@ -270,3 +269,3 @@ const columnSet1 = [{ id: 'cell1' }];

it('should not duplicate columns', () => __awaiter(void 0, void 0, void 0, function* () {
let data = [
const data = [
{ k1: 'v1', k2: 'v2' },

@@ -280,3 +279,14 @@ { k1: 'v3', k2: 'v4' },

});
describe('Numbers', () => {
it('should be ok', () => __awaiter(void 0, void 0, void 0, function* () {
const people = [
{ name: 'Alice', age: 25 },
{ name: 'Bob', age: 27 },
{ name: 'Charlie', age: 40 },
];
const result = yield csv({ datas: people });
expect(result).to.equal(`name,age${newLine}Alice,25${newLine}Bob,27${newLine}Charlie,40`);
}));
});
});
//# sourceMappingURL=csv.spec.js.map
{
"name": "react-csv-downloader",
"version": "3.1.1",
"version": "3.2.0",
"description": "React csv downloader",

@@ -9,4 +9,4 @@ "main": "dist/cjs/index.js",

"scripts": {
"test": "mocha --require ./mocha.bootstrap.js \"src/**/*.spec.ts\"",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"test": "mocha --require ./mocha.bootstrap.js --require chai/register-expect.js \"src/**/*.spec.ts\"",
"lint": "eslint",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|jsx|ts|tsx|json)\"",

@@ -45,23 +45,24 @@ "start": "npm start --prefix example",

"devDependencies": {
"@types/chai": "4.3.19",
"@eslint/js": "9.17.0",
"@types/chai": "5.0.1",
"@types/file-saver": "2.0.7",
"@types/mocha": "10.0.8",
"@types/node": "20.16.5",
"@types/react": "18.3.6",
"@typescript-eslint/eslint-plugin": "8.6.0",
"@typescript-eslint/parser": "8.6.0",
"chai": "4.5.0",
"eslint": "8.57.0",
"@types/mocha": "10.0.10",
"@types/node": "22.10.2",
"@types/react": "18.3.16",
"chai": "5.1.2",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.30.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.36.1",
"eslint-plugin-react-hooks": "4.6.2",
"eslint-plugin-sonarjs": "0.25.1",
"mocha": "10.7.3",
"prettier": "3.3.3",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-sonarjs": "3.0.1",
"globals": "15.13.0",
"mocha": "11.0.1",
"prettier": "3.4.2",
"react": "18.3.1",
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"typescript": "5.6.2"
"typescript": "5.7.2",
"typescript-eslint": "8.18.1"
},

@@ -68,0 +69,0 @@ "peerDependencies": {

@@ -1,5 +0,5 @@

/* eslint-disable sonarjs/no-duplicate-string,sonarjs/no-identical-functions */
import { expect } from 'chai'
import csv from './csv'
const expect = (globalThis as { expect?: Chai.ExpectStatic }).expect!
const newLine = '\r\n'

@@ -316,3 +316,3 @@

it('should not duplicate columns', async () => {
let data = [
const data = [
{ k1: 'v1', k2: 'v2' },

@@ -326,2 +326,14 @@ { k1: 'v3', k2: 'v4' },

})
describe('Numbers', () => {
it('should be ok', async () => {
const people = [
{ name: 'Alice', age: 25 },
{ name: 'Bob', age: 27 },
{ name: 'Charlie', age: 40 },
]
const result = await csv({ datas: people })
expect(result).to.equal(`name,age${newLine}Alice,25${newLine}Bob,27${newLine}Charlie,40`)
})
})
})

@@ -8,3 +8,3 @@ export interface IColumn {

export type Columns = ColumnsDefinition | undefined | false
export type Datas = (string[] | { [key: string]: string | null | undefined })[]
export type Datas = (string[] | { [key: string]: string | number | null | undefined })[]

@@ -91,7 +91,7 @@ interface Header {

const chunk = chunks[i]
// @ts-expect-error
// @ts-expect-error 7053
const asArray = Array.isArray(chunk[0]) && !columnOrder.some((k) => typeof chunk[0][k] !== 'undefined')
i += 1
chunk
// @ts-expect-error
// @ts-expect-error 7053
.map((v) => (asArray ? v : columnOrder.map((k) => v[k] ?? '')) as string[])

@@ -98,0 +98,0 @@ .forEach((v) => {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet