mirror of
https://github.com/YMFE/yapi.git
synced 2025-02-05 13:29:43 +08:00
none
This commit is contained in:
parent
c774df54d2
commit
403d6eb552
47
client/containers/ProjectGroups/GroupList/GroupList.js
Normal file
47
client/containers/ProjectGroups/GroupList/GroupList.js
Normal file
@ -0,0 +1,47 @@
|
||||
import React, { Component } from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
import { connect } from 'react-redux'
|
||||
import { Card } from 'antd'
|
||||
|
||||
import {
|
||||
fetchGroupList,
|
||||
fetchCurrGroup
|
||||
} from '../../../actions/group.js'
|
||||
|
||||
import './GroupList.scss'
|
||||
|
||||
@connect(
|
||||
state => ({
|
||||
groupList: state.group.groupList,
|
||||
currGroup: state.group.currGroup,
|
||||
}),
|
||||
{
|
||||
fetchGroupList,
|
||||
fetchCurrGroup
|
||||
}
|
||||
)
|
||||
export default class GroupList extends Component {
|
||||
constructor(props) {
|
||||
super(props)
|
||||
}
|
||||
|
||||
static propTypes = {
|
||||
groupList: PropTypes.array,
|
||||
currGroup: PropTypes.string
|
||||
}
|
||||
|
||||
render () {
|
||||
const { groupList, currGroup } = this.props;
|
||||
|
||||
return (
|
||||
<Card title="Groups">
|
||||
<div>{currGroup}</div>
|
||||
{
|
||||
groupList.map((group, index) => (
|
||||
<div key={index}>{group}</div>
|
||||
))
|
||||
}
|
||||
</Card>
|
||||
)
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user