-
Notifications
You must be signed in to change notification settings - Fork 4k
Create Right-Docked Settings Modal #1325
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
c13f0cf
Get settings modal popping in and out from the right-side of the screen
yuwenmemon 4c3915f
Cleanup style for the right-docked modal header
yuwenmemon 122ee3f
Remember current report and slide in the right direction
yuwenmemon f67c266
Get rid unneccessary Views
yuwenmemon 38a1934
Get the version number showing at the very bottom
yuwenmemon 04f0466
Cleanup code / add some comments
yuwenmemon c929ff3
Update styles for better padding on mobile
yuwenmemon c898d00
Fix conflicts
yuwenmemon 6039761
PR comments
yuwenmemon 6f20d8e
JS linting
yuwenmemon 3ee27bd
Merge branch 'master' of github.com:Expensify/ReactNativeChat into yu…
yuwenmemon 39e7069
Account for case where currentlyViewedReportID is empty
yuwenmemon 91dff12
use spread operator instead of extend
yuwenmemon 167d96d
Fix style of function call
yuwenmemon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,55 @@ | ||
| import React from 'react'; | ||
| import PropTypes from 'prop-types'; | ||
| import {withOnyx} from 'react-native-onyx'; | ||
| import _ from 'underscore'; | ||
| import SettingsPage from '../pages/SettingsPage'; | ||
| import CONST from '../CONST'; | ||
| import themeColors from '../styles/themes/default'; | ||
| import ONYXKEYS from '../ONYXKEYS'; | ||
| import ModalWithHeader from './ModalWithHeader'; | ||
| import {redirect} from '../libs/actions/App'; | ||
| import ROUTES from '../ROUTES'; | ||
|
|
||
| /** | ||
| * Right-docked modal view showing a user's settings. | ||
| */ | ||
| const propTypes = { | ||
| // Is the Settings Modal visible or not? | ||
| isVisible: PropTypes.bool, | ||
|
|
||
| /* Onyx Props */ | ||
| // Currently viewed reportID | ||
| currentlyViewedReportID: PropTypes.string, | ||
| }; | ||
|
|
||
| const defaultProps = { | ||
| isVisible: false, | ||
| currentlyViewedReportID: '', | ||
| }; | ||
|
|
||
| const SettingsModal = props => ( | ||
| <ModalWithHeader | ||
| type={CONST.MODAL.MODAL_TYPE.RIGHT_DOCKED} | ||
| onClose={() => redirect(_.isEmpty(props.currentlyViewedReportID) | ||
| ? ROUTES.HOME | ||
| : ROUTES.getReportRoute(props.currentlyViewedReportID))} | ||
| isVisible={props.isVisible} | ||
| title="Settings" | ||
| backgroundColor={themeColors.componentBG} | ||
| > | ||
| <SettingsPage /> | ||
| </ModalWithHeader> | ||
| ); | ||
|
|
||
| SettingsModal.propTypes = propTypes; | ||
| SettingsModal.defaultProps = defaultProps; | ||
| SettingsModal.displayName = 'SettingsModal'; | ||
|
|
||
| export default withOnyx({ | ||
| session: { | ||
| key: ONYXKEYS.SESSION, | ||
| }, | ||
| currentlyViewedReportID: { | ||
| key: ONYXKEYS.CURRENTLY_VIEWED_REPORTID, | ||
| }, | ||
| })(SettingsModal); | ||
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.