Simplify React import in preparation from using a version from CDN
This commit is contained in:
parent
9c1eb31224
commit
46e6c448b2
|
@ -1,5 +1,4 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { useState } from 'react';
|
|
||||||
import { RequestCluster } from '../request-cluster';
|
import { RequestCluster } from '../request-cluster';
|
||||||
import { StolenDataEntry } from '../stolen-data-entry';
|
import { StolenDataEntry } from '../stolen-data-entry';
|
||||||
import { getDate, toBase64 } from '../util';
|
import { getDate, toBase64 } from '../util';
|
||||||
|
@ -15,12 +14,13 @@ export default function EmailTemplate1({
|
||||||
clusters: Record<string, RequestCluster>;
|
clusters: Record<string, RequestCluster>;
|
||||||
version: number;
|
version: number;
|
||||||
}): JSX.Element {
|
}): JSX.Element {
|
||||||
const [popupState, setPopupState] = useState<PopupState>('not_clicked');
|
const [popupState, setPopupState] =
|
||||||
const [acceptAllName, setAcceptAllName] = useState<string>(
|
React.useState<PopupState>('not_clicked');
|
||||||
|
const [acceptAllName, setAcceptAllName] = React.useState<string>(
|
||||||
'Zaakceptuj wszystkie'
|
'Zaakceptuj wszystkie'
|
||||||
);
|
);
|
||||||
const [popupScreenshotBase64, setPopupScreenshotBase64] =
|
const [popupScreenshotBase64, setPopupScreenshotBase64] =
|
||||||
useState<string>(null);
|
React.useState<string>(null);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { Dispatch, SetStateAction } from 'react';
|
|
||||||
import { toBase64 } from '../util';
|
import { toBase64 } from '../util';
|
||||||
import { EmailTemplate2Config } from './email-template-2';
|
import { EmailTemplate2Config } from './email-template-2';
|
||||||
|
|
||||||
|
@ -8,7 +7,7 @@ export default function EmailTemplate2Controls({
|
||||||
setConfig,
|
setConfig,
|
||||||
}: {
|
}: {
|
||||||
config: EmailTemplate2Config;
|
config: EmailTemplate2Config;
|
||||||
setConfig: Dispatch<SetStateAction<EmailTemplate2Config>>;
|
setConfig: React.Dispatch<React.SetStateAction<EmailTemplate2Config>>;
|
||||||
}): JSX.Element {
|
}): JSX.Element {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { useState } from 'react';
|
import React from 'react';
|
||||||
import { RequestCluster } from '../request-cluster';
|
import { RequestCluster } from '../request-cluster';
|
||||||
import { StolenDataEntry } from '../stolen-data-entry';
|
import { StolenDataEntry } from '../stolen-data-entry';
|
||||||
import { getDate, unique } from '../util';
|
import { getDate, unique } from '../util';
|
||||||
|
@ -75,7 +75,7 @@ export default function EmailTemplate2({
|
||||||
clusters: Record<string, RequestCluster>;
|
clusters: Record<string, RequestCluster>;
|
||||||
version: number;
|
version: number;
|
||||||
}): JSX.Element {
|
}): JSX.Element {
|
||||||
const [config, setConfig] = useState<EmailTemplate2Config>({
|
const [config, setConfig] = React.useState<EmailTemplate2Config>({
|
||||||
popup_type: 'none',
|
popup_type: 'none',
|
||||||
popup_action: 'ignored',
|
popup_action: 'ignored',
|
||||||
popup_screenshot_base64: null,
|
popup_screenshot_base64: null,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { useState } from 'react';
|
import React from 'react';
|
||||||
import { RequestCluster } from '../request-cluster';
|
import { RequestCluster } from '../request-cluster';
|
||||||
import { StolenDataEntry } from '../stolen-data-entry';
|
import { StolenDataEntry } from '../stolen-data-entry';
|
||||||
import EmailTemplate1 from './email-template-1';
|
import EmailTemplate1 from './email-template-1';
|
||||||
|
@ -13,7 +13,7 @@ export default function EmailTemplate({
|
||||||
clusters: Record<string, RequestCluster>;
|
clusters: Record<string, RequestCluster>;
|
||||||
version: number;
|
version: number;
|
||||||
}) {
|
}) {
|
||||||
const [templateVersion, setTemplateVersion] = useState('2');
|
const [templateVersion, setTemplateVersion] = React.useState('2');
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<select
|
<select
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { useEffect, useState } from 'react';
|
import React from 'react';
|
||||||
import { HAREntry } from '../extended-request';
|
import { HAREntry } from '../extended-request';
|
||||||
import { StolenDataEntry } from '../stolen-data-entry';
|
import { StolenDataEntry } from '../stolen-data-entry';
|
||||||
import { getshorthost, unique } from '../util';
|
import { getshorthost, unique } from '../util';
|
||||||
|
@ -80,11 +80,11 @@ export default function HARConverter({
|
||||||
}: {
|
}: {
|
||||||
entries: StolenDataEntry[];
|
entries: StolenDataEntry[];
|
||||||
}) {
|
}) {
|
||||||
const [filtered, setFiltered] = useState<Blob | null>(null);
|
const [filtered, setFiltered] = React.useState<Blob | null>(null);
|
||||||
const [filename, setFilename] = useState('');
|
const [filename, setFilename] = React.useState('');
|
||||||
const [fakeHAR, setFakeHAR] =
|
const [fakeHAR, setFakeHAR] =
|
||||||
useState<ReturnType<typeof generateFakeHAR>>();
|
React.useState<ReturnType<typeof generateFakeHAR>>();
|
||||||
useEffect(() => {
|
React.useEffect(() => {
|
||||||
setFakeHAR(generateFakeHAR(entries));
|
setFakeHAR(generateFakeHAR(entries));
|
||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { useEffect, useState } from 'react';
|
import React from 'react';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
import { getMemory } from '../memory';
|
import { getMemory } from '../memory';
|
||||||
import { Classifications, StolenDataEntry } from '../stolen-data-entry';
|
import { Classifications, StolenDataEntry } from '../stolen-data-entry';
|
||||||
|
@ -88,15 +88,12 @@ function Report() {
|
||||||
console.time('useMemory');
|
console.time('useMemory');
|
||||||
const [counter, setCounter] = useEmitter(getMemory());
|
const [counter, setCounter] = useEmitter(getMemory());
|
||||||
console.timeEnd('useMemory');
|
console.timeEnd('useMemory');
|
||||||
function refresh() {
|
|
||||||
setCounter((c) => c + 1);
|
|
||||||
}
|
|
||||||
console.time('getClustersForOrigin');
|
console.time('getClustersForOrigin');
|
||||||
const clusters = getMemory().getClustersForOrigin(origin);
|
const clusters = getMemory().getClustersForOrigin(origin);
|
||||||
console.timeEnd('getClustersForOrigin');
|
console.timeEnd('getClustersForOrigin');
|
||||||
const [entries, setEntries] = useState<StolenDataEntry[]>([]);
|
const [entries, setEntries] = React.useState<StolenDataEntry[]>([]);
|
||||||
console.time('useEffect report-window');
|
console.time('useEffect report-window');
|
||||||
useEffect(() => {
|
React.useEffect(() => {
|
||||||
setEntries(
|
setEntries(
|
||||||
Object.values(clusters)
|
Object.values(clusters)
|
||||||
.map((cluster) => {
|
.map((cluster) => {
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
import React, { Fragment, useEffect, useState } from 'react';
|
import React from 'react';
|
||||||
import ReactDOM from 'react-dom';
|
import ReactDOM from 'react-dom';
|
||||||
import Options from '../options';
|
import Options from '../options';
|
||||||
import { StolenData } from './stolen-data';
|
import { StolenData } from './stolen-data';
|
||||||
|
@ -17,26 +17,28 @@ import './global.scss';
|
||||||
import './sidebar.scss';
|
import './sidebar.scss';
|
||||||
|
|
||||||
const Sidebar = () => {
|
const Sidebar = () => {
|
||||||
const [origin, setOrigin] = useState<string | null>(null);
|
const [origin, setOrigin] = React.useState<string | null>(null);
|
||||||
const [minValueLength, setMinValueLength] = useState<number | null>(
|
const [minValueLength, setMinValueLength] = React.useState<number | null>(
|
||||||
localStorage.getItem('minValueLength') === null
|
localStorage.getItem('minValueLength') === null
|
||||||
? 7
|
? 7
|
||||||
: (localStorage.getItem('minValueLength') as unknown as number)
|
: (localStorage.getItem('minValueLength') as unknown as number)
|
||||||
);
|
);
|
||||||
const [cookiesOnly, setCookiesOnly] = useState<boolean>(false);
|
const [cookiesOnly, setCookiesOnly] = React.useState<boolean>(false);
|
||||||
const [stolenDataView, setStolenDataView] = useState<boolean>(true);
|
const [stolenDataView, setStolenDataView] = React.useState<boolean>(true);
|
||||||
const [cookiesOrOriginOnly, setCookiesOrOriginOnly] =
|
const [cookiesOrOriginOnly, setCookiesOrOriginOnly] =
|
||||||
useState<boolean>(false);
|
React.useState<boolean>(false);
|
||||||
const [counter, setCounter] = useEmitter(getMemory());
|
const [counter, setCounter] = useEmitter(getMemory());
|
||||||
const [marksOccurrence, setMarksOccurrence] = useState<boolean>(false);
|
const [marksOccurrence, setMarksOccurrence] =
|
||||||
const [warningDataDialogAck, setWarningDataDialogAck] = useState<boolean>(
|
React.useState<boolean>(false);
|
||||||
localStorage.getItem('warningDataDialogAck') === null
|
const [warningDataDialogAck, setWarningDataDialogAck] =
|
||||||
? true
|
React.useState<boolean>(
|
||||||
: localStorage.getItem('warningDataDialogAck') == 'true'
|
localStorage.getItem('warningDataDialogAck') === null
|
||||||
? true
|
? true
|
||||||
: false
|
: localStorage.getItem('warningDataDialogAck') == 'true'
|
||||||
);
|
? true
|
||||||
const [logoVisibility, setLogoVisibility] = useState<boolean>(
|
: false
|
||||||
|
);
|
||||||
|
const [logoVisibility, setLogoVisibility] = React.useState<boolean>(
|
||||||
localStorage.getItem('logoVisibility') === null
|
localStorage.getItem('logoVisibility') === null
|
||||||
? false
|
? false
|
||||||
: localStorage.getItem('logoVisibility') == 'true'
|
: localStorage.getItem('logoVisibility') == 'true'
|
||||||
|
@ -44,7 +46,7 @@ const Sidebar = () => {
|
||||||
: false
|
: false
|
||||||
);
|
);
|
||||||
|
|
||||||
useEffect(() => {
|
React.useEffect(() => {
|
||||||
const listener = async (data: any) => {
|
const listener = async (data: any) => {
|
||||||
console.log('tab change!');
|
console.log('tab change!');
|
||||||
const tab = await getCurrentTab();
|
const tab = await getCurrentTab();
|
||||||
|
@ -60,7 +62,7 @@ const Sidebar = () => {
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
useEffect(() => {
|
React.useEffect(() => {
|
||||||
for (const cluster of Object.values(
|
for (const cluster of Object.values(
|
||||||
getMemory().getClustersForOrigin(origin)
|
getMemory().getClustersForOrigin(origin)
|
||||||
)) {
|
)) {
|
||||||
|
@ -91,12 +93,12 @@ const Sidebar = () => {
|
||||||
}
|
}
|
||||||
>
|
>
|
||||||
{origin ? (
|
{origin ? (
|
||||||
<Fragment>
|
<>
|
||||||
<span>Analiza strony</span>
|
<span>Analiza strony</span>
|
||||||
<span className="webpage-metadata--hyperlink">
|
<span className="webpage-metadata--hyperlink">
|
||||||
{origin}
|
{origin}
|
||||||
</span>
|
</span>
|
||||||
</Fragment>
|
</>
|
||||||
) : (
|
) : (
|
||||||
<span>Przejdź do wybranej strony internetowej</span>
|
<span>Przejdź do wybranej strony internetowej</span>
|
||||||
)}
|
)}
|
||||||
|
@ -190,7 +192,7 @@ const Sidebar = () => {
|
||||||
|
|
||||||
<section>
|
<section>
|
||||||
{stolenDataView ? (
|
{stolenDataView ? (
|
||||||
<Fragment>
|
<>
|
||||||
{warningDataDialogAck ? (
|
{warningDataDialogAck ? (
|
||||||
<section className="warning-container">
|
<section className="warning-container">
|
||||||
<span>
|
<span>
|
||||||
|
@ -225,7 +227,7 @@ const Sidebar = () => {
|
||||||
cookiesOnly={cookiesOnly}
|
cookiesOnly={cookiesOnly}
|
||||||
cookiesOrOriginOnly={cookiesOrOriginOnly}
|
cookiesOrOriginOnly={cookiesOrOriginOnly}
|
||||||
/>
|
/>
|
||||||
</Fragment>
|
</>
|
||||||
) : (
|
) : (
|
||||||
<Options
|
<Options
|
||||||
minValueLength={minValueLength}
|
minValueLength={minValueLength}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { useEffect, useState } from 'react';
|
|
||||||
|
|
||||||
export default function TabDropdown({
|
export default function TabDropdown({
|
||||||
setPickedTab,
|
setPickedTab,
|
||||||
|
@ -8,8 +7,8 @@ export default function TabDropdown({
|
||||||
setPickedTab: (tab_id: number) => void;
|
setPickedTab: (tab_id: number) => void;
|
||||||
pickedTab: number;
|
pickedTab: number;
|
||||||
}) {
|
}) {
|
||||||
const [tabs, setTabs] = useState([]);
|
const [tabs, setTabs] = React.useState([]);
|
||||||
useEffect(() => {
|
React.useEffect(() => {
|
||||||
browser.tabs.query({ currentWindow: true }).then(setTabs);
|
browser.tabs.query({ currentWindow: true }).then(setTabs);
|
||||||
}, []);
|
}, []);
|
||||||
return (
|
return (
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"jsx": "react",
|
"jsx": "react-jsx",
|
||||||
"noImplicitAny": true,
|
"noImplicitAny": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"lib": ["es2017", "dom", "es2019"],
|
"lib": ["es2017", "dom", "es2019"],
|
||||||
|
|
8
util.ts
8
util.ts
|
@ -1,5 +1,5 @@
|
||||||
import { EventEmitter } from 'events';
|
import { EventEmitter } from 'events';
|
||||||
import { Dispatch, SetStateAction, useEffect, useState } from 'react';
|
import React from 'react';
|
||||||
|
|
||||||
export type Unpromisify<T> = T extends Promise<infer R> ? R : T;
|
export type Unpromisify<T> = T extends Promise<infer R> ? R : T;
|
||||||
export type Unarray<T> = T extends Array<infer R> ? R : T;
|
export type Unarray<T> = T extends Array<infer R> ? R : T;
|
||||||
|
@ -47,9 +47,9 @@ export function getshorthost(host: string) {
|
||||||
|
|
||||||
export function useEmitter(
|
export function useEmitter(
|
||||||
e: EventEmitter
|
e: EventEmitter
|
||||||
): [number, Dispatch<SetStateAction<number>>] {
|
): [number, React.Dispatch<React.SetStateAction<number>>] {
|
||||||
const [counter, setCounter] = useState<number>(0);
|
const [counter, setCounter] = React.useState<number>(0);
|
||||||
useEffect(() => {
|
React.useEffect(() => {
|
||||||
const callback = () => {
|
const callback = () => {
|
||||||
setCounter((counter) => counter + 1);
|
setCounter((counter) => counter + 1);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue
Block a user