mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-04 19:37:54 +03:00
Use a Cow<'static, str>
for the Info component title
Some uses of the component (like for register) provide a static title. We can trivially avoid the title allocation in those cases.
This commit is contained in:
parent
1c0b36b1b4
commit
b8912adbbf
3 changed files with 11 additions and 9 deletions
|
@ -106,7 +106,7 @@ impl KeyTrieNode {
|
||||||
(events.join(", "), desc)
|
(events.join(", "), desc)
|
||||||
})
|
})
|
||||||
.collect();
|
.collect();
|
||||||
Info::new(&self.name, &body)
|
Info::new(self.name.clone(), &body)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -24,7 +24,7 @@ impl Component for Info {
|
||||||
surface.clear_with(area, popup_style);
|
surface.clear_with(area, popup_style);
|
||||||
|
|
||||||
let block = Block::bordered()
|
let block = Block::bordered()
|
||||||
.title(self.title.as_str())
|
.title(self.title.as_ref())
|
||||||
.border_style(popup_style);
|
.border_style(popup_style);
|
||||||
|
|
||||||
let margin = Margin::horizontal(1);
|
let margin = Margin::horizontal(1);
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
use crate::register::Registers;
|
use crate::register::Registers;
|
||||||
use helix_core::unicode::width::UnicodeWidthStr;
|
use helix_core::unicode::width::UnicodeWidthStr;
|
||||||
use std::fmt::Write;
|
use std::{borrow::Cow, fmt::Write};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
/// Info box used in editor. Rendering logic will be in other crate.
|
/// Info box used in editor. Rendering logic will be in other crate.
|
||||||
pub struct Info {
|
pub struct Info {
|
||||||
/// Title shown at top.
|
/// Title shown at top.
|
||||||
pub title: String,
|
pub title: Cow<'static, str>,
|
||||||
/// Text body, should contain newlines.
|
/// Text body, should contain newlines.
|
||||||
pub text: String,
|
pub text: String,
|
||||||
/// Body width.
|
/// Body width.
|
||||||
|
@ -16,17 +16,19 @@ pub struct Info {
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Info {
|
impl Info {
|
||||||
pub fn new<T, U>(title: &str, body: &[(T, U)]) -> Self
|
pub fn new<T, K, V>(title: T, body: &[(K, V)]) -> Self
|
||||||
where
|
where
|
||||||
T: AsRef<str>,
|
T: Into<Cow<'static, str>>,
|
||||||
U: AsRef<str>,
|
K: AsRef<str>,
|
||||||
|
V: AsRef<str>,
|
||||||
{
|
{
|
||||||
|
let title = title.into();
|
||||||
if body.is_empty() {
|
if body.is_empty() {
|
||||||
return Self {
|
return Self {
|
||||||
title: title.to_string(),
|
|
||||||
height: 1,
|
height: 1,
|
||||||
width: title.len() as u16,
|
width: title.len() as u16,
|
||||||
text: "".to_string(),
|
text: "".to_string(),
|
||||||
|
title,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -48,7 +50,7 @@ impl Info {
|
||||||
}
|
}
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
title: title.to_string(),
|
title,
|
||||||
width: text.lines().map(|l| l.width()).max().unwrap() as u16,
|
width: text.lines().map(|l| l.width()).max().unwrap() as u16,
|
||||||
height: body.len() as u16,
|
height: body.len() as u16,
|
||||||
text,
|
text,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue