2022-11-08 16:51:44 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-01-05 11:43:00 +00:00
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2022-11-08 16:51:44 +00: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 13:45:14 +00:00
|
|
|
const query = require("../../../lib/query");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2022-11-16 16:05:49 +00:00
|
|
|
const {
|
|
|
|
useFileInput,
|
|
|
|
useComboBoxInput
|
2023-01-18 13:45:14 +00:00
|
|
|
} = require("../../../lib/form");
|
|
|
|
const useShortcode = require("./use-shortcode");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
const useFormSubmit = require("../../../lib/form/submit");
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
const {
|
|
|
|
TextInput, FileInput
|
|
|
|
} = require("../../../components/form/inputs");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
const { CategorySelect } = require('../category-select');
|
|
|
|
const FakeToot = require("../../../components/fake-toot");
|
|
|
|
const MutationButton = require("../../../components/form/mutation-button");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
module.exports = function NewEmojiForm() {
|
|
|
|
const shortcode = useShortcode();
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
const image = useFileInput("image", {
|
2022-11-08 16:51:44 +00:00
|
|
|
withPreview: true,
|
2023-01-18 13:45:14 +00:00
|
|
|
maxSize: 50 * 1024 // TODO: get from instance api?
|
2022-11-08 16:51:44 +00:00
|
|
|
});
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
const category = useComboBoxInput("category");
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
const [submitForm, result] = useFormSubmit({
|
|
|
|
shortcode, image, category
|
|
|
|
}, query.useAddEmojiMutation());
|
2022-11-16 16:05:49 +00:00
|
|
|
|
2022-11-08 16:51:44 +00:00
|
|
|
React.useEffect(() => {
|
2023-01-18 13:45:14 +00:00
|
|
|
if (shortcode.value.length == 0) {
|
|
|
|
if (image.value != undefined) {
|
|
|
|
let [name, _ext] = image.value.name.split(".");
|
|
|
|
shortcode.setter(name);
|
2022-11-08 16:51:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-18 13:45:14 +00: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 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
let emojiOrShortcode = `:${shortcode.value}:`;
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
if (image.previewValue != undefined) {
|
2022-11-08 16:51:44 +00:00
|
|
|
emojiOrShortcode = <img
|
|
|
|
className="emoji"
|
2023-01-18 13:45:14 +00:00
|
|
|
src={image.previewValue}
|
2022-11-08 16:51:44 +00:00
|
|
|
title={`:${shortcode}:`}
|
|
|
|
alt={shortcode}
|
|
|
|
/>;
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h2>Add new custom emoji</h2>
|
|
|
|
|
|
|
|
<FakeToot>
|
|
|
|
Look at this new custom emoji {emojiOrShortcode} isn't it cool?
|
|
|
|
</FakeToot>
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
<form onSubmit={submitForm} className="form-flex">
|
|
|
|
<FileInput
|
|
|
|
field={image}
|
|
|
|
accept="image/png,image/gif"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<TextInput
|
|
|
|
field={shortcode}
|
|
|
|
label="Shortcode, must be unique among the instance's local emoji"
|
|
|
|
/>
|
2022-11-16 16:05:49 +00:00
|
|
|
|
2022-11-25 14:49:48 +00:00
|
|
|
<CategorySelect
|
2023-01-18 13:45:14 +00:00
|
|
|
field={category}
|
2022-11-16 16:05:49 +00:00
|
|
|
/>
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
<MutationButton label="Upload emoji" result={result} />
|
2022-11-08 16:51:44 +00:00
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
};
|