| 
									
										
										
										
											2022-11-08 17:51:44 +01: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-11-08 17:51:44 +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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	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/>.
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | import React from "react"; | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | import { useState } from "react"; | 
					
						
							|  |  |  | import prettierBytes from "prettier-bytes"; | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | import type { | 
					
						
							|  |  |  | 	CreateHookNames, | 
					
						
							|  |  |  | 	HookOpts, | 
					
						
							|  |  |  | 	FileFormInputHook, | 
					
						
							|  |  |  | } from "./types"; | 
					
						
							| 
									
										
										
										
											2024-05-07 19:48:12 +02:00
										 |  |  | import { Error as ErrorC } from "../../components/error"; | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | const _default = undefined; | 
					
						
							|  |  |  | export default function useFileInput( | 
					
						
							|  |  |  | 	{ name }: CreateHookNames, | 
					
						
							|  |  |  | 	{ | 
					
						
							|  |  |  | 		withPreview, | 
					
						
							|  |  |  | 		maxSize, | 
					
						
							|  |  |  | 		initialInfo = "no file selected" | 
					
						
							|  |  |  | 	}: HookOpts<File> | 
					
						
							|  |  |  | ): FileFormInputHook { | 
					
						
							|  |  |  | 	const [file, setFile] = useState<File>(); | 
					
						
							|  |  |  | 	const [imageURL, setImageURL] = useState<string>(); | 
					
						
							|  |  |  | 	const [info, setInfo] = useState<React.JSX.Element>(); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-07 19:48:12 +02:00
										 |  |  | 	function reset() { | 
					
						
							|  |  |  | 		if (imageURL) { | 
					
						
							|  |  |  | 			URL.revokeObjectURL(imageURL); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		setImageURL(undefined); | 
					
						
							|  |  |  | 		setFile(undefined); | 
					
						
							|  |  |  | 		setInfo(undefined); | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 	function onChange(e: React.ChangeEvent<HTMLInputElement>) { | 
					
						
							|  |  |  | 		const files = e.target.files; | 
					
						
							|  |  |  | 		if (!files) { | 
					
						
							|  |  |  | 			setInfo(undefined); | 
					
						
							|  |  |  | 			return; | 
					
						
							|  |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 		let file = files[0]; | 
					
						
							|  |  |  | 		setFile(file); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 		if (imageURL) { | 
					
						
							|  |  |  | 			URL.revokeObjectURL(imageURL); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 		 | 
					
						
							|  |  |  | 		if (withPreview) { | 
					
						
							|  |  |  | 			setImageURL(URL.createObjectURL(file)); | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2024-05-07 19:48:12 +02:00
										 |  |  | 		const sizePrettier = prettierBytes(file.size); | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 		if (maxSize && file.size > maxSize) { | 
					
						
							| 
									
										
										
										
											2024-05-07 19:48:12 +02:00
										 |  |  | 			const maxSizePrettier = prettierBytes(maxSize); | 
					
						
							|  |  |  | 			setInfo( | 
					
						
							|  |  |  | 				<ErrorC | 
					
						
							|  |  |  | 					error={new Error(`file size ${sizePrettier} is larger than max size ${maxSizePrettier}`)} | 
					
						
							|  |  |  | 					reset={(reset)} | 
					
						
							|  |  |  | 				/> | 
					
						
							|  |  |  | 			); | 
					
						
							|  |  |  | 		} else { | 
					
						
							|  |  |  | 			setInfo(<>{file.name} ({sizePrettier})</>); | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	const infoComponent = ( | 
					
						
							|  |  |  | 		<span className="form-info"> | 
					
						
							|  |  |  | 			{info | 
					
						
							|  |  |  | 				? info | 
					
						
							|  |  |  | 				: initialInfo | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 		</span> | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Array / Object hybrid, for easier access in different contexts
 | 
					
						
							|  |  |  | 	return Object.assign([ | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 		onChange, | 
					
						
							|  |  |  | 		reset, | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 			[name]: file, | 
					
						
							|  |  |  | 			[`${name}URL`]: imageURL, | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 			[`${name}Info`]: infoComponent, | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 		} | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	], { | 
					
						
							|  |  |  | 		onChange, | 
					
						
							|  |  |  | 		reset, | 
					
						
							|  |  |  | 		name, | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 		Name: "", // Will be set by inputHook function.
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		value: file, | 
					
						
							|  |  |  | 		previewValue: imageURL, | 
					
						
							|  |  |  | 		hasChanged: () => file != undefined, | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 		infoComponent, | 
					
						
							|  |  |  | 		_default, | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	}); | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | } |