diff options
author | Vendicated <vendicated@riseup.net> | 2022-12-20 00:33:52 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-12-20 00:34:26 +0100 |
commit | 94ad8e8f61abb3c6256f9caa39878150b326790f (patch) | |
tree | 8cda13f72b1778ab667bf8761fee981a7673dcbd /src/utils | |
parent | 989bd36eeb6dd6c4b391900765847cdcf87484d9 (diff) | |
download | Vencord-94ad8e8f61abb3c6256f9caa39878150b326790f.tar.gz Vencord-94ad8e8f61abb3c6256f9caa39878150b326790f.tar.bz2 Vencord-94ad8e8f61abb3c6256f9caa39878150b326790f.zip |
Add useEffect/useState/useMemo to webpack commons
Diffstat (limited to 'src/utils')
-rw-r--r-- | src/utils/misc.tsx | 8 | ||||
-rw-r--r-- | src/utils/react.ts | 4 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/utils/misc.tsx b/src/utils/misc.tsx index 8b7cea2..6710523 100644 --- a/src/utils/misc.tsx +++ b/src/utils/misc.tsx @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { Clipboard, React, Toasts } from "@webpack/common"; +import { Clipboard, React, Toasts, useEffect, useState } from "@webpack/common"; /** * Makes a lazy function. On first call, the value is computed. @@ -48,13 +48,13 @@ export function useAwaiter<T>(factory: () => Promise<T>, providedOpts?: AwaiterO deps: [], onError: null, }, providedOpts); - const [state, setState] = React.useState({ + const [state, setState] = useState({ value: opts.fallbackValue, error: null, pending: true }); - React.useEffect(() => { + useEffect(() => { let isAlive = true; if (!state.pending) setState({ ...state, pending: true }); @@ -72,7 +72,7 @@ export function useAwaiter<T>(factory: () => Promise<T>, providedOpts?: AwaiterO * Returns a function that can be used to force rerender react components */ export function useForceUpdater() { - const [, set] = React.useState(0); + const [, set] = useState(0); return () => set(s => s + 1); } diff --git a/src/utils/react.ts b/src/utils/react.ts index 8585846..e5e1f67 100644 --- a/src/utils/react.ts +++ b/src/utils/react.ts @@ -16,7 +16,7 @@ * along with this program. If not, see <https://www.gnu.org/licenses/>. */ -import { React } from "@webpack/common"; +import { React, useState } from "@webpack/common"; import { checkIntersecting } from "./misc"; @@ -30,7 +30,7 @@ export const useIntersection = (intersectOnly = false): [ isIntersecting: boolean, ] => { const observerRef = React.useRef<IntersectionObserver | null>(null); - const [isIntersecting, setIntersecting] = React.useState(false); + const [isIntersecting, setIntersecting] = useState(false); const refCallback = (element: Element | null) => { observerRef.current?.disconnect(); |