2022-08-08 09:40:51 +01:00
/ *
2022-09-09 19:43:55 +01:00
GoToSocial
Copyright ( C ) 2021 - 2022 GoToSocial Authors admin @ gotosocial . org
2022-08-08 09:40:51 +01:00
2022-09-09 19:43:55 +01:00
This program is free software : you can redistribute it and / or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation , either version 3 of the License , or
( at your option ) any later version .
2022-08-08 09:40:51 +01:00
2022-09-09 19:43:55 +01:00
This program is distributed in the hope that it will be useful ,
but WITHOUT ANY WARRANTY ; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
GNU Affero General Public License for more details .
2022-08-08 09:40:51 +01:00
2022-09-09 19:43:55 +01:00
You should have received a copy of the GNU Affero General Public License
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2022-08-08 09:40:51 +01:00
* /
2022-09-07 12:51:16 +01:00
"use strict" ;
2022-08-08 09:40:51 +01:00
2022-09-09 00:39:43 +01:00
const Promise = require ( "bluebird" ) ;
const React = require ( "react" ) ;
2022-09-11 18:05:06 +01:00
const Redux = require ( "react-redux" ) ;
2022-09-09 00:39:43 +01:00
const Submit = require ( "../components/submit" ) ;
2022-09-11 18:42:13 +01:00
const api = require ( "../lib/api" ) ;
2022-09-11 18:05:06 +01:00
module . exports = function UserProfile ( ) {
2022-09-11 18:42:13 +01:00
const dispatch = Redux . useDispatch ( ) ;
2022-09-11 18:05:06 +01:00
const account = Redux . useSelector ( state => state . user . account ) ;
2022-09-09 00:39:43 +01:00
const [ errorMsg , setError ] = React . useState ( "" ) ;
const [ statusMsg , setStatus ] = React . useState ( "" ) ;
const [ headerFile , setHeaderFile ] = React . useState ( undefined ) ;
const [ avatarFile , setAvatarFile ] = React . useState ( undefined ) ;
const [ displayName , setDisplayName ] = React . useState ( "" ) ;
const [ bio , setBio ] = React . useState ( "" ) ;
const [ locked , setLocked ] = React . useState ( false ) ;
React . useEffect ( ( ) => {
setDisplayName ( account . display _name ) ;
setBio ( account . source ? account . source . note : "" ) ;
setLocked ( account . locked ) ;
2022-09-11 18:42:13 +01:00
} , [ ] ) ;
2022-09-09 00:39:43 +01:00
const headerOnChange = ( e ) => {
setHeaderFile ( e . target . files [ 0 ] ) ;
2022-09-11 18:42:13 +01:00
// setHeaderSrc(URL.createObjectURL(e.target.files[0]));
2022-09-09 00:39:43 +01:00
} ;
const avatarOnChange = ( e ) => {
setAvatarFile ( e . target . files [ 0 ] ) ;
2022-09-11 18:42:13 +01:00
// setAvatarSrc(URL.createObjectURL(e.target.files[0]));
2022-09-09 00:39:43 +01:00
} ;
const submit = ( e ) => {
e . preventDefault ( ) ;
setStatus ( "PATCHing" ) ;
setError ( "" ) ;
return Promise . try ( ( ) => {
2022-09-11 18:42:13 +01:00
let payload = {
display _name : displayName ,
note : bio ,
locked : locked
} ;
2022-09-09 00:39:43 +01:00
if ( headerFile ) {
2022-09-11 18:42:13 +01:00
payload . header = headerFile ;
2022-09-09 00:39:43 +01:00
}
if ( avatarFile ) {
2022-09-11 18:42:13 +01:00
payload . avatar = avatarFile ;
2022-09-09 00:39:43 +01:00
}
2022-09-11 18:42:13 +01:00
return dispatch ( api . user . updateAccount ( payload ) ) ;
} ) . then ( ( ) => {
2022-09-09 00:39:43 +01:00
setStatus ( "Saved!" ) ;
} ) . catch ( ( e ) => {
setError ( e . message ) ;
setStatus ( "" ) ;
} ) ;
} ;
return (
2022-09-11 18:42:13 +01:00
< div className = "user-profile" >
2022-09-11 20:59:39 +01:00
< h1 > Profile < / h 1 >
< div className = "overview" >
< div className = "profile" >
< div className = "headerimage" >
< img className = "headerpreview" src = { account . header } alt = { account . header ? ` header image for ${ account . username } ` : "None set" } / >
< / d i v >
< div className = "basic" >
< div id = "profile-basic-filler2" > < / d i v >
< span className = "avatar" > < img className = "avatarpreview" src = { account . avatar } alt = { account . avatar ? ` avatar image for ${ account . username } ` : "None set" } / > < / s p a n >
< div className = "displayname" > { account . display _name . trim ( ) . length > 0 ? account . display _name : account . username } < / d i v >
< div className = "username" > < span > @ { account . username } < / s p a n > < / d i v >
< / d i v >
< / d i v >
< div className = "files" >
2022-09-11 18:42:13 +01:00
< div >
2022-09-11 20:59:39 +01:00
< h3 > Header < / h 3 >
2022-09-11 18:42:13 +01:00
< label htmlFor = "header" className = "file-input button" > Browse … < / l a b e l >
2022-09-11 20:59:39 +01:00
< span > { headerFile ? headerFile . name : "no file selected" } < / s p a n >
2022-09-09 00:39:43 +01:00
< / d i v >
2022-09-11 18:42:13 +01:00
< div >
2022-09-11 20:59:39 +01:00
< h3 > Avatar < / h 3 >
2022-09-11 18:42:13 +01:00
< label htmlFor = "avatar" className = "file-input button" > Browse … < / l a b e l >
2022-09-11 20:59:39 +01:00
< span > { avatarFile ? avatarFile . name : "no file selected" } < / s p a n >
2022-09-09 00:39:43 +01:00
< / d i v >
< / d i v >
2022-09-11 18:42:13 +01:00
< / d i v >
< div className = "labelinput" >
2022-09-11 20:59:39 +01:00
< label htmlFor = "displayname" > Name < / l a b e l >
2022-09-11 18:42:13 +01:00
< input id = "displayname" type = "text" value = { displayName } onChange = { ( e ) => setDisplayName ( e . target . value ) } placeholder = "A GoToSocial user" / >
< / d i v >
< div className = "labelinput" >
< label htmlFor = "bio" > Bio < / l a b e l >
< textarea id = "bio" value = { bio } onChange = { ( e ) => setBio ( e . target . value ) } placeholder = "Just trying out GoToSocial, my pronouns are they/them and I like sloths." / >
< / d i v >
< div className = "labelcheckbox" >
2022-09-11 20:59:39 +01:00
< label htmlFor = "locked" > Manually approve follow requests ? < / l a b e l >
2022-09-11 18:42:13 +01:00
< input id = "locked" type = "checkbox" checked = { locked } onChange = { ( e ) => setLocked ( e . target . checked ) } / >
< / d i v >
< Submit onClick = { submit } label = "Save profile info" errorMsg = { errorMsg } statusMsg = { statusMsg } / >
< / d i v >
2022-09-09 00:39:43 +01:00
) ;
2022-09-07 12:51:16 +01:00
} ;