ant-design/site/component/Footer/index.jsx

105 lines
3.5 KiB
React
Raw Normal View History

2016-02-29 14:08:40 +08:00
import React from 'react';
import { Select, Modal } from 'antd';
2016-03-17 15:46:07 +08:00
import { version as antdVersion } from '../../../package.json';
import { docVersions } from '../../website.config';
const Option = Select.Option;
2016-02-29 14:08:40 +08:00
2016-03-23 23:02:01 +08:00
docVersions[antdVersion] = antdVersion;
2016-02-29 14:08:40 +08:00
export default class Footer extends React.Component {
componentDidMount() {
// 大版本发布后全局弹窗提示
// 1. 点击『知道了』之后不再提示
// 2. 超过截止日期后不再提示
if (localStorage.getItem('infoNewVersionSent') !== 'true' ||
new Date().getTime() > new Date('2016/05/22').getTime()) {
this.infoNewVersion();
}
}
2016-03-17 15:46:07 +08:00
infoNewVersion() {
Modal.info({
2016-05-15 22:17:05 +08:00
title: 'antd 新版发布!',
content: (
2016-05-15 22:17:05 +08:00
<div>
2016-05-16 09:43:43 +08:00
<img src="https://os.alipayobjects.com/rmsportal/nyqBompsynAQCpJ.svg" alt="Ant Design" />
<p>
2016-05-15 22:17:05 +08:00
您好<a target="_blank" href="/#/changelog">antd@1.0</a> 已正式发布欢迎升级
2016-05-15 21:21:42 +08:00
如果您还需要使用旧版请查阅 <a target="_blank" href="http://012x.ant.design">012x.ant.design</a>
2016-05-15 22:17:05 +08:00
也可通过页面右下角的文档版本选择框进行切换
</p>
</div>
),
onOk: () => localStorage.setItem('infoNewVersionSent', 'true'),
2016-05-15 22:17:05 +08:00
className: 'new-version-info-modal',
width: 470,
});
2016-03-17 15:46:07 +08:00
}
handleVersionChange = (url) => {
2016-03-17 15:46:07 +08:00
window.location.href = url;
}
2016-02-29 14:08:40 +08:00
render() {
2016-03-23 23:02:01 +08:00
const options = Object.keys(docVersions).map(version => (
<Option value={docVersions[version]} key={version}>{version}</Option>
));
2016-03-01 14:19:50 +08:00
return (
<footer id="footer">
<ul>
<li>
<h2>GitHub</h2>
2016-05-12 17:44:36 +08:00
<div>
<a target="_blank " href="https://github.com/ant-design/ant-design">仓库</a>
</div>
<div>
<a target="_blank" href="https://github.com/ant-design/antd-init">antd-init</a> - 脚手架
</div>
<div>
<a target="_blank" href="http://ant-tool.github.io">ant-tool</a> - 开发工具
</div>
2016-03-01 14:19:50 +08:00
</li>
<li>
2016-05-12 17:44:36 +08:00
<h2>相关站点</h2>
2016-05-14 15:17:42 +08:00
<div><a href="https://g2.alipay.com/">G2</a> - 数据可视化</div>
<div><a href="https://antv.alipay.com/">AntV</a> - 数据可视化规范</div>
2016-05-12 17:44:36 +08:00
<div><a href="http://motion.ant.design">Ant Motion</a> - 设计动效</div>
<div><a href="http://motion.ant.design">Ant UX</a> - 页面逻辑素材</div>
2016-03-01 14:19:50 +08:00
</li>
<li>
<h2>联系我们</h2>
2016-05-12 17:44:36 +08:00
<div>
<a target="_blank" href="https://github.com/ant-design/ant-design/issues">
反馈和建议
</a>
</div>
<div>
<a target="_blank" href="https://gitter.im/ant-design/ant-design">
讨论
</a>
</div>
<div>
<a target="_blank" href="https://github.com/ant-design/ant-design/issues/new">
报告 Bug
</a>
</div>
2016-03-01 14:19:50 +08:00
</li>
<li>
2016-05-12 17:44:36 +08:00
<div>©2016 蚂蚁金服体验技术部出品</div>
<div style={{ marginTop: 10 }}>
2016-03-01 14:19:50 +08:00
文档版本
2016-03-23 23:02:01 +08:00
<Select
size="small"
dropdownMatchSelectWidth={false}
defaultValue={antdVersion}
onChange={this.handleVersionChange}>
{options}
2016-03-01 14:19:50 +08:00
</Select>
</div>
</li>
</ul>
</footer>
);
2016-02-29 14:08:40 +08:00
}
}