2022-12-11 15:00:23 +00:00
|
|
|
/*
|
|
|
|
GoToSocial
|
2023-03-12 17:49:06 +00:00
|
|
|
Copyright (C) GoToSocial Authors admin@gotosocial.org
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-or-later
|
2022-12-11 15:00:23 +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/>.
|
|
|
|
*/
|
|
|
|
|
2024-04-13 12:25:10 +01:00
|
|
|
import React, { useCallback, useEffect } from "react";
|
2023-01-18 13:45:14 +00:00
|
|
|
|
2024-04-24 11:12:47 +01:00
|
|
|
import { useTextInput, useComboBoxInput, useCheckListInput } from "../../../../lib/form";
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2024-04-24 11:12:47 +01:00
|
|
|
import useFormSubmit from "../../../../lib/form/submit";
|
2023-01-18 13:45:14 +00:00
|
|
|
|
2024-04-24 11:12:47 +01:00
|
|
|
import CheckList from "../../../../components/check-list";
|
2024-04-13 12:25:10 +01:00
|
|
|
import { CategorySelect } from '../category-select';
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2024-04-24 11:12:47 +01:00
|
|
|
import { TextInput } from "../../../../components/form/inputs";
|
|
|
|
import MutationButton from "../../../../components/form/mutation-button";
|
|
|
|
import { Error } from "../../../../components/error";
|
|
|
|
import { useSearchItemForEmojiMutation, usePatchRemoteEmojisMutation } from "../../../../lib/query/admin/custom-emoji";
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2024-04-24 11:12:47 +01:00
|
|
|
export default function StealThisLook({ emojiCodes }) {
|
2023-10-17 11:46:06 +01:00
|
|
|
const [searchStatus, result] = useSearchItemForEmojiMutation();
|
2024-04-13 12:25:10 +01:00
|
|
|
const urlField = useTextInput("url");
|
2022-12-11 15:00:23 +00:00
|
|
|
|
|
|
|
function submitSearch(e) {
|
|
|
|
e.preventDefault();
|
2024-04-13 12:25:10 +01:00
|
|
|
if (urlField.value !== undefined && urlField.value.trim().length != 0) {
|
|
|
|
searchStatus(urlField.value);
|
2023-01-18 13:45:14 +00:00
|
|
|
}
|
2022-12-11 15:00:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="parse-emoji">
|
|
|
|
<h2>Steal this look</h2>
|
|
|
|
<form onSubmit={submitSearch}>
|
|
|
|
<div className="form-field text">
|
|
|
|
<label htmlFor="url">
|
2024-04-24 11:12:47 +01:00
|
|
|
Link to a status:
|
2022-12-11 15:00:23 +00:00
|
|
|
</label>
|
|
|
|
<div className="row">
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
id="url"
|
|
|
|
name="url"
|
2024-04-13 12:25:10 +01:00
|
|
|
onChange={urlField.onChange}
|
|
|
|
value={urlField.value}
|
2022-12-11 15:00:23 +00:00
|
|
|
/>
|
2023-01-18 13:45:14 +00:00
|
|
|
<button disabled={result.isLoading}>
|
2022-12-11 15:00:23 +00:00
|
|
|
<i className={[
|
2023-01-18 13:45:14 +00:00
|
|
|
"fa fa-fw",
|
|
|
|
(result.isLoading
|
2022-12-11 15:00:23 +00:00
|
|
|
? "fa-refresh fa-spin"
|
|
|
|
: "fa-search")
|
2023-01-18 13:45:14 +00:00
|
|
|
].join(" ")} aria-hidden="true" title="Search" />
|
2022-12-11 15:00:23 +00:00
|
|
|
<span className="sr-only">Search</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
2023-01-18 13:45:14 +00:00
|
|
|
<SearchResult result={result} localEmojiCodes={emojiCodes} />
|
2022-12-11 15:00:23 +00:00
|
|
|
</div>
|
|
|
|
);
|
2024-04-13 12:25:10 +01:00
|
|
|
}
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
function SearchResult({ result, localEmojiCodes }) {
|
|
|
|
const { error, data, isSuccess, isError } = result;
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
if (!(isSuccess || isError)) {
|
|
|
|
return null;
|
|
|
|
}
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
if (error == "NONE_FOUND") {
|
|
|
|
return "No results found";
|
|
|
|
} else if (error == "LOCAL_INSTANCE") {
|
2024-04-24 11:12:47 +01:00
|
|
|
return <b>This is a local user/status, all referenced emoji are already on your instance</b>;
|
2023-01-18 13:45:14 +00:00
|
|
|
} else if (error != undefined) {
|
|
|
|
return <Error error={result.error} />;
|
|
|
|
}
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
if (data.list.length == 0) {
|
2024-04-24 11:12:47 +01:00
|
|
|
return <b>This {data.type == "statuses" ? "status" : "account"} doesn't use any custom emoji</b>;
|
2022-12-11 15:00:23 +00:00
|
|
|
}
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
return (
|
|
|
|
<CopyEmojiForm
|
|
|
|
localEmojiCodes={localEmojiCodes}
|
|
|
|
type={data.type}
|
|
|
|
emojiList={data.list}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
function CopyEmojiForm({ localEmojiCodes, type, emojiList }) {
|
|
|
|
const form = {
|
|
|
|
selectedEmoji: useCheckListInput("selectedEmoji", {
|
|
|
|
entries: emojiList,
|
2023-02-07 17:34:54 +00:00
|
|
|
uniqueKey: "id"
|
2023-01-18 13:45:14 +00:00
|
|
|
}),
|
|
|
|
category: useComboBoxInput("category")
|
|
|
|
};
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-02-07 17:34:54 +00:00
|
|
|
const [formSubmit, result] = useFormSubmit(
|
|
|
|
form,
|
2023-10-17 11:46:06 +01:00
|
|
|
usePatchRemoteEmojisMutation(),
|
2023-02-07 17:34:54 +00:00
|
|
|
{
|
|
|
|
changedOnly: false,
|
|
|
|
onFinish: ({ data }) => {
|
2023-10-21 16:23:05 +01:00
|
|
|
if (data) {
|
|
|
|
// uncheck all successfully processed emoji
|
|
|
|
const processed = data.map((emoji) => {
|
|
|
|
return [emoji.id, { checked: false }];
|
|
|
|
});
|
|
|
|
form.selectedEmoji.updateMultiple(processed);
|
2023-02-07 17:34:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
const buttonsInactive = form.selectedEmoji.someSelected
|
2024-04-13 12:25:10 +01:00
|
|
|
? {
|
|
|
|
disabled: false,
|
|
|
|
title: ""
|
|
|
|
}
|
2023-01-18 13:45:14 +00:00
|
|
|
: {
|
|
|
|
disabled: true,
|
|
|
|
title: "No emoji selected, cannot perform any actions"
|
|
|
|
};
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2024-04-13 12:25:10 +01:00
|
|
|
const checkListExtraProps = useCallback(() => ({ localEmojiCodes }), [localEmojiCodes]);
|
2023-02-03 11:07:40 +00:00
|
|
|
|
2022-12-11 15:00:23 +00:00
|
|
|
return (
|
|
|
|
<div className="parsed">
|
2024-04-24 11:12:47 +01:00
|
|
|
<span>This {type == "statuses" ? "status" : "account"} uses the following custom emoji, select the ones you want to copy/disable:</span>
|
2023-01-18 13:45:14 +00:00
|
|
|
<form onSubmit={formSubmit}>
|
|
|
|
<CheckList
|
|
|
|
field={form.selectedEmoji}
|
2024-04-13 12:25:10 +01:00
|
|
|
header={<></>}
|
2023-02-03 11:07:40 +00:00
|
|
|
EntryComponent={EmojiEntry}
|
|
|
|
getExtraProps={checkListExtraProps}
|
2023-01-18 13:45:14 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<CategorySelect
|
|
|
|
field={form.category}
|
2024-04-13 12:25:10 +01:00
|
|
|
children={[]}
|
2023-01-18 13:45:14 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
<div className="action-buttons row">
|
2024-04-13 12:25:10 +01:00
|
|
|
<MutationButton
|
|
|
|
name="copy"
|
|
|
|
label="Copy to local emoji"
|
|
|
|
result={result}
|
|
|
|
showError={false}
|
|
|
|
{...buttonsInactive}
|
|
|
|
/>
|
|
|
|
<MutationButton
|
|
|
|
name="disable"
|
|
|
|
label="Disable"
|
|
|
|
result={result}
|
|
|
|
className="button danger"
|
|
|
|
showError={false}
|
|
|
|
{...buttonsInactive}
|
|
|
|
/>
|
2023-01-18 13:45:14 +00:00
|
|
|
</div>
|
|
|
|
{result.error && (
|
|
|
|
Array.isArray(result.error)
|
|
|
|
? <ErrorList errors={result.error} />
|
|
|
|
: <Error error={result.error} />
|
|
|
|
)}
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
2022-12-11 15:00:23 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
function ErrorList({ errors }) {
|
|
|
|
return (
|
|
|
|
<div className="error">
|
|
|
|
One or multiple emoji failed to process:
|
|
|
|
{errors.map(([shortcode, err]) => (
|
|
|
|
<div key={shortcode}>
|
|
|
|
<b>{shortcode}:</b> {err}
|
|
|
|
</div>
|
|
|
|
))}
|
2022-12-11 15:00:23 +00:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-02-03 11:07:40 +00:00
|
|
|
function EmojiEntry({ entry: emoji, onChange, extraProps: { localEmojiCodes } }) {
|
2023-01-18 13:45:14 +00:00
|
|
|
const shortcodeField = useTextInput("shortcode", {
|
2022-12-11 15:00:23 +00:00
|
|
|
defaultValue: emoji.shortcode,
|
|
|
|
validator: function validateShortcode(code) {
|
2023-01-18 13:45:14 +00:00
|
|
|
return (emoji.checked && localEmojiCodes.has(code))
|
2022-12-11 15:00:23 +00:00
|
|
|
? "Shortcode already in use"
|
|
|
|
: "";
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2024-04-13 12:25:10 +01:00
|
|
|
useEffect(() => {
|
2023-02-03 11:07:40 +00:00
|
|
|
if (emoji.valid != shortcodeField.valid) {
|
|
|
|
onChange({ valid: shortcodeField.valid });
|
|
|
|
}
|
|
|
|
}, [onChange, emoji.valid, shortcodeField.valid]);
|
|
|
|
|
2024-04-13 12:25:10 +01:00
|
|
|
useEffect(() => {
|
2023-02-03 11:07:40 +00:00
|
|
|
shortcodeField.validate();
|
|
|
|
// only need this update if it's the emoji.checked that updated, not shortcodeField
|
|
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
|
|
}, [emoji.checked]);
|
2022-12-11 15:00:23 +00:00
|
|
|
|
|
|
|
return (
|
2023-01-18 13:45:14 +00:00
|
|
|
<>
|
2022-12-11 15:00:23 +00:00
|
|
|
<img className="emoji" src={emoji.url} title={emoji.shortcode} />
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
<TextInput
|
|
|
|
field={shortcodeField}
|
2022-12-11 15:00:23 +00:00
|
|
|
onChange={(e) => {
|
2023-01-18 13:45:14 +00:00
|
|
|
shortcodeField.onChange(e);
|
|
|
|
onChange({ shortcode: e.target.value, checked: true });
|
2022-12-11 15:00:23 +00:00
|
|
|
}}
|
|
|
|
/>
|
2023-01-18 13:45:14 +00:00
|
|
|
</>
|
2022-12-11 15:00:23 +00:00
|
|
|
);
|
2024-04-24 11:12:47 +01:00
|
|
|
}
|