Code Monkey home page Code Monkey logo

Comments (4)

alexgvozden avatar alexgvozden commented on May 19, 2024 6

what happened to Location and what is the replacement?

EDIT: now it's easy to use history from history.js in kit or just reference createBrowserHistory();

history.push("/login")

from universal-router.

subodh-malgonde avatar subodh-malgonde commented on May 19, 2024

If you are using the react-starter-kit, then there is a Location module. Use

Location.pushState(null, '/to/path')

from universal-router.

subodh-malgonde avatar subodh-malgonde commented on May 19, 2024

@koistya is this the right way?

from universal-router.

koistya avatar koistya commented on May 19, 2024

Check the new history API documentation. As an example, in React Starter Kit there is Location class which is just a singleton instance of history module. You can use it to transition between screens/pages on the client like so.

import React from 'react';
import Location from '../core/Location';

function navigateToPath(event) {
  event.preventDefault();
  Location.push('/to/path');
}

function navigateToPathWithState(event) {
  event.preventDefault();
  Location.push({ pathname: '/to/path', state: { foo: 123 } });
}

// Stateless functional React component
function MyComponent() {
  return (
    <div>
      <button onClick={navigateToPath}>Click me (1)</button>
      <button onClick={navigateToPathWithState}>Click me (2)</button>
    </div>
  );
}

export default MyComponent;

And inside the client-side bootstrap code (src/app.js), there is a listener which catches such redirects and makes sure that transition occurs without full-page refresh (see Location.listen(...) in src/app.js).

Summary

react-routing is responsible only for routing (both client-side and server-side) and history module is responsible for navigation (client-side).

from universal-router.

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.