Skip to content

Commit 194deba

Browse files
committed
migrate to typescript
1 parent 87b2f55 commit 194deba

File tree

4 files changed

+49
-19
lines changed

4 files changed

+49
-19
lines changed

index.js

-16
This file was deleted.

index.ts

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import { useCallback, useRef, useState, SetStateAction, MutableRefObject, Dispatch } from "react";
2+
3+
const isFunction = <S>(setStateAction: SetStateAction<S>): setStateAction is (prevState: S) => S =>
4+
typeof setStateAction === "function";
5+
6+
function useStateRef<S>(
7+
initialState: S | (() => S)
8+
): [S, Dispatch<SetStateAction<S>>, MutableRefObject<S>];
9+
10+
function useStateRef<S = undefined>(): [
11+
S | undefined,
12+
Dispatch<SetStateAction<S | undefined>>,
13+
MutableRefObject<S | undefined>
14+
];
15+
16+
function useStateRef<S>(initialState?: S | (() => S)) {
17+
const [state, setState] = useState(initialState);
18+
const ref = useRef(state);
19+
20+
const dispatch: Dispatch<SetStateAction<S | undefined>> = useCallback(setStateAction => {
21+
ref.current = isFunction(setStateAction) ? setStateAction(ref.current) : setStateAction;
22+
23+
setState(ref.current);
24+
}, []);
25+
26+
return [state, dispatch, ref];
27+
}
28+
29+
export = useStateRef;

package.json

+12-3
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,13 @@
22
"name": "react-usestateref",
33
"version": "1.0.4",
44
"description": "useRef and UseState together!",
5-
"main": "index.js",
5+
"main": "dist/index.js",
6+
"files": [
7+
"dist"
8+
],
69
"scripts": {
7-
"deploy": "npm version patch && git add . && git commit && git push && npm publish"
10+
"build": "rimraf dist && tsc",
11+
"deploy": "npm run build && npm version patch && git push && npm publish"
812
},
913
"peerDependencies": {
1014
"react": ">16.0.0"
@@ -24,5 +28,10 @@
2428
"bugs": {
2529
"url": "https://github.com/Aminadav/react-useRefState/issues"
2630
},
27-
"homepage": "https://github.com/Aminadav/react-useRefState#readme"
31+
"homepage": "https://github.com/Aminadav/react-useRefState#readme",
32+
"devDependencies": {
33+
"@types/react": "^17.0.16",
34+
"rimraf": "^3.0.2",
35+
"typescript": "^4.3.5"
36+
}
2837
}

tsconfig.json

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"compilerOptions": {
3+
"strict": true,
4+
"lib": ["ES2015"],
5+
"outDir": "dist",
6+
"declaration": true
7+
}
8+
}

0 commit comments

Comments
 (0)