Security News
Input Validation Vulnerabilities Dominate MITRE's 2024 CWE Top 25 List
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
adui 已经发布于 NPM。你可以通过你的包管理器安装(比如 Yarn):
yarn add adui react react-dom
adui 目前依赖的 react
与 react-dom
版本为 16.13.1。adui 2.0 使用了 Hooks
书写组件,请保证你的 React 版本 ^16.8。
引入你所需要的 React 组件。
import { Button } from "adui"
<Button intent="primary">开始使用<Button/>
你不需要独立地引入样式,因为每个组件都会 import 自己的 .css
文件。你只需要保证 webpack 的 css-loader
能够作用到 node_modules/adui
这个文件夹,就能保证样式的正确。
未来会加入不需要依赖 webpack 配置的编译版本,届时 CSS 文件会完全与 JS 文件分离。
adui 使用了 CSS Variables 实现变量配置。
在引入之后,你的页面上就会有如下的样式:
:root {
--primary-color: #07c160;
}
你可以用更高优先级的 CSS 规则覆盖:
html:root {
--primary-color: #00bb9c;
}
adui 还设置了许多其他变量比如 --gray-50
至 --gray-900
,但请不要去修改这些变量。
IE / Edge | Firefox | Chrome | Safari | Opera |
---|---|---|---|---|
Edge | last 2 versions | last 2 versions | last 2 versions | last 2 versions |
adui 2.0 一部分组件以 Function Component
+ Hooks
实现。
现在,组件一共有 类组件(Class Component
),函数组件(Function Component
),以及也属于函数组件的ForwardRef Component
这三种。
adui 所有包含状态的组件都有两种设计,即 内部驱动(uncontrolled) 与 外部控制(controlled)。
代表内部驱动的 Prop 是 defaultValue
,代表外部控制的 Prop 是 value
。比如 <Switch />
组件的 defaultChecked
与 checked
。
defaultChecked
只在第一次渲染(constructor)时生效,之后的状态变化都会完全交给组件自身完成;
而 checked
则代表如果不从外部改变,那么组件的状态就不会变化(代码上由生命周期 getDerivedStateFromProps
实现的)。
这样设计的原理来源于 React 对表单的 Controlled/Uncontrolled 的概念。请阅读学习,并且按照需求选择这两种模式使用。
如果你只是需要设置一个初始值,并且只想要关心这个值的改变情况,比如 <Switch defaultChecked onChange={xxx} />
,这样你就不需要单独地设置一个 state 保证组件 UI 状态的完整;
如果你想要存储这个变化的值,并且之后会用这个值回传给 <Switch />
,那么你需要自己存储这个 state <Switch checked={xxx} onChange={xxx} />
。
adui 的开发任务:
npm i
npm start
Vscode 插件需要:ESlint + Stylelint。
adui 的文档生成工具是 bisheng。
以 button 为例:
button
│ index.tsx 组件出口
│ Button.tsx 组件文件
└───__tests__ enzyme + jest 单元测试
│ │ ...
└───demo
│ │ basic.md md 会被 bisheng 解析,可在 md 中定义 order/title,以及书写 jsx 代码
│ │ others.md
└───style
│ index.scss scss 出口
│ _button.scss 组件样式
export interface IButtonProps {
/**
* 类型
*/
intent?: "normal" | "primary" | "success" | "warning" | "danger"
}
...
Button.propTypes = {
/**
* 类型
*/
intent: PropTypes.oneOf([
"normal",
"primary",
"success",
"warning",
"danger",
]),
}
react-docgen 实际读取 ts 类型,所以可以说 prop-types 也并没有实际的用处了。保留 prop-types 库是为了保留这种原生实现。
有状态组件会使用 getDerivedStatesFromProp
生命周期实现,在无状态组件中,可以直接这样进行判断:
// 相当于生命周期 getDerivedStateFromProps
if (checkedProp !== null && checked !== checkedProp) {
setChecked(!!checkedProp)
}
enzyme + jest 书写测试用例。 关于测试:
expect(<Button />).toMatchSnapshot()
;npm run test
是跑全部测试,并生成 coverage,本地查看:adUI/coverage/lcov-report/index.html
,请尽力提高 statements 的覆盖率;jest components/button
,请确保全局安装了 jest
。发布与 Changelog 使用 standard-version
。
待规范
提交规范现在使用了 commitlint + husky
自动在 git pre-commit hook 时检测。同样在这时候会执行 stylelint 和 eslint。
使用 commitlint 做自动化 changelog。
推荐的 commit 示例:
feat(Button): 添加 focus prop。
fix(Button): 修复 focus 问题。
refactor(Button): 调整 scss 结构。
docs(Button): 添加 demo。
test(Button): 添加快照。
FAQs
Unknown package
The npm package adui receives a total of 290 weekly downloads. As such, adui popularity was classified as not popular.
We found that adui demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.
Research
Security News
A threat actor's playbook for exploiting the npm ecosystem was exposed on the dark web, detailing how to build a blockchain-powered botnet.