zent
Version:
一套前端设计语言和基于React的实现
68 lines (47 loc) • 3.12 kB
Markdown
---
title: Portal
subtitle: 传送门
path: component/portal
group: 基础
---
## Portal 传送门
传送门组件。
### 使用场景
这个组件不提供样式,但它是所有弹层组件的基石。使用 `Portal` 的好处是不需要自己管理动态插入的节点,防止内存泄露。
### API
| 参数 | 说明 | 类型 | 默认值 | 备选值 |
| --------- | ----------------- | --------------------- | -------- | ------------------------ |
| children | 必填参数, 只支持一个child | string | | |
| selector | 可选参数, 渲染child的DOM节点 | string or DOM Element | `'body'` | 合法的CSS selector或者某个DOM节点 |
| visible | 可选参数, 是否渲染child | bool | `true` | |
| className | 可选参数, 自定义额外类名 | string | `''` | |
| css | 可选参数, 额外的css样式. 例如, `{ 'margin-left': '10px' }` | object | `{}` | |
| prefix | 可选参数, 自定义前缀 | string | `'zent'` | |
`Portal` 另外还提供了几个高阶组件(HOC),提供了一些弹层常用的逻辑。
#### withESCToClose
封装了按ESC关闭的逻辑.
| 参数 | 说明 | 类型 | 默认值 |
| ------- | ------------------------- | ---- | ------ |
| visible | 必填参数, 注意这个属性原始的Portal是可选的 | bool | `true` |
| onClose | 必填参数, ESC按下是的回调函数 | func | | |
```jsx
import { Portal as _Portal } from 'zent';
const { withESCToClose } = _Portal;
const Portal = withESCToClose(_Portal);
```
#### withNonScrollable
封装了禁止container滚动的逻辑.
| 参数 | 说明 | 类型 | 默认值 |
| ------- | ------------------------- | ---- | ------ |
| visible | 必填参数, 注意这个属性原始的Portal是可选的 | bool | `true` |
```jsx
import { Portal as _Portal } from 'zent';
const { withNonScrollable } = _Portal;
const Portal = withNonScrollable(_Portal);
```
### 组件原理
- 组件的主要功能是把其 `child` 插入到一个给定的 DOM node中, 并且在组件被 `unmount` 的时候将其 `child` 属性对应的 DOM 节点删除.
- 任意 props 被修改后会触发一定程度的重绘, `children`, `selector`被修改会导致组件 `unmount` 再 `mount`;其它props被修改仅更新现有 DOM node 的属性.
### 已知问题
- 在 Portal 的 `children` 上使用字符串形式的 `ref` 会报错, 可以使用函数形式的 `ref` 绕过这个问题. 其原因是 Portal 的 `children` 没有owner, 使用函数形式的`ref`可以绕过这个问题的原因参见[ Here](https://github.com/facebook/react/blob/v15.0.2/src/renderers/shared/reconciler/ReactRef.js#L18). 此外官方也不鼓励使用字符串形式的 `ref`.
- `15.0.2` 版本的 React 有个 bug 会导致某些情况下依赖 `state` 的 `context` 不更新 (参考 example: 02-context), 请等待 React 版本的统一升级.