import * as React from 'react';
import type { InternalTheme } from 'src/types';
import PortalConsumer from './PortalConsumer';
import PortalHost, { PortalContext, PortalMethods } from './PortalHost';
import {
Consumer as SettingsConsumer,
Provider as SettingsProvider,
} from '../../core/settings';
import { ThemeProvider, withInternalTheme } from '../../core/theming';
export type Props = {
/**
* Content of the `Portal`.
*/
children: React.ReactNode;
/**
* @optional
*/
theme: InternalTheme;
};
/**
* Portal allows rendering a component at a different place in the parent tree.
* You can use it to render content which should appear above other elements, similar to `Modal`.
* It requires a [`Portal.Host`](PortalHost) component to be rendered somewhere in the parent tree.
* Note that if you're using the `Provider` component, this already includes a `Portal.Host`.
*
* ## Usage
* ```js
* import * as React from 'react';
* import { Portal, Text } from 'react-native-paper';
*
* const MyComponent = () => (
*
* This is rendered at a different place
*
* );
*
* export default MyComponent;
* ```
*/
class Portal extends React.Component {
// @component ./PortalHost.tsx
static Host = PortalHost;
render() {
const { children, theme } = this.props;
return (
{(settings) => (
{(manager) => (
{children}
)}
)}
);
}
}
export default withInternalTheme(Portal);