status_data.rs 1008 B

12345678910111213141516171819202122232425262728293031323334353637
  1. use held_core::view::{colors::Colors, style::CharStyle};
  2. use crate::buffer::Buffer;
  3. pub struct StatusLineData {
  4. pub content: String,
  5. pub color: Colors,
  6. pub style: CharStyle,
  7. }
  8. pub fn buffer_status_data(buffer: &Option<Buffer>) -> StatusLineData {
  9. if let Some(buffer) = buffer {
  10. let modified = buffer.modified();
  11. let (title, style) = buffer
  12. .path
  13. .as_ref()
  14. .map(|path| {
  15. if modified {
  16. (format!(" {}*", path.to_string_lossy()), CharStyle::Bold)
  17. } else {
  18. (format!(" {}", path.to_string_lossy()), CharStyle::Default)
  19. }
  20. })
  21. .unwrap_or_default();
  22. StatusLineData {
  23. content: title,
  24. color: Colors::Focused,
  25. style,
  26. }
  27. } else {
  28. StatusLineData {
  29. content: String::new(),
  30. color: Colors::Focused,
  31. style: CharStyle::Default,
  32. }
  33. }
  34. }