import React from 'react'; import { RequestCluster } from '../request-cluster'; import { Classifications, Sources } from '../stolen-data-entry'; const emailClassifications: Record = { id: 'mój identyfikator internetowy', history: 'część mojej historii przeglądania', location: 'informacje na temat mojej lokalizacji geograficznej', }; const emailSources: Record = { header: 'w nagłówku HTTP', cookie: 'z pliku Cookie', pathname: 'jako części adresu URL', queryparams: 'jako część adresu URL (query-params)', request_body: 'w body zapytania POST', }; export default function DomainSummary({ cluster, }: { cluster: RequestCluster; }) { return (
  • Właścicielowi domeny {cluster.id} zostały ujawnione:{' '}
      {cluster.representativeStolenData .filter((entry) => entry.isMarked) .map((entry) => (
    • {emailClassifications[entry.classification]}{' '} {emailSources[entry.source]} (nazwa:{' '} {entry.name}, wartość:{' '} {entry.getValuePreview()})
    • ))}
  • ); }