| 
									
										
										
										
											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/>.
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | const React = require("react"); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-16 17:05:49 +01:00
										 |  |  | const { | 
					
						
							|  |  |  | 	useFileInput, | 
					
						
							|  |  |  | 	useComboBoxInput | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | } = require("../../../lib/form"); | 
					
						
							|  |  |  | const useShortcode = require("./use-shortcode"); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | const useFormSubmit = require("../../../lib/form/submit").default; | 
					
						
							| 
									
										
										
										
											2022-12-11 16:00:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | const { | 
					
						
							|  |  |  | 	TextInput, FileInput | 
					
						
							|  |  |  | } = require("../../../components/form/inputs"); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | const { CategorySelect } = require('../category-select'); | 
					
						
							|  |  |  | const FakeToot = require("../../../components/fake-toot"); | 
					
						
							|  |  |  | const MutationButton = require("../../../components/form/mutation-button"); | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | const { useAddEmojiMutation } = require("../../../lib/query/admin/custom-emoji"); | 
					
						
							|  |  |  | const { useInstanceV1Query } = require("../../../lib/query"); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | module.exports = function NewEmojiForm() { | 
					
						
							|  |  |  | 	const shortcode = useShortcode(); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 	const { data: instance } = useInstanceV1Query(); | 
					
						
							| 
									
										
										
										
											2023-06-13 12:21:26 +02:00
										 |  |  | 	const emojiMaxSize = React.useMemo(() => { | 
					
						
							|  |  |  | 		return instance?.configuration?.emojis?.emoji_size_limit ?? 50 * 1024; | 
					
						
							|  |  |  | 	}, [instance]); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	const image = useFileInput("image", { | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 		withPreview: true, | 
					
						
							| 
									
										
										
										
											2023-06-13 12:21:26 +02:00
										 |  |  | 		maxSize: emojiMaxSize | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 	}); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	const category = useComboBoxInput("category"); | 
					
						
							| 
									
										
										
										
											2022-12-11 16:00:23 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	const [submitForm, result] = useFormSubmit({ | 
					
						
							|  |  |  | 		shortcode, image, category | 
					
						
							| 
									
										
										
										
											2023-10-17 12:46:06 +02:00
										 |  |  | 	}, useAddEmojiMutation()); | 
					
						
							| 
									
										
										
										
											2022-11-16 17:05:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 	React.useEffect(() => { | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		if (shortcode.value.length == 0) { | 
					
						
							|  |  |  | 			if (image.value != undefined) { | 
					
						
							|  |  |  | 				let [name, _ext] = image.value.name.split("."); | 
					
						
							|  |  |  | 				shortcode.setter(name); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 			} | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 		/* We explicitly don't want to have 'shortcode' as a dependency here | 
					
						
							|  |  |  | 			 because we only want to change the shortcode to the filename if the field is empty | 
					
						
							|  |  |  | 			 at the moment the file is selected, not some time after when the field is emptied | 
					
						
							|  |  |  | 		*/ | 
					
						
							|  |  |  | 		/* eslint-disable-next-line react-hooks/exhaustive-deps */ | 
					
						
							|  |  |  | 	}, [image.value]); | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	let emojiOrShortcode = `:${shortcode.value}:`; | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 	if (image.previewValue != undefined) { | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 		emojiOrShortcode = <img | 
					
						
							|  |  |  | 			className="emoji" | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 			src={image.previewValue} | 
					
						
							| 
									
										
										
										
											2023-01-18 15:16:29 +01:00
										 |  |  | 			title={`:${shortcode.value}:`} | 
					
						
							|  |  |  | 			alt={shortcode.value} | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 		/>; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	return ( | 
					
						
							|  |  |  | 		<div> | 
					
						
							|  |  |  | 			<h2>Add new custom emoji</h2> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			<FakeToot> | 
					
						
							|  |  |  | 				Look at this new custom emoji {emojiOrShortcode} isn't it cool? | 
					
						
							|  |  |  | 			</FakeToot> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 			<form onSubmit={submitForm} className="form-flex"> | 
					
						
							|  |  |  | 				<FileInput | 
					
						
							|  |  |  | 					field={image} | 
					
						
							| 
									
										
										
										
											2024-01-05 13:39:53 +01:00
										 |  |  | 					accept="image/png,image/gif,image/webp" | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				/> | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 				<TextInput | 
					
						
							|  |  |  | 					field={shortcode} | 
					
						
							|  |  |  | 					label="Shortcode, must be unique among the instance's local emoji" | 
					
						
							|  |  |  | 				/> | 
					
						
							| 
									
										
										
										
											2022-11-16 17:05:49 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2022-11-25 15:49:48 +01:00
										 |  |  | 				<CategorySelect | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 					field={category} | 
					
						
							| 
									
										
										
										
											2022-11-16 17:05:49 +01:00
										 |  |  | 				/> | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2023-01-18 14:45:14 +01:00
										 |  |  | 				<MutationButton label="Upload emoji" result={result} /> | 
					
						
							| 
									
										
										
										
											2022-11-08 17:51:44 +01:00
										 |  |  | 			</form> | 
					
						
							|  |  |  | 		</div> | 
					
						
							|  |  |  | 	); | 
					
						
							|  |  |  | }; |