yapi/client/components/Footer/Footer.js

111 lines
2.4 KiB
JavaScript

import './Footer.scss'
import React, { Component } from 'react'
import PropTypes from 'prop-types'
import { Icon } from 'antd'
class Footer extends Component {
constructor(props) {
super(props)
}
static propTypes = {
footList: PropTypes.array
}
render () {
return (
<div className = 'footer'>
<div className = 'footContent'>
{ this.props.footList.map(function(item,i){
return <FootItem key = { i } linkList = { item.linkList } title = { item.title } iconType = { item.iconType } ></FootItem>
}) }
<div className = 'copyRight'>
<h4>Copyright © 2017</h4>
YMFF出品 @ YMFF
</div>
</div>
</div>
)
}
}
class FootItem extends Component {
constructor(props) {
super(props);
}
static propTypes = {
linkList: PropTypes.array,
title: PropTypes.string,
iconType: PropTypes.string
}
render () {
return (
<div className = 'footItem'>
<h4><Icon type= { this.props.iconType } style={{ fontSize: 16 }} /> { this.props.title } </h4>
{ this.props.linkList.map(function(item,i){
return (<div key = {i}><a href = { item.itemLink }><span>{ item.itemTitle }</span></a></div>);
}) }
</div>
);
}
}
Footer.defaultProps = {
footList: [
{
title: 'GitHub',
iconType: 'github',
linkList: [
{
itemTitle: '源码仓库',
itemLink: 'http://www.baidu.com'
},
{
itemTitle: '源码仓库1',
itemLink: 'http://www.baidu.com'
},{
itemTitle: '源码仓库2',
itemLink: 'www.baidu.com'
}
]
},
{
title: '相关站点',
iconType: 'link',
linkList: [
{
itemTitle: '源码仓库',
itemLink: 'www.baidu.com'
},
{
itemTitle: '源码仓库1',
itemLink: 'www.baidu.com'
},{
itemTitle: '源码仓库2',
itemLink: 'www.baidu.com'
}
]
},
{
title: '社区',
iconType: 'customer-service',
linkList: [
{
itemTitle: '源码仓库',
itemLink: 'www.baidu.com'
},
{
itemTitle: '源码仓库1',
itemLink: 'www.baidu.com'
},{
itemTitle: '源码仓库2',
itemLink: 'www.baidu.com'
}
]
}
]
}
export default Footer