文章出处: 拉 勾 大前端 高薪训练营
现代化 React UI 框架 Chakra-UI
Chakra UI是一个简单的,模块化的易于理解的UI组件库.提供了丰富的构建React应用所需的U|组件.
文档: https://next.chakra-ui.com/docs/getting-started
npm install @chakra-ui/react @emotion/react @emotion/styled framer-motion
Chakra-UI 提供的组件是建立在主题基础之上的,只有先引入了主题组件才能够使用其他组件。
npm install @chakra-ui/theme
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import theme from '@chakra-ui/theme'
import {
ChakraProvider } from "@chakra-ui/react"
ReactDOM.render(
<ChakraProvider theme={
theme}>
<App />
</ChakraProvider>,
document.getElementById('root')
);
{
"name": "chakra-ui-guide",
"version": "0.1.0",
"private": true,
"dependencies": {
"@chakra-ui/react": "^1.0.4",
"@chakra-ui/theme": "^1.2.2",
"@emotion/react": "^11.1.3",
"@emotion/styled": "^11.0.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"framer-motion": "^3.1.1",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-scripts": "4.0.1",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}
import {
Button } from '@chakra-ui/react'
function App() {
return (
<div>
<Button>submit</Button>
</div>
);
}
export default App;
Style Props 是用来更改组件样式的,通过为组件传递属性的方式实现。通过传递简化的样式属性一达到提升开发效率的目的。可以在https://chakra-ui.com/docs/features/style-props查看样式简写
Prop | CSS Property | Theme Key |
---|---|---|
m , margin |
margin |
space |
mt , marginTop |
margin-top |
space |
mr , marginRight |
margin-right |
space |
mb , marginBottom |
margin-bottom |
space |
ml , marginLeft |
margin-left |
space |
mx |
margin-left and margin-right |
space |
my |
margin-top and margin-bottom |
space |
p , padding |
padding |
space |
pt , paddingTop |
padding-top |
space |
pr , paddingRight |
padding-right |
space |
pb , paddingBottom |
padding-bottom |
space |
pl , paddingLeft |
padding-left |
space |
px |
padding-left and padding-right |
space |
py |
padding-top and padding-bottom |
space |
如何使用:
import {
Box } from '@chakra-ui/react'
function App() {
return (
<div>
<Box w={
256} h={
200} bg='tomato'>Box</Box>
</div>
);
}
export default App;
chakra-ui 提供的组件都支持两种颜色模式,浅色模式(light)和暗色模式(dark).
可以通过 useColorMode 进行颜色模式的更改。
import {
Box, Text, Button, useColorMode } from '@chakra-ui/react'
function App() {
const {
colorMode, toggleColorMode} = useColorMode() // 注意这里是对象解构,不是数组解构
return (
<Box w={
256} h={
200} bg='tomato'>
<Text>当前的颜色模式为 {
colorMode}</Text>
<Button onClick={
toggleColorMode}>切换颜色模式</Button>
</Box>
);
}
export default App;
Chakra 将颜色模式存储在 localStorage 中,并使用类名策略来确保颜色模式是持久的
chakra 允许在为元素设置样式时根据颜色模式产生不同值。通过 useColorModeValue 钩子函数实现
import {
Box, useColorModeValue } from '@chakra-ui/react'
const bg = useColorModeValue('tomato', 'skyblue')
<Box w={
256} h={
200} bg={
bg}></Box>
使组件不受颜色模式的影响,始终保持在某个颜色模式下的样式,使用 LightMode 组件包裹需要作用的组件只显示浅色模式,,使用 DarkMode 组件包裹需要作用的组件只显示暗色模式
import {
Button, LightMode } from '@chakra-ui/react'
<LightMode>
<Button onClick={
toggleColorMode}>切换颜色模式</Button>
</LightMode>
设置默认颜色模式
通过 theme.config.initialColorMode 可以设置应用使用的默认主题.
使用操作系统所使用的颜色模式
通过 theme.config.useSystemColorMode 可以设置将应用的颜色模式设置为操作系统所使用的颜色模式.
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import theme from '@chakra-ui/theme'
import {
ChakraProvider } from "@chakra-ui/react"
// 1. 设置默认颜色模式
// theme.config.initialColorMode = 'dark'
// 2. 使用操作系统所使用的颜色模式
theme.config.useSystemColorMode = true
ReactDOM.render(
<ChakraProvider theme={
theme}>
<App />
</ChakraProvider>,
document.getElementById('root')
);
在设置颜色时,可以但不限于取主题对象中的颜色值
function App() {
return <Box w={
200} h={
200} bg="cyan.500"></Box>
}
使用 space 可以自定义项目间距。这些间距值可以由 width, height 和 maxWidth, minWidth 等样式引用
<Box mt={
6} w="lg" h="2xl" ></Box> <!-- lg => 32rem -->
配置响应数组值中使用的默认断点。这些值将用于生成移动优先(即最小宽度)的媒体查询
// theme.js
export default {
breakpoints: ["30em", "48em", "62em", "8Øem"] ,
};
<Box fontSize={
["12px", "14px", "16px", "18px", "20px"]}></Box>
import {
chakra} from '@chakra-ui/react'
const LaGouButton = chakra("button", {
baseStyle: {
borderRadius: 'lg'
},
sizes: {
sm: {
px: '3', // padding-left/padding-right
py: '1', // padding-right/padding-bottom
fontSize: '12px'
},
md: {
px: '4',
py: '2',
fontSize: '14px'
}
},
variants: {
// 风格化样式
primary: {
bgColor: 'blue.500',
color: 'white'
},
danger: {
bgColor: 'red.500',
color: 'white'
}
}
});
LaGouButton.defaultProps = {
size: 'sm',
variant: 'primary'
};
function App() {
return (
<div>
<LaGouButton> 按钮 </LaGouButton>
</div>
)
}
export default App;
const LaGouButton = {
baseStyle: {
borderRadius: 'lg'
},
sizes: {
sm: {
px: '3', // padding-left/padding-right
py: '1', // padding-right/padding-bottom
fontSize: '12px'
},
md: {
px: '4',
py: '2',
fontSize: '14px'
}
},
variants: {
// 风格化样式
primary: {
bgColor: 'blue.500',
color: 'white'
},
danger: {
bgColor: 'red.500',
color: 'white'
}
},
defaultProps: {
size: 'sm',
variant: 'primary'
}
}
export default LaGouButton
c. 在 LaGou 文件夹中创建 index.js 文件用于导入导出所有的自定义组件
import LaGouButton from './Button'
export default {
LaGouButton
}
d. 在 src 文件夹中的 index.js 文件中导入自定义 Chakra-UI 组件并和 components 属性进行合并
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import theme from '@chakra-ui/theme'
import {
ChakraProvider } from "@chakra-ui/react"
import LaGouComponents from './LaGou'
const myTheme = {
...theme,
components: {
...theme.components,
...LaGouComponents
}
}
console.log(myTheme)
ReactDOM.render(
<ChakraProvider theme={
myTheme}>
<App />
</ChakraProvider>,
document.getElementById('root')
);
e. 在组件中使用样式化组件
import {
chakra} from '@chakra-ui/react'
const LaGouButton = chakra("button", {
themeKey: 'LaGouButton'
});
function App() {
return (
<div>
<LaGouButton> 按钮 </LaGouButton>
</div>
)
}
export default App;