2019-10-14 00:32:11 +03:00
|
|
|
/*
|
2019-10-20 12:13:42 +03:00
|
|
|
Copyright 2019 Tulir Asokan <tulir@maunium.net>
|
2020-09-28 17:47:03 +03:00
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2019-10-14 00:32:11 +03:00
|
|
|
|
|
|
|
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';
|
|
|
|
|
2020-09-28 17:47:03 +03:00
|
|
|
import {IEmoji} from "../../../emoji";
|
2021-03-09 06:04:46 +03:00
|
|
|
import {replaceableComponent} from "../../../utils/replaceableComponent";
|
2019-10-14 00:32:11 +03:00
|
|
|
|
2020-09-28 17:47:03 +03:00
|
|
|
interface IProps {
|
|
|
|
emoji: IEmoji;
|
|
|
|
}
|
|
|
|
|
2021-03-09 06:04:46 +03:00
|
|
|
@replaceableComponent("views.emojipicker.Preview")
|
2020-09-28 17:47:03 +03:00
|
|
|
class Preview extends React.PureComponent<IProps> {
|
2019-10-14 00:32:11 +03:00
|
|
|
render() {
|
2019-10-15 19:07:04 +03:00
|
|
|
const {
|
|
|
|
unicode = "",
|
|
|
|
annotation = "",
|
2019-10-22 15:49:02 +03:00
|
|
|
shortcodes: [shortcode = ""],
|
2019-10-15 19:07:04 +03:00
|
|
|
} = this.props.emoji || {};
|
2020-09-28 17:47:03 +03:00
|
|
|
|
2019-10-14 00:32:11 +03:00
|
|
|
return (
|
|
|
|
<div className="mx_EmojiPicker_footer mx_EmojiPicker_preview">
|
|
|
|
<div className="mx_EmojiPicker_preview_emoji">
|
2019-10-15 19:07:04 +03:00
|
|
|
{unicode}
|
2019-10-14 00:32:11 +03:00
|
|
|
</div>
|
|
|
|
<div className="mx_EmojiPicker_preview_text">
|
|
|
|
<div className="mx_EmojiPicker_name mx_EmojiPicker_preview_name">
|
2019-10-15 19:07:04 +03:00
|
|
|
{annotation}
|
2019-10-14 00:32:11 +03:00
|
|
|
</div>
|
|
|
|
<div className="mx_EmojiPicker_shortcode">
|
2019-10-15 19:07:04 +03:00
|
|
|
{shortcode}
|
2019-10-14 00:32:11 +03:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-10-22 15:49:02 +03:00
|
|
|
);
|
2019-10-14 00:32:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Preview;
|