mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-26 19:08:23 +03:00
30 lines
861 B
TypeScript
30 lines
861 B
TypeScript
import type { ExportableShortUrl } from '../../short-urls/data';
|
|
import type { NormalizedVisit } from '../../visits/types';
|
|
import { saveCsv } from '../helpers/files';
|
|
import type { JsonToCsv } from '../helpers/json';
|
|
|
|
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);
|
|
};
|
|
}
|