Skip to main content
Glama

antd-components-mcp

examples.md8.45 kB
## Timeline 组件示例 ### 基本用法 基本的时间轴。 ```tsx import React from 'react'; import { Timeline } from 'antd'; const App: React.FC = () => ( <Timeline items={[ { children: 'Create a services site 2015-09-01', }, { children: 'Solve initial network problems 2015-09-01', }, { children: 'Technical testing 2015-09-01', }, { children: 'Network problems being solved 2015-09-01', }, ]} /> ); export default App; ``` ### 圆圈颜色 圆圈颜色,绿色用于已完成、成功状态,红色表示告警或错误状态,蓝色可表示正在进行或其他默认状态,灰色表示未完成或失效状态。 ```tsx import React from 'react'; import { SmileOutlined } from '@ant-design/icons'; import { Timeline } from 'antd'; const App: React.FC = () => ( <Timeline items={[ { color: 'green', children: 'Create a services site 2015-09-01', }, { color: 'green', children: 'Create a services site 2015-09-01', }, { color: 'red', children: ( <> <p>Solve initial network problems 1</p> <p>Solve initial network problems 2</p> <p>Solve initial network problems 3 2015-09-01</p> </> ), }, { children: ( <> <p>Technical testing 1</p> <p>Technical testing 2</p> <p>Technical testing 3 2015-09-01</p> </> ), }, { color: 'gray', children: ( <> <p>Technical testing 1</p> <p>Technical testing 2</p> <p>Technical testing 3 2015-09-01</p> </> ), }, { color: 'gray', children: ( <> <p>Technical testing 1</p> <p>Technical testing 2</p> <p>Technical testing 3 2015-09-01</p> </> ), }, { color: '#00CCFF', dot: <SmileOutlined />, children: <p>Custom color testing</p>, }, ]} /> ); export default App; ``` ### 最后一个及排序 当任务状态正在发生,还在记录过程中,可用幽灵节点来表示当前的时间节点,当 pending 为真值时展示幽灵节点,如果 pending 是 React 元素可用于定制该节点内容,同时 pendingDot 将可以用于定制其轴点。reverse 属性用于控制节点排序,为 false 时按正序排列,为 true 时按倒序排列。 ```tsx import React, { useState } from 'react'; import { Button, Timeline } from 'antd'; const App: React.FC = () => { const [reverse, setReverse] = useState(false); const handleClick = () => { setReverse(!reverse); }; return ( <div> <Timeline pending="Recording..." reverse={reverse} items={[ { children: 'Create a services site 2015-09-01', }, { children: 'Solve initial network problems 2015-09-01', }, { children: 'Technical testing 2015-09-01', }, ]} /> <Button type="primary" style={{ marginTop: 16 }} onClick={handleClick}> Toggle Reverse </Button> </div> ); }; export default App; ``` ### 交替展现 内容在时间轴两侧轮流出现。 ```tsx import React from 'react'; import { ClockCircleOutlined } from '@ant-design/icons'; import { Timeline } from 'antd'; const App: React.FC = () => ( <Timeline mode="alternate" items={[ { children: 'Create a services site 2015-09-01', }, { children: 'Solve initial network problems 2015-09-01', color: 'green', }, { dot: <ClockCircleOutlined style={{ fontSize: '16px' }} />, children: `Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.`, }, { color: 'red', children: 'Network problems being solved 2015-09-01', }, { children: 'Create a services site 2015-09-01', }, { dot: <ClockCircleOutlined style={{ fontSize: '16px' }} />, children: 'Technical testing 2015-09-01', }, ]} /> ); export default App; ``` ### 自定义时间轴点 可以设置为图标或其他自定义元素。 ```tsx import React from 'react'; import { ClockCircleOutlined } from '@ant-design/icons'; import { Timeline } from 'antd'; const App: React.FC = () => ( <Timeline items={[ { children: 'Create a services site 2015-09-01', }, { children: 'Solve initial network problems 2015-09-01', }, { dot: <ClockCircleOutlined className="timeline-clock-icon" />, color: 'red', children: 'Technical testing 2015-09-01', }, { children: 'Network problems being solved 2015-09-01', }, ]} /> ); export default App; ``` ### 右侧时间轴点 时间轴点可以在内容的右边。 ```tsx import React from 'react'; import { ClockCircleOutlined } from '@ant-design/icons'; import { Timeline } from 'antd'; const App: React.FC = () => ( <Timeline mode="right" items={[ { children: 'Create a services site 2015-09-01', }, { children: 'Solve initial network problems 2015-09-01', }, { dot: <ClockCircleOutlined style={{ fontSize: '16px' }} />, color: 'red', children: 'Technical testing 2015-09-01', }, { children: 'Network problems being solved 2015-09-01', }, ]} /> ); export default App; ``` ### 标签 使用 `label` 标签单独展示时间。 ```tsx import React, { useState } from 'react'; import type { RadioChangeEvent } from 'antd'; import { Radio, Timeline } from 'antd'; const App: React.FC = () => { const [mode, setMode] = useState<'left' | 'alternate' | 'right'>('left'); const onChange = (e: RadioChangeEvent) => { setMode(e.target.value); }; return ( <> <Radio.Group onChange={onChange} value={mode} style={{ marginBottom: 20, }} > <Radio value="left">Left</Radio> <Radio value="right">Right</Radio> <Radio value="alternate">Alternate</Radio> </Radio.Group> <Timeline mode={mode} items={[ { label: '2015-09-01', children: 'Create a services', }, { label: '2015-09-01 09:12:11', children: 'Solve initial network problems', }, { children: 'Technical testing', }, { label: '2015-09-01 09:12:11', children: 'Network problems being solved', }, ]} /> </> ); }; export default App; ``` ### 线框风格 线框风格。 ```tsx import React from 'react'; import { ConfigProvider, Timeline } from 'antd'; const App: React.FC = () => ( <ConfigProvider theme={{ token: { wireframe: true } }}> <Timeline items={[ { children: 'Create a services site 2015-09-01', }, { children: 'Solve initial network problems 2015-09-01', }, { children: 'Technical testing 2015-09-01', }, { children: 'Network problems being solved 2015-09-01', }, ]} /> </ConfigProvider> ); export default App; ``` ### 组件 Token 自定义组件 Token。 ```tsx import React from 'react'; import { ConfigProvider, Timeline } from 'antd'; const App: React.FC = () => ( <ConfigProvider theme={{ components: { Timeline: { tailColor: 'red', tailWidth: 10, dotBorderWidth: 1, dotBg: 'green', itemPaddingBottom: 10, }, }, }} > <Timeline items={[ { children: 'Create a services site 2015-09-01', }, { children: 'Solve initial network problems 2015-09-01', }, { children: 'Technical testing 2015-09-01', }, { children: 'Network problems being solved 2015-09-01', }, ]} /> </ConfigProvider> ); export default App; ```

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zhixiaoqiang/antd-components-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server