import * as React from "react";
import PortalConsumer from "./PortalConsumer";
import PortalHost, { PortalContext, PortalMethods } from "./PortalHost";
import { ThemeProvider, withTheme } from "../../core/theming";
import { Theme } from "../../types";
type Props = {
/**
* Content of the `Portal`.
*/
children: React.ReactNode;
/**
* @optional
*/
theme: Theme;
};
/**
* Portal allows to render 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`](portal-host.html) component to be rendered somewhere in the parent tree.
*
* ## Usage
* ```js
* import * as React from 'react';
* import { Portal, Text } from 'react-native-paper';
*
* export default class MyComponent extends React.Component {
* render() {
* return (
*
* This is rendered at a different place
*
* );
* }
* }
* ```
*/
class Portal extends React.Component {
// @component ./PortalHost.tsx
static Host = PortalHost;
render() {
const { children, theme } = this.props;
return (
{(manager) => (
{children}
)}
);
}
}
export default withTheme(Portal);