Giter VIP home page Giter VIP logo

Comments (4)

taxigy avatar taxigy commented on August 24, 2024

I created a little PR: #65. Any suggestions to make the code better, or props' names better, are welcome.

The idea is to pass a function as a prop that would be called every time a user clicks certain buttons. For example, onSignIn prop would be called every time a user clicks "Sign In" button. The idea is to cover a scenario when the app has its own router and history config and developer wants to change location displayed in browser's address bar manually by pushing new state. Something like

<Accounts.ui.LoginForm
  onSwitchToSignIn={() => ::this.props.history.push('/login')} />

from accounts-ui.

timbrandin avatar timbrandin commented on August 24, 2024

I noticed this as well, the correct solution would be to pass the props this way instead (I've also updated the documentation about this):

<Route path="login" component={() => <Accounts.ui.LoginForm formState={STATES.SIGNUP} />}/>

Regarding routing in React Router, I have just added support for Link in the buttons, so if you setup, "loginPath", "signUpPath" and "resetPasswordPath" either in the component props or on Accounts.ui.config it should redirect to the correct path that you added.

i.e. here's a full example:

import React from 'react';
import { render } from 'react-dom';
import { Router, Route, Link, browserHistory } from 'react-router';
import { Accounts, STATES } from 'meteor/std:accounts-ui';
// Layout component
const Layout = ({ children }) => (
  <div>{children}</div>
);
// Home component
const Home = () => (
  <div>Home</div>
);

Accounts.ui.config({
  passwordSignupFields: 'EMAIL_ONLY',
  minimumPasswordLength: 6,
  loginPath: '/login',
  signUpPath: '/register',
  resetPasswordPath: '/reset-password',
  onSignedInHook: () => browserHistory.push('/'),
});

function redirectNotLoggedIn(nextState, replace) {
  if (!Meteor.user()) {
    replace({
      pathname: '/login',
      state: { nextPathname: nextState.location.pathname }
    });
  }
}

function redirectLoggedIn(nextState, replace) {
  if (Meteor.user()) {
    replace({
      pathname: '/',
      state: { nextPathname: nextState.location.pathname }
    });
  }
}

function main() {
  render((
    <Router history={browserHistory}>
      <Route name="root" component={Layout}>
        <Route name="loggedIn" onEnter={redirectNotLoggedIn}>
          <Route name="home" path="/" component={Home} />
        </Route>
        <Route name="loggedOut" onEnter={redirectLoggedIn}>
          <Route path="login" component={() =>
            <Accounts.ui.LoginForm formState={STATES.SIGN_IN} />}
          />
          <Route path="register" component={() => 
             <Accounts.ui.LoginForm formState={STATES.SIGN_UP} />}
          />
          <Route path="reset-password" component={() =>
            <Accounts.ui.LoginForm formState={STATES.PASSWORD_RESET} />}
          />
        </Route>
        <Route name="*" component={AppNotFound} />
      </Route>
    </Router>
  ), document.getElementById("app"));
}

Meteor.startup(() => {
  Meteor.autorun(c => {
    if (!Meteor.loggingIn()) {
      c.stop();
      main();
    }
  })
});

from accounts-ui.

timbrandin avatar timbrandin commented on August 24, 2024

I'm closing this due to inactivity.

from accounts-ui.

RealHandy avatar RealHandy commented on August 24, 2024

I just switched from Flow Router and implemented this as shown above using std:accounts-ui 1.2.19. It's working like a charm and eliminated a Flow Router issue I had where it was taking two clicks on the Register link to switch to the signup UI. Thanks!

from accounts-ui.

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.