mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2025-01-12 19:27:29 +03:00
31 lines
896 B
TypeScript
31 lines
896 B
TypeScript
|
import type { JsonToCsv } from '../../../src/utils/helpers/csvjson';
|
||
|
import { saveCsv } from '../../../src/utils/helpers/files';
|
||
|
import type { ExportableShortUrl } from '../../short-urls/data';
|
||
|
import type { NormalizedVisit } from '../../visits/types';
|
||
|
|
||
|
export class ReportExporter {
|
||
|
public constructor(private readonly window: Window, private readonly jsonToCsv: JsonToCsv) {
|
||
|
}
|
||
|
|
||
|
public readonly exportVisits = (filename: string, visits: NormalizedVisit[]) => {
|
||
|
if (!visits.length) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
this.exportCsv(filename, visits);
|
||
|
};
|
||
|
|
||
|
public readonly exportShortUrls = (shortUrls: ExportableShortUrl[]) => {
|
||
|
if (!shortUrls.length) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
this.exportCsv('short_urls.csv', shortUrls);
|
||
|
};
|
||
|
|
||
|
private readonly exportCsv = (filename: string, rows: object[]) => {
|
||
|
const csv = this.jsonToCsv(rows);
|
||
|
saveCsv(this.window, csv, filename);
|
||
|
};
|
||
|
}
|