我想在我的React / Redux应用程序中实现新的Auth0 Lock 10.
我已经在互联网上查了一下,但没有什么能与我的问题相符。有一个教程here,但它使用弹出模式而不是重定向(现在默认)模式。另一个one解析了url,这在Lock 10中是无用的。
这是流程:
lock.show()
)并发送LOGIN_REQUEST lock.on('authenticated')
事件发送LOGIN_SUCCESS 这是我的actions / index.js代码:
import Auth0Lock from 'auth0-lock'
export const LOGIN_REQUEST = 'LOGIN_REQUEST'
export const LOGIN_SUCCESS = 'LOGIN_SUCCESS'
export const LOGIN_ERROR = 'LOGIN_ERROR'
function loginRequest() {
return {
type: LOGIN_REQUEST
}
}
function loginSuccess(profile) {
return {
type: LOGIN_SUCCESS,
profile
}
}
function loginError(error) {
return {
type: LOGIN_ERROR,
error
}
}
// import AuthService to deal with all the actions related to auth
const lock = new Auth0Lock('secret', 'secret', {
auth: {
redirectUrl: 'http://localhost:3000/callback',
responseType: 'token'
}
})
lock.on('authenticated', authResult => {
console.log('Im authenticated')
return dispatch => {
return dispatch(loginSuccess({}))
}
})
lock.on('authorization_error', error => {
return dispatch => dispatch(loginError(error))
})
export function login() {
lock.show()
return dispatch => {return dispatch(loginRequest())}
}
现在当我点击登录按钮时,redux logger显示我调度了LOGIN_REQUEST动作,我看到了锁定小部件,我可以登录,它重定向到auth0.com,然后返回我的localhost:3000/callback
,带有一个漂亮的令牌。一切都很好,我在控制台中看到Im authenticated
消息,但redux logger并没有告诉我已经调度了LOGIN_SUCCESS动作。
我是Redux的新手,我想我错过了一件事,但我无法抓住它。谢谢!
答案 0 :(得分:4)
我终于放入actions.js,我创建了一个名为checkLogin()
// actions.js
const authService = new AuthService(process.env.AUTH0_CLIENT_ID, process.env.AUTH0_DOMAIN)
// Listen to authenticated event from AuthService and get the profile of the user
// Done on every page startup
export function checkLogin() {
return (dispatch) => {
// Add callback for lock's `authenticated` event
authService.lock.on('authenticated', (authResult) => {
authService.lock.getProfile(authResult.idToken, (error, profile) => {
if (error)
return dispatch(loginError(error))
AuthService.setToken(authResult.idToken) // static method
AuthService.setProfile(profile) // static method
return dispatch(loginSuccess(profile))
})
})
// Add callback for lock's `authorization_error` event
authService.lock.on('authorization_error', (error) => dispatch(loginError(error)))
}
}
在我的App
组件的构造函数中,我称之为
import React from 'react'
import HeaderContainer from '../../containers/HeaderContainer'
class App extends React.Component {
constructor(props) {
super(props)
this.props.checkLogin() // check is Auth0 lock is authenticating after login callback
}
render() {
return(
<div>
<HeaderContainer />
{this.props.children}
</div>
)
}
}
App.propTypes = {
children: React.PropTypes.element.isRequired,
checkLogin: React.PropTypes.func.isRequired
}
export default App
请在此处查看完整源代码:https://github.com/amaurymartiny/react-redux-auth0-kit
答案 1 :(得分:1)
我的Reactjs知识有限,但这开始是为了评论......
你不应该从锁定事件中调用store.dispatch(...)
吗?
让那些事件返回一个函数将不会做任何事情,除非有人调用返回的函数并且据我所知Lock不会对你作为事件处理程序传递的回调函数的返回值做任何事情。
答案 2 :(得分:0)
我认为正在发生的事情是auth0将浏览器窗口重定向到登录权限(auth0本身,Facebook,Google等),然后将您重定向回您的应用程序,该应用程序重新加载您的页面,基本上消除了所有状态。因此,您的调度将被发送,然后页面将重新加载,从而消除您的状态。如果您使用localStorage而不是redux状态,登录似乎有效,但我不确定这将如何影响我需要放入我的应用程序中的所有其他状态。