This commit is contained in:
caishi 2021-06-08 10:44:44 +08:00
parent 7c40f9be36
commit 2157f2ffe5
3 changed files with 57 additions and 47 deletions

View File

@ -2,6 +2,7 @@ import React, { useEffect, useState } from 'react';
import { Modal , Checkbox , Spin , Input } from 'antd';
import Axios from 'axios';
import { Link } from 'react-router-dom';
import { values } from 'lodash';
const { Search } = Input;
const limit = 20;
@ -15,13 +16,20 @@ function ConcentrateBox({ visible , onCancel , onSure , username , choosed }) {
const [ value , setValue ]= useState([]);
const [ isSpin , setIsSpin ]= useState(true);
const [ disable , setDisable ] = useState(false);
const [ copyList , setCopyList ] = useState([]);
const [ copyAllList , setCopyAllList ] = useState([]);
useEffect(()=>{
if(visible){
setIsSpin(true);
getProjectList();
}else{
setSearch(undefined);
setCopyAllList([]);
setCopyList([]);
setList([]);
}
setSearch(undefined);
},[visible])
useEffect(()=>{
@ -31,12 +39,6 @@ function ConcentrateBox({ visible , onCancel , onSure , username , choosed }) {
}
},[page])
useEffect(()=>{
if(search !== undefined){
setIsSpin(true);
getProjectList(1,search);
}
},[search])
useEffect(()=>{
if(visible && choosed && choosed.length >0 ){
@ -60,11 +62,11 @@ function ConcentrateBox({ visible , onCancel , onSure , username , choosed }) {
}
}).then(result=>{
if(result && result.data){
let e = page > 1 ? mergeArrayMerge(list,result.data.projects) : result.data.projects;
let e = !search ? mergeArrayMerge(list,result.data.projects) : result.data.projects;
setCopyAllList(!search ? e : copyAllList);
setTotal(result.data.count);
setList(e);
setIsSpin(false);
//
let s = parseInt(result.data.count/limit,0);
let y = result.data.count%limit;
@ -86,28 +88,39 @@ function ConcentrateBox({ visible , onCancel , onSure , username , choosed }) {
return array1
}
function saveList(c) {
// copyList
if(c && c.length > 0){
let l = []
for(var i=0;i<c.length;i++){
let filter = copyAllList.filter(j=>j.id === c[i]);
if(filter && filter.length>0){
l.push(filter[0]);
}
}
setCopyList(l);
}
}
function onOk() {
onSure && onSure(value);
setValue([]);
}
function chooseProject(e,p) {
function chooseProject(e) {
setValue(e);
}
//
function onSearch(params) {
setCopyAllList(list);
value && value.length > 0 ? saveList(value) : setCopyList([]);
setPage(1);
setList([]);
setSearch(params);
// if(params){
// setValueCopy(value);
// }else{
// setValue(valueCopy);
// setValueCopy([]);
// }
getProjectList(1,params);
}
return(
<Modal
visible={visible}
@ -133,21 +146,26 @@ function ConcentrateBox({ visible , onCancel , onSure , username , choosed }) {
/>
</div>
<div className="listbox">
{
list && list.length > 0 &&
<Checkbox.Group value={value} onChange={chooseProject} style={{width:"100%"}}>
{
list.map((i,k)=>{
return(
<Checkbox value={i.id} disabled={disable && (value.filter(j=>j === i.id).length===0)}>{i.name}</Checkbox>
)
})
}
</Checkbox.Group>
}
<Checkbox.Group value={value} onChange={chooseProject} style={{width:"100%"}}>
{
copyList && copyList.length >0 && copyList.map((i,k)=>{
return(
<Checkbox value={i.id} disabled={disable && (value.filter(j=>j === i.id).length===0)}>{i.author && i.author.name}/{i.name}</Checkbox>
)
})
}
{
list && list.length > 0 && list.map((i,k)=>{
let c = copyList && copyList.length >0 && copyList.filter(j=>j.id === i.id).length !== 0;
return(
!c && <Checkbox value={i.id} disabled={disable && (value.filter(j=>j === i.id).length===0)}>{i.author && i.author.name}/{i.name}</Checkbox>
)
})
}
</Checkbox.Group>
</div>
{ total > limit && page < pageSize && <div className="morelist" onClick={()=>setPage(page+1)}>查看更多</div> }
{ list && list.length === 0 && <div style={{textAlign:"center"}}>您还没有公开的{search && `${search}`}项目先去<Link to={`/projects/deposit/new`} className="color-blue">新建项目</Link></div> }
{ (list && list.length === 0) && (copyList && copyList.length === 0) && <div style={{textAlign:"center"}}>您还没有公开的{search && `${search}`}项目先去<Link to={`/projects/deposit/new`} className="color-blue">新建项目</Link></div> }
</Spin>
</Modal>
)

View File

@ -183,17 +183,11 @@ class Infos extends Component {
this.props.history.push(`/users/${user && user.login}/organizes`)
}
resetUser=()=>{
const { resetUserInfo } = this.props;
this.fetchUser();
resetUserInfo && resetUserInfo();
}
render() {
const { current_user, mygetHelmetapi , resetUserInfo } = this.props;
const { current_user, mygetHelmetapi } = this.props;
const { username } = this.props.match.params;
const { user, isSpin, project_type, route_type , undo_events , undo_messages , menuKey } = this.state;
return (
<div className="newMain clearfix">
<Spin spinning={isSpin}>
@ -213,7 +207,7 @@ class Infos extends Component {
</span>
</span>
<div className="text-center mt15 font-24 task-hide" title={user && user.username}>
<div className="text-center mt15 font-16 fwb task-hide" title={user && user.username}>
{user && user.username}
</div>
<div className="userDescription">
@ -342,7 +336,7 @@ class Infos extends Component {
<Route
path="/users/:username/info"
render={() => {
return <UpdateInfo {...this.props} {...this.state} resetUser={this.resetUser}/>;
return <UpdateInfo {...this.props} {...this.state} resetUser={this.fetchUser}/>;
}}
></Route>
<Route

View File

@ -10,16 +10,15 @@ export default Form.create()(
forwardRef((props)=>{
const { getFieldDecorator, validateFields , setFieldsValue } = props && props.form;
const { username } = props && props.match && props.match.params;
const { user , resetUser , current_user } = props;
const { user , resetUser } = props;
useEffect(()=>{
if(current_user && current_user.login){
if(user && user.login){
setFieldsValue({
...current_user,
location:current_user.province && [current_user.province,current_user.city]
...user,
location:user.province && [user.province,user.city]
})
}
},[current_user])
},[user])
function submit() {
validateFields((error,values)=>{
@ -45,7 +44,6 @@ export default Form.create()(
if(result && result.data){
props.showNotification("资料修改成功!")
resetUser && resetUser(result.data);
props.history.push(`/users/${username}`)
}
}).catch(error=>{})
}