npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@geeleed/react-ez-globalstate

v1.0.2

Published

React component with state management hook. ez

Downloads

2

Readme

React global state hook ez.

React ez global state

โปรเจ็กนี้ต้องการทำให้การจัดการ state ด้วย redux ทำได้ง่ายขึ้น จากเดิมที่เราชอบใช้ useState ก็เปลี่ยนมาใช้ useGlobalState แทน โดยวิธีใช้งานยังคงคล้ายเดิม

การติดตั้ง

npm i @geeleed/react-ez-globalstate

เท่านี้ก็ได้ react component <GlobalState> และ hook คือ useGlobalState แล้ว

การ setup ใน project (ตัวอย่างนี้ใช้ vite.js)

นำเข้า <GlobalState></GlobalState> มาครอบ <App/>

import GlobalState from "@geeleed/react-ez-globalstate/dist/GlobalState";
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.jsx";
import "./index.css";
import GlobalState from "@geeleed/react-ez-globalstate/dist/GlobalState";

createRoot(document.getElementById("root")).render(
  <StrictMode>
    <GlobalState>
      <App/>
    </GlobalState>
  </StrictMode>
);

การใช้งาน

หลังจาก setup แล้วจะใช้งานใน component ต่าง ๆ ได้ เช่น ใช้ใน <App/> จะใช้ hook useGlobalState ในการอ่านและแก้ค่า state

import { useGlobalState } from "@geeleed/react-ez-globalstate/dist/GlobalState";
const [state, setState] = useGlobalState();

hook นี้เทียบเคียงได้กับการใช้ useState ของ react แต่จะไม่มี initial value หรือกำหนดค่าเริ่มต้น การใช้งาน hook จะมีลักษณะดังนี้

setState(ชื่อคีย์,ค่า)

เช่น

setState("geeleed","hello world")

ก็จะเป็นการใส่ค่า "hello world" ลงใน state ด้วยคีย์ "geeleed" หากจะดึงค่าจาก state ก็สามารถเรียกได้ผ่านคีย์โดยตรงเนื่องจากเป็น object

state["geeleed"] // "hello world"

ตัวอย่าง


import React from "react";
import { useGlobalState } from "@geeleed/react-ez-globalstate/dist/GlobalState";

export default function App() {
  const [state, setState] = useGlobalState();
  const { key, value } = state;
  return (
    <div>
      <div>{`key is ${key}, value is ${value}`}</div>
      <input
        onChange={(e) => setState("key", e.target.value)}
        placeholder="key"
      />
      <input
        onChange={(e) => setState("value", e.target.value)}
        placeholder="value"
      />
      <button
        onClick={() => {
          console.log(key, value);
          setState(key, value);
        }}
      >
        Save
      </button>
      <button onClick={() => console.log(state)}>List State</button>
    </div>
  );
}

โปรเจ็กส่วนตัวอื่น ๆ https://github.com/Geeleed