/* GoToSocial Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org 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 . */ "use strict"; const React = require("react"); const { Link } = require("wouter"); const syncpipe = require("syncpipe"); const { matchSorter } = require("match-sorter"); const NewEmojiForm = require("./new-emoji"); const { useTextInput } = require("../../../lib/form"); const query = require("../../../lib/query"); const { useEmojiByCategory } = require("../category-select"); const Loading = require("../../../components/loading"); const { Error } = require("../../../components/error"); const { TextInput } = require("../../../components/form/inputs"); module.exports = function EmojiOverview({ baseUrl }) { const { data: emoji = [], isLoading, isError, error } = query.useListEmojiQuery({ filter: "domain:local" }); let content = null; if (isLoading) { content = ; } else if (isError) { content = ; } else { content = ( <> ); } return ( <>

Local Custom Emoji

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 Remote Emoji page.

{content} ); }; function EmojiList({ emoji, baseUrl }) { const filterField = useTextInput("filter"); const filter = filterField.value; const emojiByCategory = useEmojiByCategory(emoji); /* 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]); return (

Overview

{emoji.length > 0 ? {emoji.length} custom emoji {hidden > 0 && `(${hidden} filtered)`} : No custom emoji yet, you can add one below. }
{filteredEmoji.length > 0 ? (
{filteredEmoji.map(([category, entries]) => { return ; })}
) :
No local emoji matched your filter.
}
); } function EmojiCategory({ category, entries, baseUrl }) { return (
{category}
{entries.map((e) => { return ( {e.shortcode} ); })}
); }