0.1.19 • Published 3 years ago

@karpeleslab/react-klbfw-hooks v0.1.19

Weekly downloads
54
License
MIT
Repository
github
Last release
3 years ago

Hooks for klbfw

This provides different hooks and ssr mechanics for klbfw.

  • useRest(path, params): allows to easily grab data from our backend
  • useVar(varName): shared state by name
  • usePromise(promise): sets a promise that the server needs to wait for in SSR

Usage

run(app, promises)

Replaces ReactDOM.render.

Minimum usage, in file index.js:

import App from './App';
import { run } from "@karpeleslab/react-klbfw-hooks";

run(<App/>);

With I18N:

import App from './App';
import { run } from "@karpeleslab/react-klbfw-hooks";
import i18n from 'i18next';
import { initReactI18next } from 'react-i18next';
import { Backend } from '@karpeleslab/i18next-klb-backend';
import { getLocale } from "@karpeleslab/klbfw";

let i18nOpt = {
	lng: getLocale(),
	initImmediate: false,
	load: 'currentOnly',
	interpolation: {
		escapeValue: false, // not needed for react as it escapes by default
	},
	react: {
		useSuspense: false,
	}
};

run(<App/>, [i18n.use(Backend).use(initReactI18next).init(i18nOpt)]);

useVar(varname, default)

Hook for named variables which share a value anywhere in the application.

function Foo() {
	const [value, setValue] = useVar("foo", 0);

	return <div>foo is {value} <button onClick={() => setValue(value+1)}>+1</button></div>;
}

useVarSetter(varname, default)

Returns only a setter for the given variable, not subscribing the current component to variable updates.

usePromise(promise)

Handle re-render for a given promise in SSR.

useRest(path, params)

Perform a rest() GET action on a given path, caching the result and returning it in a way that is safe to use during rendering.

0.1.16

3 years ago

0.1.17

3 years ago

0.1.18

3 years ago

0.1.19

3 years ago

0.1.15

3 years ago

0.1.14

3 years ago

0.1.13

4 years ago

0.1.12

4 years ago

0.1.11

4 years ago

0.1.10

4 years ago

0.1.9

4 years ago

0.1.8

4 years ago

0.1.7

4 years ago

0.1.6

4 years ago

0.1.5

4 years ago

0.1.2

4 years ago

0.1.1

4 years ago

0.1.4

4 years ago

0.1.3

4 years ago

0.1.0

4 years ago

0.0.2

4 years ago

0.0.1

4 years ago