import { ExplainerKey } from '../explainers'; import { v } from '../verbs'; import { Problem } from './problem'; export default class NoInformationAtAllProblem extends Problem { qualifies() { return this.answers.popup_type === 'none'; } getEmailContent() { const _ = (word: string) => v(word, this.answers.zaimek); return ( <>

Brak informacji na temat przetwarzania danych osobowych

{_('Moje')} dane osobowe zostały ujawnione podmiotom, które są właścicielami domen:

{this.getRangeDescription()}

Na stronie brakuje jednak jakichkolwiek informacji o tym, jakie są cele przetwarzania takich danych oraz jakie są podstawy prawne takiego przetwarzania.

Zwracam się zatem do Państwa z następującymi pytaniami:

); } getNecessaryExplainers() { const explainers = [] as Array; if ( this.getMarkedClusters().some((cluster) => { console.log(cluster); return cluster.hasMarkedCookies(); }) ) { explainers.push('cookies_are_pii'); explainers.push('responsibility_for_third_parties'); } return explainers; } }