import {compose} from "recompose";
import ProfileDocuments from "../../Profile/ProfileDocumentsScreen";
import withActiveCallBacks from "../../../navigators/react-navigation-addons/withActiveCallBacks";
import {withNavigation} from "../../../components/hocs/withNavigation";
import withLoadProfile from "../../../components/hocs/withLoadProfile";
import PropTypes from "prop-types";
/**
* You can use this component to display the Profile Documents Screen in your custom screen.
* @component
* @example
* //In custom_code/components/MyCustomScreen.js...
*
* import React from 'react';
* import ProfileDocumentsScreen from "@src/containers/Custom/Profile/ProfileDocumentsScreen";
*
* const MyCustomScreen = (props) => {
*
* if (!props.isFocused)
* return null;
*
* return (
* <>
* <ProfileDocumentsScreen
* hideBackButton={true}
* hideNewDocumentButton={true}
* {...props}
* />
* </>
* )
* }
*
*
* export default MyCustomScreen;
*
* //In custom_code/index.js...
*
* ...
*
* import MyCustomScreen from "./components/MyCustomScreen";
* export const applyCustomCode = externalCodeSetup => {
* externalCodeSetup.navigationApi.addNavigationRoute(
* "book",
* "BookScreen",
* MyCustomScreen,
* "All"
* );
* externalCodeSetup.navigationApi.addNavigationRoute(
* "book",
* "BookScreen",
* MyCustomScreen,
* "Main"
* );
* }
*
*/
const ProfileDocumentsScreen = compose(
withNavigation,
withActiveCallBacks
)(ProfileDocuments);
export default withLoadProfile(ProfileDocumentsScreen);
ProfileDocumentsScreen.propTypes = {
/**
* You can use this to display a specific user's profile documents by assigning their userId as this props's value
* {Number}
*/
userId: PropTypes.number,
/**
* List screen title
* {String}
*/
screenTitle: PropTypes.string,
/**
* Use `false` to hide search box
* {Boolean}
*/
showSearch: PropTypes.bool,
/**
* If the user is not yet available in the app state, the component will attempt to load a list of users.
* You can use this field to search for the specific user you want to load instead of loading a list of users.
* {String}
*/
searchTerm: PropTypes.string,
/**
* Use `true` to hide the back button.
* By default, the button will use react-navigation's goBack() function.
* This can be changed using the `setBackButtonRenderer` hook.
* {Boolean}
*/
hideBackButton: PropTypes.bool,
/**
* Use `true` to hide the new document button
* {Boolean}
*/
hideNewDocumentButton: PropTypes.bool,
/**
* Use `true` to hide filters in the screen
* {Boolean}
*/
hideFilters: PropTypes.bool,
/**
* Use `true` to hide the screen title container when scrolling
* {Boolean}
*/
hideNavigationHeader: PropTypes.bool,
/**
* Define header height
* {Number}
*/
headerHeight: PropTypes.number,
/**
* Use this to display your own loading component while the screen is loading
* {ReactComponent}
*/
LoadingComponent: PropTypes.elementType
};
Source