encre_css/plugins/typography/text_overflow/
mod.rs

1#![doc = include_str!("README.md")]
2#![doc(alias = "typography")]
3use crate::prelude::build_plugin::*;
4
5#[derive(Debug)]
6pub(crate) struct PluginDefinition;
7
8impl Plugin for PluginDefinition {
9    fn can_handle(&self, context: ContextCanHandle) -> bool {
10        matches!(
11            context.modifier,
12            Modifier::Builtin {
13                value: "truncate" | "text-ellipsis" | "text-clip",
14                ..
15            }
16        )
17    }
18
19    fn handle(&self, context: &mut ContextHandle) {
20        if let Modifier::Builtin { value, .. } = context.modifier {
21            match *value {
22                "truncate" => {
23                    context.buffer.lines([
24                        "overflow: hidden;",
25                        "text-overflow: ellipsis;",
26                        "white-space: nowrap;",
27                    ]);
28                }
29                "text-ellipsis" => context.buffer.line("text-overflow: ellipsis;"),
30                "text-clip" => context.buffer.line("text-overflow: clip;"),
31                _ => unreachable!(),
32            }
33        }
34    }
35}