| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | /* | 
					
						
							|  |  |  | 	GoToSocial | 
					
						
							| 
									
										
										
										
											2023-01-05 12:43:00 +01:00
										 |  |  | 	Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02: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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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/>.
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | "use strict"; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const React = require("react"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | const query = require("../lib/query"); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | const { | 
					
						
							|  |  |  | 	useTextInput, | 
					
						
							|  |  |  | 	useFileInput, | 
					
						
							|  |  |  | 	useBoolInput | 
					
						
							|  |  |  | } = require("../lib/form"); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | const useFormSubmit = require("../lib/form/submit"); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | const { | 
					
						
							|  |  |  | 	TextInput, | 
					
						
							|  |  |  | 	TextArea, | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	FileInput, | 
					
						
							|  |  |  | 	Checkbox | 
					
						
							|  |  |  | } = require("../components/form/inputs"); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const FormWithData = require("../lib/form/form-with-data"); | 
					
						
							|  |  |  | const FakeProfile = require("../components/fake-profile"); | 
					
						
							|  |  |  | const MutationButton = require("../components/form/mutation-button"); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | module.exports = function UserProfile() { | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	return ( | 
					
						
							|  |  |  | 		<FormWithData | 
					
						
							|  |  |  | 			dataQuery={query.useVerifyCredentialsQuery} | 
					
						
							|  |  |  | 			DataForm={UserProfileForm} | 
					
						
							|  |  |  | 		/> | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | function UserProfileForm({ data: profile }) { | 
					
						
							|  |  |  | 	/* | 
					
						
							|  |  |  | 		User profile update form keys | 
					
						
							|  |  |  | 		- bool bot | 
					
						
							|  |  |  | 		- bool locked | 
					
						
							|  |  |  | 		- string display_name | 
					
						
							|  |  |  | 		- string note | 
					
						
							|  |  |  | 		- file avatar | 
					
						
							|  |  |  | 		- file header | 
					
						
							|  |  |  | 		- bool enable_rss | 
					
						
							|  |  |  | 		- string custom_css (if enabled) | 
					
						
							|  |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	const { data: instance } = query.useInstanceQuery(); | 
					
						
							|  |  |  | 	const allowCustomCSS = React.useMemo(() => { | 
					
						
							|  |  |  | 		return instance?.configuration?.accounts?.allow_custom_css === true; | 
					
						
							|  |  |  | 	}, [instance]); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	const form = { | 
					
						
							|  |  |  | 		avatar: useFileInput("avatar", { withPreview: true }), | 
					
						
							|  |  |  | 		header: useFileInput("header", { withPreview: true }), | 
					
						
							| 
									
										
										
										
											2023-02-06 09:19:56 +01:00
										 |  |  | 		displayName: useTextInput("display_name", { source: profile }), | 
					
						
							|  |  |  | 		note: useTextInput("note", { source: profile, valueSelector: (p) => p.source?.note }), | 
					
						
							|  |  |  | 		customCSS: useTextInput("custom_css", { source: profile }), | 
					
						
							|  |  |  | 		bot: useBoolInput("bot", { source: profile }), | 
					
						
							|  |  |  | 		locked: useBoolInput("locked", { source: profile }), | 
					
						
							|  |  |  | 		enableRSS: useBoolInput("enable_rss", { source: profile }), | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	const [submitForm, result] = useFormSubmit(form, query.useUpdateCredentialsMutation()); | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	return ( | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		<form className="user-profile" onSubmit={submitForm}> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 			<h1>Profile</h1> | 
					
						
							|  |  |  | 			<div className="overview"> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				<FakeProfile | 
					
						
							|  |  |  | 					avatar={form.avatar.previewValue ?? profile.avatar} | 
					
						
							|  |  |  | 					header={form.header.previewValue ?? profile.header} | 
					
						
							|  |  |  | 					display_name={form.displayName.value ?? profile.username} | 
					
						
							|  |  |  | 					username={profile.username} | 
					
						
							|  |  |  | 					role={profile.role} | 
					
						
							|  |  |  | 				/> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 				<div className="files"> | 
					
						
							|  |  |  | 					<div> | 
					
						
							|  |  |  | 						<h3>Header</h3> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 						<FileInput | 
					
						
							|  |  |  | 							field={form.header} | 
					
						
							|  |  |  | 							accept="image/*" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 						/> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<div> | 
					
						
							|  |  |  | 						<h3>Avatar</h3> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 						<FileInput | 
					
						
							|  |  |  | 							field={form.avatar} | 
					
						
							|  |  |  | 							accept="image/*" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 						/> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				field={form.displayName} | 
					
						
							|  |  |  | 				label="Name" | 
					
						
							|  |  |  | 				placeholder="A GoToSocial user" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 			/> | 
					
						
							|  |  |  | 			<TextArea | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				field={form.note} | 
					
						
							|  |  |  | 				label="Bio" | 
					
						
							|  |  |  | 				placeholder="Just trying out GoToSocial, my pronouns are they/them and I like sloths." | 
					
						
							|  |  |  | 				rows={8} | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 			/> | 
					
						
							|  |  |  | 			<Checkbox | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				field={form.locked} | 
					
						
							|  |  |  | 				label="Manually approve follow requests" | 
					
						
							| 
									
										
										
										
											2022-10-08 14:00:39 +02:00
										 |  |  | 			/> | 
					
						
							|  |  |  | 			<Checkbox | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				field={form.enableRSS} | 
					
						
							|  |  |  | 				label="Enable RSS feed of Public posts" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 			{!allowCustomCSS ? null : | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 				<TextArea | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 					field={form.customCSS} | 
					
						
							|  |  |  | 					label="Custom CSS" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 					className="monospace" | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 					rows={8} | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 				> | 
					
						
							|  |  |  | 					<a href="https://docs.gotosocial.org/en/latest/user_guide/custom_css" target="_blank" className="moreinfolink" rel="noreferrer">Learn more about custom profile CSS (opens in a new tab)</a> | 
					
						
							|  |  |  | 				</TextArea> | 
					
						
							|  |  |  | 			} | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 			<MutationButton label="Save profile info" result={result} /> | 
					
						
							|  |  |  | 		</form> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 	); | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | } |