Cleanup
This commit is contained in:
parent
3271af3896
commit
f44daf4909
|
@ -25,7 +25,6 @@ export default function EmailContent({
|
||||||
downloadFiles: Function;
|
downloadFiles: Function;
|
||||||
user_role: string;
|
user_role: string;
|
||||||
}) {
|
}) {
|
||||||
console.log('rendering email!', answers);
|
|
||||||
const _ = (key: string) => v(key, answers.zaimek);
|
const _ = (key: string) => v(key, answers.zaimek);
|
||||||
const problems = deduceProblems(answers, clusters);
|
const problems = deduceProblems(answers, clusters);
|
||||||
const explainers = Array.from(
|
const explainers = Array.from(
|
||||||
|
|
|
@ -4,7 +4,6 @@ import { ParsedAnswers } from '../parse-answers';
|
||||||
|
|
||||||
function formatRange(cluster: RequestCluster) {
|
function formatRange(cluster: RequestCluster) {
|
||||||
const parts = [] as string[];
|
const parts = [] as string[];
|
||||||
console.log(cluster);
|
|
||||||
if (cluster.hasMarkedCookies()) {
|
if (cluster.hasMarkedCookies()) {
|
||||||
parts.push('mojego identyfikatora internetowego pozyskanego z Cookie');
|
parts.push('mojego identyfikatora internetowego pozyskanego z Cookie');
|
||||||
}
|
}
|
||||||
|
|
|
@ -135,9 +135,6 @@ export default function ScreenshotGenerator({
|
||||||
setTaskId(urlArr[urlArr.length - 1]);
|
setTaskId(urlArr[urlArr.length - 1]);
|
||||||
const response = await subscribeTask(task.url);
|
const response = await subscribeTask(task.url);
|
||||||
setImages(response.images);
|
setImages(response.images);
|
||||||
console.log('response.images', response.images);
|
|
||||||
console.log('output', response);
|
|
||||||
|
|
||||||
setOutput(response);
|
setOutput(response);
|
||||||
setRequestPath(response.zip_url);
|
setRequestPath(response.zip_url);
|
||||||
}}
|
}}
|
||||||
|
|
|
@ -19,25 +19,19 @@ let skipReactImports = {
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
build.onLoad(
|
build.onLoad({ filter: /.*/, namespace: 'globalExternal_react' }, () => {
|
||||||
{ filter: /.*/, namespace: 'globalExternal_react' },
|
return {
|
||||||
() => {
|
contents: `module.exports = globalThis.React`,
|
||||||
return {
|
loader: 'js',
|
||||||
contents: `module.exports = globalThis.React`,
|
};
|
||||||
loader: 'js',
|
});
|
||||||
};
|
|
||||||
}
|
|
||||||
);
|
|
||||||
|
|
||||||
build.onLoad(
|
build.onLoad({ filter: /.*/, namespace: 'globalExternal_react-dom' }, () => {
|
||||||
{ filter: /.*/, namespace: 'globalExternal_react-dom' },
|
return {
|
||||||
() => {
|
contents: `module.exports = globalThis.ReactDOM`,
|
||||||
return {
|
loader: 'js',
|
||||||
contents: `module.exports = globalThis.ReactDOM`,
|
};
|
||||||
loader: 'js',
|
});
|
||||||
};
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -46,11 +40,10 @@ esbuild
|
||||||
entryPoints: [
|
entryPoints: [
|
||||||
'components/toolbar/toolbar.tsx',
|
'components/toolbar/toolbar.tsx',
|
||||||
'components/sidebar/sidebar.tsx',
|
'components/sidebar/sidebar.tsx',
|
||||||
'test.ts',
|
|
||||||
'components/report-window/report-window.tsx',
|
'components/report-window/report-window.tsx',
|
||||||
'background.ts',
|
'background.ts',
|
||||||
'styles/global.scss',
|
'styles/global.scss',
|
||||||
'styles/fonts.scss'
|
'styles/fonts.scss',
|
||||||
],
|
],
|
||||||
bundle: true,
|
bundle: true,
|
||||||
// minify: true,
|
// minify: true,
|
||||||
|
|
|
@ -97,8 +97,6 @@ export default class ExtendedRequest {
|
||||||
(this.data as any).frameAncestors = [
|
(this.data as any).frameAncestors = [
|
||||||
...(data as any).frameAncestors.map((e: any) => ({ url: e.url })),
|
...(data as any).frameAncestors.map((e: any) => ({ url: e.url })),
|
||||||
];
|
];
|
||||||
|
|
||||||
// console.log('→→→',(this.data as any).frameAncestors, (data as any).frameAncestors);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
addHeaders(headers: Request['requestHeaders']) {
|
addHeaders(headers: Request['requestHeaders']) {
|
||||||
|
|
|
@ -78,7 +78,6 @@ export default class Memory extends SaferEmitter {
|
||||||
if (shorthost) {
|
if (shorthost) {
|
||||||
const cookies = await browser.cookies.getAll({ domain: shorthost });
|
const cookies = await browser.cookies.getAll({ domain: shorthost });
|
||||||
for (const cookie of cookies) {
|
for (const cookie of cookies) {
|
||||||
console.log('removing cookie', cookie.name, 'from', cookie.domain);
|
|
||||||
await browser.cookies.remove({
|
await browser.cookies.remove({
|
||||||
name: cookie.name,
|
name: cookie.name,
|
||||||
url: `https://${cookie.domain}`,
|
url: `https://${cookie.domain}`,
|
||||||
|
|
15
test.ts
15
test.ts
|
@ -1,15 +0,0 @@
|
||||||
import ExtendedRequest from "./extended-request";
|
|
||||||
import { StolenDataEntry } from "./stolen-data-entry";
|
|
||||||
import { flattenObject, maskString } from "./util";
|
|
||||||
|
|
||||||
console.log(flattenObject({ a: { b: { c: [1, 2, 3] } } }));
|
|
||||||
|
|
||||||
console.log(maskString("abcdefghijklmnopqrstuvwxyz", 1 / 3, 5));
|
|
||||||
|
|
||||||
console.log(maskString("abcdefghijklmnopqrstuvwxyz", 1, 30));
|
|
||||||
|
|
||||||
console.log(
|
|
||||||
StolenDataEntry.parseValue(
|
|
||||||
`[{"@context":"https://schema.org/","@type":"Product","image":["/medias/sys_master/root/images/h95/h8b/10873724928030/oppo-reno6-black-front.png","/medias/sys_master/root/images/h15/hb9/10873725681694/oppo-reno6-black-side.png","/medias/sys_master/root/images/hf8/h81/10873728729118/oppo-reno6-black-back.png"],"description":"OPPO Reno6 5G bez umowy lub w abonamencie w sklepie Orange. Zamów do domu lub odbierz w salonie w 24h. Transport gratis!","sku":"1100027218","brand":{"@type":"Thing","name":"OPPO"},"offers":{"@type":"Offer","priceCurrency":"PLN","priceValidUntil":"2099-12-31T00:00:00","itemCondition":"https://schema.org/UsedCondition","availability":"https://schema.org/InStock","url":"/esklep/smartfony/oppo/oppo-reno6-5g","seller":{"@type":"Organization","name":"Orange Polska S.A"},"price":"2199"},"name":"OPPO Reno6 5G"},{"@context":"http://schema.org/","@type":"Product","name":"OPPO Reno6 5G","description":"null","offers":{"@type":"Offer","priceCurrency":"PLN","price":"1248.00"}}]`
|
|
||||||
)
|
|
||||||
);
|
|
Loading…
Reference in New Issue
Block a user