-
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 #10 from software-mansion-labs/ideal-nav/workspace…
…-settings Improve workspace settings on Main Pane
- Loading branch information
Showing
15 changed files
with
170 additions
and
71 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
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,113 @@ | ||
import React, {useCallback} from 'react'; | ||
import {Keyboard, View} from 'react-native'; | ||
import {withOnyx} from 'react-native-onyx'; | ||
import FormProvider from '@components/Form/FormProvider'; | ||
import InputWrapper from '@components/Form/InputWrapper'; | ||
import HeaderWithBackButton from '@components/HeaderWithBackButton'; | ||
import {withNetwork} from '@components/OnyxProvider'; | ||
import ScreenWrapper from '@components/ScreenWrapper'; | ||
import TextInput from '@components/TextInput'; | ||
import {withCurrentUserPersonalDetailsDefaultProps, withCurrentUserPersonalDetailsPropTypes} from '@components/withCurrentUserPersonalDetails'; | ||
import {withLocalizePropTypes} from '@components/withLocalize'; | ||
import withWindowDimensions from '@components/withWindowDimensions'; | ||
import useLocalize from '@hooks/useLocalize'; | ||
import useThemeStyles from '@hooks/useThemeStyles'; | ||
import compose from '@libs/compose'; | ||
import Navigation from '@libs/Navigation/Navigation'; | ||
import * as ValidationUtils from '@libs/ValidationUtils'; | ||
import * as Policy from '@userActions/Policy'; | ||
import CONST from '@src/CONST'; | ||
import ONYXKEYS from '@src/ONYXKEYS'; | ||
import ROUTES from '@src/ROUTES'; | ||
import withPolicy from './withPolicy'; | ||
|
||
const propTypes = { | ||
...withLocalizePropTypes, | ||
...withCurrentUserPersonalDetailsPropTypes, | ||
}; | ||
|
||
const defaultProps = { | ||
...withCurrentUserPersonalDetailsDefaultProps, | ||
isLoadingApp: true, | ||
}; | ||
|
||
function WorkspaceNamePage({policy}) { | ||
const styles = useThemeStyles(); | ||
const {translate} = useLocalize(); | ||
|
||
const submit = useCallback( | ||
(values) => { | ||
if (policy.isPolicyUpdating) { | ||
return; | ||
} | ||
|
||
Policy.updateGeneralSettings(policy.id, values.name.trim(), policy.outputCurrency); | ||
Keyboard.dismiss(); | ||
Navigation.goBack(ROUTES.WORKSPACE_OVERVIEW.getRoute(policy.id)); | ||
}, | ||
[policy.id, policy.isPolicyUpdating, policy.outputCurrency], | ||
); | ||
|
||
const validate = useCallback((values) => { | ||
const errors = {}; | ||
const name = values.name.trim(); | ||
|
||
if (!ValidationUtils.isRequiredFulfilled(name)) { | ||
errors.name = 'workspace.editor.nameIsRequiredError'; | ||
} else if ([...name].length > CONST.WORKSPACE_NAME_CHARACTER_LIMIT) { | ||
// Uses the spread syntax to count the number of Unicode code points instead of the number of UTF-16 | ||
// code units. | ||
errors.name = 'workspace.editor.nameIsTooLongError'; | ||
} | ||
|
||
return errors; | ||
}, []); | ||
|
||
return ( | ||
<ScreenWrapper | ||
includeSafeAreaPaddingBottom={false} | ||
shouldEnableMaxHeight | ||
testID={WorkspaceNamePage.displayName} | ||
> | ||
<HeaderWithBackButton | ||
title={translate('workspace.editor.nameInputLabel')} | ||
onBackButtonPress={() => Navigation.goBack(ROUTES.WORKSPACE_OVERVIEW.getRoute(policy.id))} | ||
/> | ||
<FormProvider | ||
formID={ONYXKEYS.FORMS.WORKSPACE_SETTINGS_FORM} | ||
submitButtonText={translate('workspace.editor.save')} | ||
style={[styles.flexGrow1, styles.ph5]} | ||
scrollContextEnabled | ||
validate={validate} | ||
onSubmit={submit} | ||
enabledWhenOffline | ||
> | ||
<View style={styles.mb4}> | ||
<InputWrapper | ||
InputComponent={TextInput} | ||
role={CONST.ROLE.PRESENTATION} | ||
inputID="name" | ||
label={translate('workspace.editor.nameInputLabel')} | ||
accessibilityLabel={translate('workspace.editor.nameInputLabel')} | ||
defaultValue={policy.name} | ||
maxLength={CONST.WORKSPACE_NAME_CHARACTER_LIMIT} | ||
spellCheck={false} | ||
/> | ||
</View> | ||
</FormProvider> | ||
</ScreenWrapper> | ||
); | ||
} | ||
|
||
WorkspaceNamePage.propTypes = propTypes; | ||
WorkspaceNamePage.defaultProps = defaultProps; | ||
WorkspaceNamePage.displayName = 'WorkspaceNamePage'; | ||
|
||
export default compose( | ||
withPolicy, | ||
withWindowDimensions, | ||
withOnyx({ | ||
currencyList: {key: ONYXKEYS.CURRENCY_LIST}, | ||
}), | ||
withNetwork(), | ||
)(WorkspaceNamePage); |
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
Oops, something went wrong.