-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3578 from Expensify/beaman-handle-new-workspace-f…
…or-nonauth-users Handle unauthenticated users when creating a new workspace
- Loading branch information
Showing
4 changed files
with
45 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
import React from 'react'; | ||
import Onyx from 'react-native-onyx'; | ||
import PropTypes from 'prop-types'; | ||
import ONYXKEYS from '../../ONYXKEYS'; | ||
import SCREENS from '../../SCREENS'; | ||
|
||
const propTypes = { | ||
/** react-navigation navigation object available to screen components */ | ||
navigation: PropTypes.shape({ | ||
/** Method used to navigate to a new page and not keep the current route in the history */ | ||
replace: PropTypes.func.isRequired, | ||
}).isRequired, | ||
}; | ||
|
||
class PublicWorkspaceNewView extends React.PureComponent { | ||
componentDidMount() { | ||
Onyx.merge(ONYXKEYS.SESSION, {redirectToWorkspaceNewAfterSignIn: true}); | ||
this.props.navigation.replace(SCREENS.HOME); | ||
} | ||
|
||
render() { | ||
return null; | ||
} | ||
} | ||
|
||
PublicWorkspaceNewView.propTypes = propTypes; | ||
|
||
export default PublicWorkspaceNewView; |