yapi-next/vendors/client/containers/Group/Group.js
2023-06-25 19:08:56 +08:00

124 lines
3.6 KiB
JavaScript
Executable File

import React, { PureComponent as Component } from 'react';
import GroupList from './GroupList/GroupList.js';
import ProjectList from './ProjectList/ProjectList.js';
import MemberList from './MemberList/MemberList.js';
import GroupLog from './GroupLog/GroupLog.js';
import GroupSetting from './GroupSetting/GroupSetting.js';
import PropTypes from 'prop-types';
import { connect } from 'react-redux';
import { Route, Switch, Redirect } from 'react-router-dom';
import { Tabs, Layout, Spin } from 'antd';
const { Content, Sider } = Layout;
const TabPane = Tabs.TabPane;
import { fetchNewsData } from '../../reducer/modules/news.js';
import {
setCurrGroup
} from '../../reducer/modules/group';
import './Group.scss';
import axios from 'axios'
@connect(
state => {
return {
curGroupId: state.group.currGroup._id,
curUserRole: state.user.role,
curUserRoleInGroup: state.group.currGroup.role || state.group.role,
currGroup: state.group.currGroup
};
},
{
fetchNewsData: fetchNewsData,
setCurrGroup
}
)
export default class Group extends Component {
constructor(props) {
super(props);
this.state = {
groupId: -1
}
}
async componentDidMount(){
let r = await axios.get('/api/group/get_mygroup')
try{
let group = r.data.data;
this.setState({
groupId: group._id
})
this.props.setCurrGroup(group)
}catch(e){
console.error(e)
}
}
static propTypes = {
fetchNewsData: PropTypes.func,
curGroupId: PropTypes.number,
curUserRole: PropTypes.string,
currGroup: PropTypes.object,
curUserRoleInGroup: PropTypes.string,
setCurrGroup: PropTypes.func
};
// onTabClick=(key)=> {
// // if (key == 3) {
// // this.props.fetchNewsData(this.props.curGroupId, "group", 1, 10)
// // }
// }
render() {
if(this.state.groupId === -1)return <Spin />
const GroupContent = (
<Layout style={{ minHeight: 'calc(100vh - 100px)', marginLeft: '24px', marginTop: '24px' }}>
<Sider style={{ height: '100%' }} width={300}>
<div className="logo" />
<GroupList />
</Sider>
<Layout>
<Content
style={{
height: '100%',
margin: '0 24px 0 16px',
overflow: 'initial',
backgroundColor: '#fff'
}}
>
<Tabs type="card" className="m-tab tabs-large" style={{ height: '100%' }}>
<TabPane tab="项目列表" key="1">
<ProjectList />
</TabPane>
{this.props.currGroup.type === 'public' ? (
<TabPane tab="成员列表" key="2">
<MemberList />
</TabPane>
) : null}
{['admin', 'owner', 'guest', 'dev'].indexOf(this.props.curUserRoleInGroup) > -1 ||
this.props.curUserRole === 'admin' ? (
<TabPane tab="分组动态" key="3">
<GroupLog />
</TabPane>
) : (
''
)}
{(this.props.curUserRole === 'admin' || this.props.curUserRoleInGroup === 'owner') &&
this.props.currGroup.type !== 'private' ? (
<TabPane tab="分组设置" key="4">
<GroupSetting />
</TabPane>
) : null}
</Tabs>
</Content>
</Layout>
</Layout>
);
return (
<div className="projectGround">
<Switch>
<Redirect exact from="/group" to={"/group/" + this.state.groupId} />
<Route path="/group/:groupId" render={() => GroupContent} />
</Switch>
</div>
);
}
}