Compare commits
2 Commits
316e4ab50c
...
69115b9e64
Author | SHA1 | Date | |
---|---|---|---|
69115b9e64 | |||
7118a597f1 |
@ -174,7 +174,13 @@ export default function generateSurveyQuestions(clusters: RequestCluster[]) {
|
|||||||
{
|
{
|
||||||
type: 'html',
|
type: 'html',
|
||||||
name: 'intro',
|
name: 'intro',
|
||||||
html: '<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Ab, odit dicta at aut esse culpa eveniet iure odio voluptates veniam sit. Libero explicabo, perspiciatis ad expedita officiis inventore impedit ducimus!</p>',
|
html: /* HTML */ `<p>
|
||||||
|
Analiza ruchu strony zakończona. Aby lepiej oszacować, gdzie są
|
||||||
|
potencjalne obszary robocze pod względem zgodności z RODO, możesz
|
||||||
|
udzielić odpowiedzi na pytania dotyczące funkcjonowania strony. Wtyczka
|
||||||
|
wtedy wygeneruje raport lub treść maila, którą możesz wysłać do
|
||||||
|
administratora strony.
|
||||||
|
</p>`,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
@ -37,7 +37,6 @@ export default class NoInformationAtAllProblem extends Problem {
|
|||||||
|
|
||||||
if (
|
if (
|
||||||
this.getMarkedClusters().some((cluster) => {
|
this.getMarkedClusters().some((cluster) => {
|
||||||
console.log(cluster);
|
|
||||||
return cluster.hasMarkedCookies();
|
return cluster.hasMarkedCookies();
|
||||||
})
|
})
|
||||||
) {
|
) {
|
||||||
|
@ -12,7 +12,6 @@ export default function useSurvey(
|
|||||||
const [survey, setSurvey] = React.useState<Survey.Model>(null);
|
const [survey, setSurvey] = React.useState<Survey.Model>(null);
|
||||||
React.useEffect(() => {
|
React.useEffect(() => {
|
||||||
const model = generateSurveyQuestions(clusters);
|
const model = generateSurveyQuestions(clusters);
|
||||||
console.log(model);
|
|
||||||
const survey = new Survey.Model(model);
|
const survey = new Survey.Model(model);
|
||||||
survey.onProcessTextValue.add(function (
|
survey.onProcessTextValue.add(function (
|
||||||
sender: Survey.SurveyModel,
|
sender: Survey.SurveyModel,
|
||||||
|
@ -119,10 +119,6 @@ export default function StolenDataCluster({
|
|||||||
const fullHosts = cluster.getFullHosts();
|
const fullHosts = cluster.getFullHosts();
|
||||||
const [version] = useEmitter(cluster);
|
const [version] = useEmitter(cluster);
|
||||||
|
|
||||||
/* console.log('Stolen data cluster!', shorthost, refreshToken); */
|
|
||||||
|
|
||||||
console.log(cluster.getMarkedEntries());
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="stolen-data-cluster-container">
|
<div className="stolen-data-cluster-container">
|
||||||
<header className="domains-container">
|
<header className="domains-container">
|
||||||
|
@ -91,9 +91,6 @@ export default class ExtendedRequest {
|
|||||||
this.url = data.url;
|
this.url = data.url;
|
||||||
this.shorthost = getshorthost(data.url);
|
this.shorthost = getshorthost(data.url);
|
||||||
this.requestBody = ((data as any).requestBody as undefined | RequestBody) || {};
|
this.requestBody = ((data as any).requestBody as undefined | RequestBody) || {};
|
||||||
if (this.url.includes('criteo')) {
|
|
||||||
console.log(this);
|
|
||||||
}
|
|
||||||
ExtendedRequest.by_id[data.requestId] = this;
|
ExtendedRequest.by_id[data.requestId] = this;
|
||||||
|
|
||||||
this.data = Object.assign({}, data);
|
this.data = Object.assign({}, data);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user