Skip to content
Snippets Groups Projects
Commit dd3885a5 authored by Lucas Eduardo Schoenfelder's avatar Lucas Eduardo Schoenfelder
Browse files

fixed change avatar not working as intended bug

parent 9f053a76
No related branches found
No related tags found
3 merge requests!57Merge of develop into master,!56Fixed buttons reportar, seguir, compartilhar, guardar and entrar (in comments...,!39Update admin system
...@@ -94,6 +94,7 @@ export default function ComponentAlterarAvatar (props) { ...@@ -94,6 +94,7 @@ export default function ComponentAlterarAvatar (props) {
type : 'USER_CHANGED_COVER', type : 'USER_CHANGED_COVER',
currUser : Object.assign(target, source) currUser : Object.assign(target, source)
}) })
props.handleClose()
} }
const completeSelection = () => { const completeSelection = () => {
......
...@@ -28,6 +28,7 @@ import FormInput from "../../FormInput.js" ...@@ -28,6 +28,7 @@ import FormInput from "../../FormInput.js"
import ValidateUserInput from '../../HelperFunctions/FormValidationFunction.js' import ValidateUserInput from '../../HelperFunctions/FormValidationFunction.js'
import {apiDomain} from '../../../env.js' import {apiDomain} from '../../../env.js'
import ModalAlterarCover from '../../ModalAlterarCover/ModalAlterarCover.js' import ModalAlterarCover from '../../ModalAlterarCover/ModalAlterarCover.js'
import ModalAlterarAvatar from '../../ModalAlterarAvatar/ModalAlterarAvatar.js'
import Profile from '../../../img/default_profile0.png' import Profile from '../../../img/default_profile0.png'
export default function TabPanelEditarPerfil (props) { export default function TabPanelEditarPerfil (props) {
...@@ -92,6 +93,9 @@ export default function TabPanelEditarPerfil (props) { ...@@ -92,6 +93,9 @@ export default function TabPanelEditarPerfil (props) {
}) })
} }
const [alterarAvatatarOpen, toggleAlterarAvatar] = useState(false)
const controlModalAvatar = () => {toggleAlterarAvatar(!alterarAvatatarOpen)}
const handleSubmit = (e) => { const handleSubmit = (e) => {
e.preventDefault() e.preventDefault()
const info = {user : {name : formNome.value, description : formAboutMe.value, email : sessionStorage.getItem('@portalmec/uid')}} const info = {user : {name : formNome.value, description : formAboutMe.value, email : sessionStorage.getItem('@portalmec/uid')}}
...@@ -112,6 +116,12 @@ export default function TabPanelEditarPerfil (props) { ...@@ -112,6 +116,12 @@ export default function TabPanelEditarPerfil (props) {
cover={tempCover} cover={tempCover}
id={state.currentUser.id} id={state.currentUser.id}
/> />
<ModalAlterarAvatar
open={alterarAvatatarOpen}
handleClose={controlModalAvatar}
userAvatar={state.currentUser.avatar}
id={state.currentUser.id}
/>
<div className="card-config"> <div className="card-config">
<h1 style={{fontWeight:"300"}}>Editar Perfil </h1> <h1 style={{fontWeight:"300"}}>Editar Perfil </h1>
<div className='content-div'> <div className='content-div'>
...@@ -129,9 +139,9 @@ export default function TabPanelEditarPerfil (props) { ...@@ -129,9 +139,9 @@ export default function TabPanelEditarPerfil (props) {
</label> </label>
</div> </div>
<ProfileAvatarDiv onMouseEnter={handleHoverAlterarFoto} onMouseLeave={handleHoverAlterarFoto}> <ProfileAvatarDiv onMouseEnter={handleHoverAlterarFoto} onMouseLeave={handleHoverAlterarFoto}>
<img src={state.currentUser.avatar ? `${apiDomain}` + state.currentUser.avatar : Profile} alt = "user avatar" style={{border:"0", verticalAlign:"middle"}}/> <img src={state.currentUser.avatar ? `${apiDomain}` + state.currentUser.avatar : Profile} alt = "user avatar"/>
<ChangeAvatarDiv style={ {display : hoverAlterarFoto ? 'flex' : 'none'}}> <ChangeAvatarDiv style={ {display : hoverAlterarFoto ? 'flex' : 'none'}}>
<span>Alterar Foto</span> <span onClick={()=>{controlModalAvatar()}}>Alterar Foto</span>
</ChangeAvatarDiv> </ChangeAvatarDiv>
</ProfileAvatarDiv> </ProfileAvatarDiv>
</HeaderContainer> </HeaderContainer>
...@@ -269,14 +279,21 @@ const ProfileAvatarDiv = styled.div` ...@@ -269,14 +279,21 @@ const ProfileAvatarDiv = styled.div`
left : 120px !important; left : 120px !important;
border-radius : 100%; border-radius : 100%;
position : absolute; position : absolute;
width : 100px !important; max-width : 100px !important;
height : 100px !important; max-height : 100px !important;
overflow : hidden; overflow : hidden;
border : 8px solid #fff; border : 8px solid #fff;
outline : 0; outline : 0;
cursor : pointer; cursor : pointer;
z-index : 10; z-index : 10;
background-color : #fff !important; background-color : #fff !important;
img {
border:0;
vertical-align:middle;
width : 100%;
height : 100%;
}
` `
const HeaderContainer = styled.div` const HeaderContainer = styled.div`
......
...@@ -34,7 +34,7 @@ export default function ProfileAvatar (props) { ...@@ -34,7 +34,7 @@ export default function ProfileAvatar (props) {
const [open, toggleOpen] = useState(false) const [open, toggleOpen] = useState(false)
const controlModal = () => {toggleOpen(!open)} const controlModal = () => {toggleOpen(!open)}
useEffect(() => {setAvatar(state.currentUser.avatar)}, state.currentUser.avatar) useEffect(() => {setAvatar(state.currentUser.avatar)}, [state.currentUser.avatar])
return ( return (
<> <>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment