ReactJS 常青角对话框组件
React Evergreen 是一个流行的前端库,其中包含一组用于构建漂亮产品的 React 组件,因为该库灵活、合理的默认设置和用户友好。 CornerDialog 组件用于发布新功能、反馈请求等公告。 我们可以在 ReactJS 中使用以下方法来使用 Evergreen CornerDialog 组件。
CornerDialog 道具:
- 孩子:孩子可以是字符串、函数或节点。
- 意图:用于表示 CornerDialog 的意图。
- isShown:用于在设置为 true 时显示对话框。
- title:用于表示Dialog的标题。
- onCloseComplete:当退出过渡完成时触发的函数。
- onOpenComplete:当进入过渡完成时会触发的函数。
- hasFooter:设置为true时,用于显示带有取消和确认按钮的页脚。
- onConfirm:当点击确认按钮时触发的函数。
- confirmLabel:用于表示确认按钮的标签。
- hasCancel:用于在设置为 true 时显示取消按钮。
- hasClose:设置为 true 时用于显示关闭按钮。
- onCancel:这是一个在单击取消按钮时将调用的函数。
- cancelLabel:用于表示取消按钮的标签。
- width:用于表示Dialog的宽度。
- containerProps:用于表示传递给对话框容器的道具。
- position:用于设置角对话框的位置
创建 React 应用程序并安装模块:
第 1 步:使用以下命令创建一个 React 应用程序:
npx create-react-app foldername
第 2 步:创建项目文件夹(即文件夹名称)后,使用以下命令移动到该文件夹:
cd foldername
第 3 步:创建 ReactJS 应用程序后,安装 必需的 模块使用以下命令:
npm install evergreen-ui
项目结构:它将如下所示。
示例:现在在App.js文件中写下以下代码。在这里,App 是我们编写代码的默认组件。
App.js
import React from 'react'
import { CornerDialog, Button } from 'evergreen-ui'
export default function App() {
const [openDialog, setOpenDialog] = React.useState(false)
return (
ReactJS Evergreen CornerDialog Component
setOpenDialog(false)}
>
Please give your valuable feedback for this new feature
);
}
运行应用程序的步骤:从项目的根目录使用以下命令运行应用程序:
npm start
输出:现在打开浏览器并转到http://localhost:3000/ ,您将看到以下输出:
参考: https://evergreen.segment.com/components/corner-dialog