2022-11-08 16:51:44 +00:00
|
|
|
/*
|
2023-01-18 13:45:14 +00:00
|
|
|
GoToSocial
|
|
|
|
Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +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.
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
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.
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
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/>.
|
2022-11-08 16:51:44 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
const React = require("react");
|
2023-01-18 13:45:14 +00:00
|
|
|
const { Link } = require("wouter");
|
2023-01-27 08:09:26 +00:00
|
|
|
const syncpipe = require("syncpipe");
|
|
|
|
const { matchSorter } = require("match-sorter");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
|
|
|
const NewEmojiForm = require("./new-emoji");
|
2023-01-27 08:09:26 +00:00
|
|
|
const { useTextInput } = require("../../../lib/form");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2022-12-11 15:00:23 +00:00
|
|
|
const query = require("../../../lib/query");
|
|
|
|
const { useEmojiByCategory } = require("../category-select");
|
2023-01-27 08:09:26 +00:00
|
|
|
|
2022-12-11 15:00:23 +00:00
|
|
|
const Loading = require("../../../components/loading");
|
2023-01-25 08:47:55 +00:00
|
|
|
const { Error } = require("../../../components/error");
|
2023-01-27 08:09:26 +00:00
|
|
|
const { TextInput } = require("../../../components/form/inputs");
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
module.exports = function EmojiOverview({ baseUrl }) {
|
2022-11-08 16:51:44 +00:00
|
|
|
const {
|
2022-11-16 16:05:49 +00:00
|
|
|
data: emoji = [],
|
2022-11-08 16:51:44 +00:00
|
|
|
isLoading,
|
2023-01-25 08:47:55 +00:00
|
|
|
isError,
|
2022-11-08 16:51:44 +00:00
|
|
|
error
|
2023-01-18 15:41:00 +00:00
|
|
|
} = query.useListEmojiQuery({ filter: "domain:local" });
|
2022-11-08 16:51:44 +00:00
|
|
|
|
2023-01-25 08:47:55 +00:00
|
|
|
let content = null;
|
|
|
|
|
|
|
|
if (isLoading) {
|
|
|
|
content = <Loading />;
|
|
|
|
} else if (isError) {
|
|
|
|
content = <Error error={error} />;
|
|
|
|
} else {
|
|
|
|
content = (
|
|
|
|
<>
|
|
|
|
<EmojiList emoji={emoji} baseUrl={baseUrl} />
|
|
|
|
<NewEmojiForm emoji={emoji} />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2022-11-08 16:51:44 +00:00
|
|
|
return (
|
|
|
|
<>
|
2023-01-27 08:09:26 +00:00
|
|
|
<h1>Local Custom Emoji</h1>
|
|
|
|
<p>
|
|
|
|
To use custom emoji in your toots they have to be 'local' to the instance.
|
|
|
|
You can either upload them here directly, or copy from those already
|
|
|
|
present on other (known) instances through the <Link to={`../remote`}>Remote Emoji</Link> page.
|
|
|
|
</p>
|
2023-01-25 08:47:55 +00:00
|
|
|
{content}
|
2022-11-08 16:51:44 +00:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
function EmojiList({ emoji, baseUrl }) {
|
2023-01-27 08:09:26 +00:00
|
|
|
const filterField = useTextInput("filter");
|
|
|
|
const filter = filterField.value;
|
|
|
|
|
2022-11-25 14:49:48 +00:00
|
|
|
const emojiByCategory = useEmojiByCategory(emoji);
|
|
|
|
|
2023-01-27 08:09:26 +00:00
|
|
|
/* Filter emoji based on shortcode match with user input, hiding empty categories */
|
|
|
|
const { filteredEmoji, hidden } = React.useMemo(() => {
|
|
|
|
let hidden = emoji.length;
|
|
|
|
const filteredEmoji = syncpipe(emojiByCategory, [
|
|
|
|
(_) => Object.entries(emojiByCategory),
|
|
|
|
(_) => _.map(([category, entries]) => {
|
|
|
|
let filteredEntries = matchSorter(entries, filter, { keys: ["shortcode"] });
|
|
|
|
if (filteredEntries.length == 0) {
|
|
|
|
return null;
|
|
|
|
} else {
|
|
|
|
hidden -= filteredEntries.length;
|
|
|
|
return [category, filteredEntries];
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
(_) => _.filter((value) => value !== null)
|
|
|
|
]);
|
|
|
|
|
|
|
|
return { filteredEmoji, hidden };
|
|
|
|
}, [filter, emojiByCategory, emoji.length]);
|
|
|
|
|
2022-11-08 16:51:44 +00:00
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h2>Overview</h2>
|
2023-01-27 08:09:26 +00:00
|
|
|
{emoji.length > 0
|
|
|
|
? <span>{emoji.length} custom emoji {hidden > 0 && `(${hidden} filtered)`}</span>
|
|
|
|
: <span>No custom emoji yet, you can add one below.</span>
|
|
|
|
}
|
2022-11-08 16:51:44 +00:00
|
|
|
<div className="list emoji-list">
|
2023-01-27 08:09:26 +00:00
|
|
|
<div className="header">
|
|
|
|
<TextInput
|
|
|
|
field={filterField}
|
|
|
|
name="emoji-shortcode"
|
|
|
|
placeholder="Search"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<div className="entries scrolling">
|
|
|
|
{filteredEmoji.length > 0
|
|
|
|
? (
|
|
|
|
<div className="entries scrolling">
|
|
|
|
{filteredEmoji.map(([category, entries]) => {
|
|
|
|
return <EmojiCategory key={category} category={category} entries={entries} baseUrl={baseUrl} />;
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
: <div className="entry">No local emoji matched your filter.</div>
|
|
|
|
}
|
|
|
|
</div>
|
2022-11-08 16:51:44 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2023-01-18 13:45:14 +00:00
|
|
|
function EmojiCategory({ category, entries, baseUrl }) {
|
2022-11-08 16:51:44 +00:00
|
|
|
return (
|
|
|
|
<div className="entry">
|
|
|
|
<b>{category}</b>
|
|
|
|
<div className="emoji-group">
|
|
|
|
{entries.map((e) => {
|
|
|
|
return (
|
2023-01-18 13:45:14 +00:00
|
|
|
<Link key={e.id} to={`${baseUrl}/${e.id}`}>
|
2022-11-08 16:51:44 +00:00
|
|
|
<a>
|
2023-01-18 13:45:14 +00:00
|
|
|
<img src={e.url} alt={e.shortcode} title={`:${e.shortcode}:`} />
|
2022-11-08 16:51:44 +00:00
|
|
|
</a>
|
|
|
|
</Link>
|
|
|
|
);
|
|
|
|
})}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|