termwiz/emoji.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
use crate::emoji_variation::VARIATION_MAP;
#[cfg(feature = "use_serde")]
use serde::{Deserialize, Serialize};
#[derive(Copy, Clone, Debug, Eq, PartialEq)]
#[cfg_attr(feature = "use_serde", derive(Serialize, Deserialize))]
pub enum Presentation {
Text,
Emoji,
}
impl Presentation {
/// Returns the default presentation followed
/// by the explicit presentation if specified
/// by a variation selector
pub fn for_grapheme(s: &str) -> (Self, Option<Self>) {
if let Some((a, b)) = VARIATION_MAP.get(s) {
return (*a, Some(*b));
}
let mut presentation = Self::Text;
for c in s.chars() {
if Self::for_char(c) == Self::Emoji {
presentation = Self::Emoji;
break;
}
// Note that `c` may be some other combining
// sequence that doesn't definitively indicate
// that we're text, so we only positively
// change presentation when we identify an
// emoji char.
}
(presentation, None)
}
pub fn for_char(c: char) -> Self {
if crate::emoji_presentation::EMOJI_PRESENTATION.contains_u32(c as u32) {
Self::Emoji
} else {
Self::Text
}
}
}