mirror of
https://github.com/alexpasmantier/television.git
synced 2025-06-04 18:45:23 +00:00
53 lines
1.4 KiB
Rust
53 lines
1.4 KiB
Rust
use rustc_hash::FxHashMap;
|
|
use std::sync::Arc;
|
|
|
|
use crate::previewers::{Preview, PreviewContent};
|
|
use television_channels::entry;
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct EnvVarPreviewer {
|
|
cache: FxHashMap<entry::Entry, Arc<Preview>>,
|
|
_config: EnvVarPreviewerConfig,
|
|
}
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct EnvVarPreviewerConfig {}
|
|
|
|
impl EnvVarPreviewer {
|
|
pub fn new(config: Option<EnvVarPreviewerConfig>) -> Self {
|
|
EnvVarPreviewer {
|
|
cache: FxHashMap::default(),
|
|
_config: config.unwrap_or_default(),
|
|
}
|
|
}
|
|
|
|
pub fn preview(&mut self, entry: &entry::Entry) -> Arc<Preview> {
|
|
// check if we have that preview in the cache
|
|
if let Some(preview) = self.cache.get(entry) {
|
|
return preview.clone();
|
|
}
|
|
let preview = Arc::new(Preview {
|
|
title: entry.name.clone(),
|
|
content: if let Some(preview) = &entry.value {
|
|
PreviewContent::PlainTextWrapped(
|
|
maybe_add_newline_after_colon(preview, &entry.name),
|
|
)
|
|
} else {
|
|
PreviewContent::Empty
|
|
},
|
|
icon: entry.icon,
|
|
});
|
|
self.cache.insert(entry.clone(), preview.clone());
|
|
preview
|
|
}
|
|
}
|
|
|
|
const PATH: &str = "PATH";
|
|
|
|
fn maybe_add_newline_after_colon(s: &str, name: &str) -> String {
|
|
if name.contains(PATH) {
|
|
return s.replace(':', "\n");
|
|
}
|
|
s.to_string()
|
|
}
|