summaryrefslogtreecommitdiffstats
path: root/src/config/clean/bookmarks.rs
blob: 155755d22e1cf397fde8d33453d3c63af7cf02ce (plain)
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
use termion::event::Event;

use std::collections::HashMap;

use crate::config::raw::bookmarks::BookmarksRaw;
use crate::config::{ConfigType, TomlConfigFile};
use crate::util::keyparse;

pub type Bookmarks = HashMap<Event, String>;

impl TomlConfigFile for Bookmarks {
    type Raw = BookmarksRaw;

    fn get_type() -> ConfigType {
        ConfigType::Bookmarks
    }
}

impl From<BookmarksRaw> for Bookmarks {
    fn from(raw: BookmarksRaw) -> Self {
        let mut raw = raw;
        let map: Bookmarks = raw
            .bookmark
            .drain(..)
            .filter_map(|bookmark| match keyparse::str_to_event(&bookmark.key) {
                Some(event) => Some((event, bookmark.path)),
                None => None,
            })
            .collect();
        map
    }
}