Giter Site home page Giter Site logo

looterz / fivem-nui-react-lib Goto Github PK

View Code? Open in Web Editor NEW

This project forked from jfrader/fivem-nui-react-lib

0.0 2.0 0.0 207 KB

A set of tools for using FiveM NUI events in React

License: GNU General Public License v3.0

TypeScript 99.53% Shell 0.47%

fivem-nui-react-lib's Introduction

fivem-nui-react-lib

A (very opinionated) set of tools for using FiveM NUI events in React

example

https://github.com/jfrader/fivem-nui-react-boilerplate

usage

install

npm install --save fivem-nui-react-lib

Use Provider

import { NuiProvider } from "fivem-nui-react-lib";

function App() {
  return (
    <NuiProvider resource="my-resource-name">
      <div>This is my app</div>
    </NuiProvider>
  );
}

useNuiEvent

This library receives the following schema on NUI events

{
  app: 'app-name', // can be always the same or change to differenciate events better on the UI
  method: 'method-name', // the actual event name which is sent to NUI
  data: 'response' // the response which will be handled from the UI
}

Receive events from client and set your state

// UI
import { useNuiEvent } from "fivem-nui-react-lib";

function MyComponent() {
  const [myState, setMyState] = useState(false);
  useNuiEvent("app-name", "method-name", setMyState);
}

// CLIENT
sendNuiMessage(
  JSON.stringify({
    app: "app-name",
    method: "method-name",
    data: true, // myState will be set as true in this example
  })
);

useNuiRequest

Send requests to client

// UI
import { useNuiRequest } from "fivem-nui-react-lib";

function MyComponent() {
  const { send } = useNuiRequest();
  send("method-name", { myArgument: "isAwesome" });
}

// CLIENT
RegisterNuiCallbackType(`__cfx_nui:myEvent`);
on(`__cfx_nui:myEvent`, (data, cb) => {
  // Use the arguments
  emitNet("myEvent", { input: data.myArgument });
  // Callback to prevent errors
  cb();
});

useNuiCallback

Make a callback to "myEvent" by sending back "myEventSuccess" or "myEventError" from the client

// UI
import { useNuiCallback } from "fivem-nui-react-lib";

function MyComponent() {
  const [myState, setMyState] = useState(null);
  const [error, setError] = useState(null);
  const [fetchMyMethod, { loading }] = useNuiCallback("app-name", "myEvent", setMyState, setError);

  useEffect(() => {
    fetchMyMethod({ argument: 1 });
  }, [fetchMyMethod]);
}

// CLIENT
RegisterNuiCallbackType(`__cfx_nui:myEvent`);
on(`__cfx_nui:myEvent`, (data, cb) => {
  // emit some event to the server:
  emitNet("myEvent", { input: data });
  // callback so you prevent errors
  cb();
});

// ... on success
sendNuiMessage(
  JSON.stringify({
    app: "app-name",
    method: "myEventSuccess",
    data: true,
  })
);

// ... on error
sendNuiMessage(
  JSON.stringify({
    app: "app-name",
    method: "myEventError",
    data: true,
  })
);

The example above will request myEvent to the client and be in loading state until client sends back either myEventSuccess or myEventError. After one of those are received, the handlers will be executed (setMyState if success, setError if errored). If no event is received after the timeout time, it will throw as timeout error.

contributions

Feel free to contribute and/or suggest changes.

license

fivem-nui-react-lib - A set of tools for using FiveM NUI events in React

Copyright (C) 2021 J Francisco Rader [email protected] (kidz)

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.

fivem-nui-react-lib's People

Contributors

jfrader avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.