Giter VIP home page Giter VIP logo

Comments (7)

mayteio avatar mayteio commented on May 25, 2024 1

Hey @juandl,

That's odd! Glad you could figure it out, cheers.

from use-pusher.

juandl avatar juandl commented on May 25, 2024

I also try to use

const { client } = usePusher();

useEvent(client.connection, 'connected', (data) =>  console.log('Realtime is go!'));

but it's not working too.

from use-pusher.

mayteio avatar mayteio commented on May 25, 2024

Hey, first thing I notice is that client is missing from your dependancy array. On the first render, client will not be defined. Since client is stored in state though, when it becomes available it'll re-trigger the effect:

const [client, setClient] = useState<any | undefined>();

If it still doesn't work, please provide a codesandbox and I can have a look!

from use-pusher.

juandl avatar juandl commented on May 25, 2024

@mayteio you are right, i wait for the "client" and is working. But in react native it's not working.

from use-pusher.

mayteio avatar mayteio commented on May 25, 2024

That's great. Have you checked the rn example? https://github.com/mayteio/use-pusher/tree/master/examples/native-use-pusher-example

from use-pusher.

juandl avatar juandl commented on May 25, 2024

@mayteio yes I do, but it's not working, I try with
-React navigation x5
-Expo (latest version)

I wrap the Provider with the navigation.. all the hooks work but in the case of getting the status of the connection, its not working

 const { client } = usePusher();

 useEffect(() => {
 if(client){
   client.connection.bind('connected', () => {
      console.log('Realtime is go!');
    });
  }
}, [client]);

from use-pusher.

juandl avatar juandl commented on May 25, 2024

Hi @mayteio , I found the solution, apparently passing the provider like this ist not working...

const Navigation = () => {
  return (
      <NavigationContainer>
        <Stack.Navigator'>
          <Stack.Screen name='Home' component={HomePage} />
        </Stack.Navigator>
      </NavigationContainer>
  );
};
export default function App() {
  return (
   <PusherProvider {...config}>
      <Navigation />
   </PusherProvider>
  );
}

But passing directly to the NavigationContainer it's working:

const Navigation = () => {
    <PusherProvider {...configPusher}>
      <NavigationContainer>
        <Stack.Navigator>
          <Stack.Screen name='Home' component={HomePage} />
        </Stack.Navigator>
      </NavigationContainer>
    </PusherProvider>
};

just leaving here for someone else :)

from use-pusher.

Related Issues (20)

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.