Skip to content

Navigation Menu

Sign in
Sign up

Repository files navigation

React custom Hooks

Twitter URL GitHub followers

Custom hooks πŸ§‘β€πŸ’»

Links

Technologies

  • Typescript TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. πŸ’»
  • React A JavaScript library for building user interfaces. πŸ’»

Setup

$ npm install @bahachammakhi/hooks
#
$ yarn add @bahachammakhi/hooks

Features

List of features ready and TODOs for future development

  • useApi hook

To-do list:

  • useForm hook (documentation /exemple)
  • useCurrentWidth (documentation / exemple)
  • useLifeCycle (documentation / exemple)

Status

Project is: in progress

Documentation

useApi

import React, { useState, useEffect } from "react";
import { useApi } from "@bahachammakhi/hooks";
import axios from "axios";
const getPeople = () => axios.get("https://swapi.dev/api/people/");
const App = () => {
 const { ...calls } = useApi({ getPeople });
 const [people, setPeople] = useState < any > [];
 useEffect(() => {
 calls.getPeople.call();
 }, []);
 useEffect(() => {
 setPeople(calls.getPeople.data);
 }, [calls.getPeople.success]);
 return (
 <div>
 {people.results.map((element: any) => {
 return <>{element.name}</>;
 })}
 </div>
 );
};

useCurrentWidth

import React from "react";
import { useCurrentWidth } from "@bahachammakhi/hooks";
const App = () => {
 const width = useCurrentWidth();
 return (
 <div>
 <div style={{ width: width, backgroundColor: "black" }}>Name</div>
 </div>
 );
};

Contact

Created by @bahachammakhi - feel free to contact me!

About

Customized hooks

Topics

Resources

Stars

3 stars

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors

Languages

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /