| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | /* | 
					
						
							|  |  |  | 	GoToSocial | 
					
						
							| 
									
										
										
										
											2023-03-12 18:49:06 +01:00
										 |  |  | 	Copyright (C) GoToSocial Authors admin@gotosocial.org | 
					
						
							|  |  |  | 	SPDX-License-Identifier: AGPL-3.0-or-later | 
					
						
							| 
									
										
										
										
											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/>.
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | import React from "react"; | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | import { | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	useTextInput, | 
					
						
							|  |  |  | 	useFileInput, | 
					
						
							| 
									
										
										
										
											2023-06-13 12:21:26 +02:00
										 |  |  | 	useBoolInput, | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 	useFieldArrayInput, | 
					
						
							|  |  |  | 	useRadioInput | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | } from "../lib/form"; | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | import useFormSubmit from "../lib/form/submit"; | 
					
						
							|  |  |  | import { useWithFormContext, FormContext } from "../lib/form/context"; | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | import { | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 	TextInput, | 
					
						
							|  |  |  | 	TextArea, | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	FileInput, | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 	Checkbox, | 
					
						
							|  |  |  | 	RadioGroup | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | } from "../components/form/inputs"; | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | import FormWithData from "../lib/form/form-with-data"; | 
					
						
							|  |  |  | import FakeProfile from "../components/fake-profile"; | 
					
						
							|  |  |  | import MutationButton from "../components/form/mutation-button"; | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | import { useAccountThemesQuery, useInstanceV1Query } from "../lib/query"; | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | import { useUpdateCredentialsMutation } from "../lib/query/user"; | 
					
						
							|  |  |  | import { useVerifyCredentialsQuery } from "../lib/query/oauth"; | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | export default function UserProfile() { | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	return ( | 
					
						
							|  |  |  | 		<FormWithData | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 			dataQuery={useVerifyCredentialsQuery} | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 			DataForm={UserProfileForm} | 
					
						
							|  |  |  | 		/> | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											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 | 
					
						
							| 
									
										
										
										
											2024-04-02 11:42:24 +02:00
										 |  |  | 		- bool hide_collections | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		- string custom_css (if enabled) | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 		- string theme | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	*/ | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 	const { data: instance } = useInstanceV1Query(); | 
					
						
							| 
									
										
										
										
											2023-06-13 12:21:26 +02:00
										 |  |  | 	const instanceConfig = React.useMemo(() => { | 
					
						
							|  |  |  | 		return { | 
					
						
							|  |  |  | 			allowCustomCSS: instance?.configuration?.accounts?.allow_custom_css === true, | 
					
						
							|  |  |  | 			maxPinnedFields: instance?.configuration?.accounts?.max_profile_fields ?? 6 | 
					
						
							|  |  |  | 		}; | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	}, [instance]); | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 	 | 
					
						
							|  |  |  | 	// Parse out available theme options into nice format.
 | 
					
						
							|  |  |  | 	const { data: themes } = useAccountThemesQuery(); | 
					
						
							|  |  |  | 	let themeOptions = { "": "Default" }; | 
					
						
							|  |  |  | 	themes?.forEach((theme) => { | 
					
						
							|  |  |  | 		let key = theme.file_name; | 
					
						
							|  |  |  | 		let value = theme.title; | 
					
						
							|  |  |  | 		if (theme.description) { | 
					
						
							|  |  |  | 			value += " - " + theme.description; | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		themeOptions[key] = value; | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											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 }), | 
					
						
							|  |  |  | 		bot: useBoolInput("bot", { source: profile }), | 
					
						
							|  |  |  | 		locked: useBoolInput("locked", { source: profile }), | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 		discoverable: useBoolInput("discoverable", { source: profile}), | 
					
						
							| 
									
										
										
										
											2023-02-06 09:19:56 +01:00
										 |  |  | 		enableRSS: useBoolInput("enable_rss", { source: profile }), | 
					
						
							| 
									
										
										
										
											2024-04-02 11:42:24 +02:00
										 |  |  | 		hideCollections: useBoolInput("hide_collections", { source: profile }), | 
					
						
							| 
									
										
										
										
											2023-06-13 12:21:26 +02:00
										 |  |  | 		fields: useFieldArrayInput("fields_attributes", { | 
					
						
							|  |  |  | 			defaultValue: profile?.source?.fields, | 
					
						
							|  |  |  | 			length: instanceConfig.maxPinnedFields | 
					
						
							|  |  |  | 		}), | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 		customCSS: useTextInput("custom_css", { source: profile, nosubmit: !instanceConfig.allowCustomCSS }), | 
					
						
							|  |  |  | 		theme: useRadioInput("theme", { | 
					
						
							|  |  |  | 			source: profile, | 
					
						
							|  |  |  | 			options: themeOptions, | 
					
						
							|  |  |  | 		}), | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 	const [submitForm, result] = useFormSubmit(form, useUpdateCredentialsMutation(), { | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | 		changedOnly: true, | 
					
						
							| 
									
										
										
										
											2023-06-13 12:21:26 +02:00
										 |  |  | 		onFinish: () => { | 
					
						
							|  |  |  | 			form.avatar.reset(); | 
					
						
							|  |  |  | 			form.header.reset(); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 	}); | 
					
						
							| 
									
										
										
										
											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} | 
					
						
							| 
									
										
										
										
											2023-05-13 12:17:22 +02:00
										 |  |  | 					role={profile.role} | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				/> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 				<div className="files"> | 
					
						
							|  |  |  | 					<div> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 						<FileInput | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 							label="Header" | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 							field={form.header} | 
					
						
							|  |  |  | 							accept="image/*" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 						/> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<div> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 						<FileInput | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 							label="Avatar" | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 							field={form.avatar} | 
					
						
							|  |  |  | 							accept="image/*" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 						/> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 				</div> | 
					
						
							| 
									
										
										
										
											2024-03-25 18:32:24 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 				<div className="theme"> | 
					
						
							|  |  |  | 					<div> | 
					
						
							|  |  |  | 						<b id="theme-label">Theme</b> | 
					
						
							|  |  |  | 						<br/> | 
					
						
							|  |  |  | 						<span>After choosing theme and saving, <a href={profile.url} target="_blank">open your profile</a> and refresh to see changes.</span> | 
					
						
							|  |  |  | 					</div> | 
					
						
							|  |  |  | 					<RadioGroup | 
					
						
							|  |  |  | 						aria-labelledby="theme-label" | 
					
						
							|  |  |  | 						field={form.theme} | 
					
						
							|  |  |  | 					/> | 
					
						
							|  |  |  | 				</div> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			<div className="form-section-docs"> | 
					
						
							|  |  |  | 				<h3>Basic Information</h3> | 
					
						
							|  |  |  | 				<a | 
					
						
							|  |  |  | 					href="https://docs.gotosocial.org/en/latest/user_guide/settings/#basic-information" | 
					
						
							|  |  |  | 					target="_blank" | 
					
						
							|  |  |  | 					className="docslink" | 
					
						
							|  |  |  | 					rel="noreferrer" | 
					
						
							|  |  |  | 				> | 
					
						
							|  |  |  | 					Learn more about these settings (opens in a new tab) | 
					
						
							|  |  |  | 				</a> | 
					
						
							|  |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 			<TextInput | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				field={form.displayName} | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 				label="Display name" | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				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
										 |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 			<b>Profile fields</b> | 
					
						
							|  |  |  | 			<ProfileFields | 
					
						
							|  |  |  | 				field={form.fields} | 
					
						
							|  |  |  | 			/> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<div className="form-section-docs"> | 
					
						
							|  |  |  | 				<h3>Visibility and privacy</h3> | 
					
						
							|  |  |  | 				<a | 
					
						
							|  |  |  | 					href="https://docs.gotosocial.org/en/latest/user_guide/settings/#visibility-and-privacy" | 
					
						
							|  |  |  | 					target="_blank" | 
					
						
							|  |  |  | 					className="docslink" | 
					
						
							|  |  |  | 					rel="noreferrer" | 
					
						
							|  |  |  | 				> | 
					
						
							|  |  |  | 					Learn more about these settings (opens in a new tab) | 
					
						
							|  |  |  | 				</a> | 
					
						
							|  |  |  | 			</div> | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 			<Checkbox | 
					
						
							|  |  |  | 				field={form.discoverable} | 
					
						
							|  |  |  | 				label="Mark account as discoverable by search engines and directories" | 
					
						
							|  |  |  | 			/> | 
					
						
							| 
									
										
										
										
											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
										 |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2024-04-02 11:42:24 +02:00
										 |  |  | 			<Checkbox | 
					
						
							|  |  |  | 				field={form.hideCollections} | 
					
						
							|  |  |  | 				label="Hide who you follow / are followed by" | 
					
						
							|  |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 			<div className="form-section-docs"> | 
					
						
							|  |  |  | 				<h3>Advanced</h3> | 
					
						
							|  |  |  | 				<a | 
					
						
							|  |  |  | 					href="https://docs.gotosocial.org/en/latest/user_guide/settings/#advanced" | 
					
						
							|  |  |  | 					target="_blank" | 
					
						
							|  |  |  | 					className="docslink" | 
					
						
							|  |  |  | 					rel="noreferrer" | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 				> | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 					Learn more about these settings (opens in a new tab) | 
					
						
							|  |  |  | 				</a> | 
					
						
							|  |  |  | 			</div> | 
					
						
							|  |  |  | 			<TextArea | 
					
						
							|  |  |  | 				field={form.customCSS} | 
					
						
							| 
									
										
										
										
											2023-10-24 10:28:59 +02:00
										 |  |  | 				label={`Custom CSS` + (!instanceConfig.allowCustomCSS ? ` (not enabled on this instance)` : ``)} | 
					
						
							| 
									
										
										
										
											2023-09-29 13:01:36 +02:00
										 |  |  | 				className="monospace" | 
					
						
							|  |  |  | 				rows={8} | 
					
						
							|  |  |  | 				disabled={!instanceConfig.allowCustomCSS} | 
					
						
							|  |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2024-01-16 18:28:56 +01:00
										 |  |  | 			<MutationButton | 
					
						
							|  |  |  | 				disabled={false} | 
					
						
							|  |  |  | 				label="Save profile info" | 
					
						
							|  |  |  | 				result={result} | 
					
						
							|  |  |  | 			/> | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		</form> | 
					
						
							| 
									
										
										
										
											2022-09-29 12:02:41 +02:00
										 |  |  | 	); | 
					
						
							| 
									
										
										
										
											2023-06-13 12:21:26 +02:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function ProfileFields({ field: formField }) { | 
					
						
							|  |  |  | 	return ( | 
					
						
							|  |  |  | 		<div className="fields"> | 
					
						
							|  |  |  | 			<FormContext.Provider value={formField.ctx}> | 
					
						
							|  |  |  | 				{formField.value.map((data, i) => ( | 
					
						
							|  |  |  | 					<Field | 
					
						
							|  |  |  | 						key={i} | 
					
						
							|  |  |  | 						index={i} | 
					
						
							|  |  |  | 						data={data} | 
					
						
							|  |  |  | 					/> | 
					
						
							|  |  |  | 				))} | 
					
						
							|  |  |  | 			</FormContext.Provider> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | function Field({ index, data }) { | 
					
						
							|  |  |  | 	const form = useWithFormContext(index, { | 
					
						
							|  |  |  | 		name: useTextInput("name", { defaultValue: data.name }), | 
					
						
							|  |  |  | 		value: useTextInput("value", { defaultValue: data.value }) | 
					
						
							|  |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ( | 
					
						
							|  |  |  | 		<div className="entry"> | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							|  |  |  | 				field={form.name} | 
					
						
							|  |  |  | 				placeholder="Name" | 
					
						
							|  |  |  | 			/> | 
					
						
							|  |  |  | 			<TextInput | 
					
						
							|  |  |  | 				field={form.value} | 
					
						
							|  |  |  | 				placeholder="Value" | 
					
						
							|  |  |  | 			/> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	); | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | } |