Skip to content

Instantly share code, notes, and snippets.

View honzabrecka's full-sized avatar
👋

Honza Břečka honzabrecka

👋
View GitHub Profile
import React, {
Suspense,
useCallback,
useState,
useRef,
useEffect,
unstable_useTransition,
} from "react";
const delay = (d) => new Promise((res) => setTimeout(res, d));
import React, { Suspense, useCallback } from "react";
import { RecoilRoot, atomFamily, selectorFamily, useRecoilState } from "recoil";
/// FAKES
let users = {
"/user/1": {
id: 1,
firstname: "Alfons",
lastname: "Baar",
{
"search.exclude": {
"**/node_modules": true,
"**/bower_components": true
},
"editor.rulers": [
80,
100,
],
"workbench.fontAliasing": "antialiased",
export function useCallbackInNextRender() {
const [value, set] = useState(null);
useSafeEffect(
(safetyGuard) => {
if (!value) return;
const [callback, args] = value;
callback(safetyGuard, ...args);
},
[value]
const when = (pred, f) => (data) => pred(data) ? f(data) : data
// example
pipe(
when(isOdd, increment),
)
import { useEffect } from 'react'
export default function useReference(lazyRefCreator, deps) {
const ref = useRef()
useEffect(() => {
ref.current = lazyRefCreator()
}, deps)
return ref.current
// require without cache
const __r = (m) => { delete require.cache[require.resolve(m)]; return require(m) }
const reload = () = {
Object.keys(require.cache).forEach((module) => {
delete require.cache[module]
require(module)
})
}
const withLogger = (reducer) => (state, action) => {
const boldStyle = 'font-weight:bold';
console.groupCollapsed(`%caction %c${action.type}`, 'color:#CCC', boldStyle);
console.log('%cprev state', `${boldStyle};color:#9E9E9E`, state);
console.log('%caction ', `${boldStyle};color:#03A9F4`, action);
const after = reducer(state, action);
console.log('%cnext state', `${boldStyle};color:#4CAF50`, after);
console.groupEnd();
return after;
};
// @flow
import * as React from 'react';
import classNames from 'classnames';
// import type { ClassNames } from 'classnames';
type ClassNames = any;
export type ClassNamesOrFunction = ClassNames | ((props: any) => ClassNames);