/* Copyright 2019 Tulir Asokan Copyright 2020 The Matrix.org Foundation C.I.C. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import React from "react"; import { getEmojiFromUnicode, Emoji as IEmoji } from "@matrix-org/emojibase-bindings"; import { _t } from "../../../languageHandler"; import Emoji from "./Emoji"; import { ButtonEvent } from "../elements/AccessibleButton"; import Toolbar from "../../../accessibility/Toolbar"; // We use the variation-selector Heart in Quick Reactions for some reason const QUICK_REACTIONS = ["👍", "👎", "😄", "🎉", "😕", "❤️", "🚀", "👀"].map((emoji) => { const data = getEmojiFromUnicode(emoji); if (!data) { throw new Error(`Emoji ${emoji} doesn't exist in emojibase`); } return data; }); interface IProps { selectedEmojis?: Set; onClick(ev: ButtonEvent, emoji: IEmoji): void; } interface IState { hover?: IEmoji; } class QuickReactions extends React.Component { public constructor(props: IProps) { super(props); this.state = {}; } private onMouseEnter = (emoji: IEmoji): void => { this.setState({ hover: emoji, }); }; private onMouseLeave = (): void => { this.setState({ hover: undefined, }); }; public render(): React.ReactNode { return (

{!this.state.hover ? ( _t("emoji|quick_reactions") ) : ( {this.state.hover.label} {this.state.hover.shortcodes[0]} )}

{QUICK_REACTIONS.map((emoji) => ( ))}
); } } export default QuickReactions;