实用工具

插槽

将其属性合并到其直接子元素上。

特性

    可用于支持您自己的 `asChild` 属性。

安装

从命令行安装组件。

npm install @radix-ui/react-slot

结构

导入组件。

import { Slot } from "radix-ui";
export default () => (
<Slot.Root>
<div>Hello</div>
</Slot.Root>
);

基本示例

用于创建您自己的 asChild API。

当您的组件只有一个子元素时

// your-button.jsx
import * as React from "react";
import { Slot } from "radix-ui";
function Button({ asChild, ...props }) {
const Comp = asChild ? Slot.Root : "button";
return <Comp {...props} />;
}

当您的组件有多个子元素时,使用 Slottable 将属性传递给正确的元素

// your-button.jsx
import * as React from "react";
import { Slot } from "radix-ui";
function Button({ asChild, children, leftElement, rightElement, ...props }) {
const Comp = asChild ? Slot.Root : "button";
return (
<Comp {...props}>
{leftElement}
<Slot.Slottable>{children}</Slottable>
{rightElement}
</Comp>
);
}

用法

import { Button } from "./your-button";
export default () => (
<Button asChild>
<a href="/contact">Contact</a>
</Button>
);

事件处理程序

任何以 on 开头的属性(例如,onClick)都被视为事件处理程序。

当合并事件处理程序时,Slot 将创建一个新函数,其中子处理程序优先于插槽处理程序。

如果其中一个事件处理程序依赖于 event.defaultPrevented,请确保顺序正确。

import { Slot } from "radix-ui";
export default () => (
<Slot.Root onClick={(event) => { if (!event.defaultPrevented) console.log("Not logged because default is prevented."); }} >
<button onClick={(event) => event.preventDefault()} />
</Slot>
);
上一篇Portal