Skip to content

Commit cca1f1e

Browse files
committed
First commit
1 parent ec87543 commit cca1f1e

File tree

8 files changed

+216
-0
lines changed

8 files changed

+216
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
dist

.vscode/settings.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"files.exclude": {
3+
"**/.git": true,
4+
"**/.svn": true,
5+
"**/.hg": true,
6+
"**/CVS": true,
7+
"**/.DS_Store": true,
8+
"**/Thumbs.db": true
9+
},
10+
"hide-files.files": []
11+
}

package-lock.json

+109
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "react-modal",
3+
"version": "1.0.0",
4+
"description": "A native React modal.",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1",
8+
"build": "tsc"
9+
},
10+
"keywords": [],
11+
"author": "Alan Xavier Benavides Benavides",
12+
"license": "ISC",
13+
"dependencies": {
14+
"react": "^18.2.0",
15+
"react-dom": "^18.2.0",
16+
"typescript": "^5.1.3"
17+
},
18+
"devDependencies": {
19+
"@types/react": "^18.2.8"
20+
}
21+
}

src/components/Modal/Modal.tsx

+45
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
//React
2+
import { useRef, useId, useEffect, DialogHTMLAttributes } from "react";
3+
4+
5+
//Typings
6+
type Modal = DialogHTMLAttributes<HTMLDialogElement> & {
7+
onClose: () => void;
8+
open: boolean;
9+
children?: any;
10+
}
11+
12+
13+
//Main component content
14+
const Modal = (props: Modal): JSX.Element => {
15+
16+
//React
17+
const ref = useRef<HTMLDialogElement>(null);
18+
const id = useId();
19+
20+
useEffect( () => {
21+
22+
if( props.open ) {
23+
ref.current?.showModal();
24+
document.body.style.overflow = 'hidden';
25+
return;
26+
}
27+
28+
ref.current?.close();
29+
document.body.removeAttribute('style');
30+
}, [props.open] );
31+
32+
//Main component render
33+
return (
34+
<dialog
35+
id={id}
36+
ref={ref}
37+
{...props}
38+
>
39+
{props.children}
40+
</dialog>
41+
);
42+
};
43+
44+
45+
export default Modal; //Export main component

src/components/Modal/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default } from './Modal';

src/components/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export { default as Modal } from './Modal';

tsconfig.json

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"include": ["src"],
3+
"exclude": [
4+
"dist",
5+
"node_modules"
6+
],
7+
"compilerOptions": {
8+
"module": "esnext",
9+
"lib": ["dom", "esnext"],
10+
"importHelpers": true,
11+
"declaration": true,
12+
"sourceMap": true,
13+
"rootDir": "./src",
14+
"outDir": "./dist/esm",
15+
"strict": true,
16+
"noImplicitReturns": true,
17+
"noFallthroughCasesInSwitch": true,
18+
"noUnusedLocals": true,
19+
"noUnusedParameters": true,
20+
"moduleResolution": "node",
21+
"jsx": "react-jsx",
22+
"esModuleInterop": true,
23+
"skipLibCheck": true,
24+
"forceConsistentCasingInFileNames": true,
25+
}
26+
}

0 commit comments

Comments
 (0)