Anki/rslib/src/config/string.rs
2021-06-24 14:38:10 +10:00

48 lines
1.2 KiB
Rust

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
use strum::IntoStaticStr;
use crate::prelude::*;
#[derive(Debug, Clone, Copy, IntoStaticStr)]
#[strum(serialize_all = "camelCase")]
pub enum StringKey {
SetDueBrowser,
SetDueReviewer,
DefaultSearchText,
CardStateCustomizer,
}
impl Collection {
pub fn get_config_string(&self, key: StringKey) -> String {
let default = match key {
StringKey::SetDueBrowser => "0",
StringKey::SetDueReviewer => "1",
_other => "",
};
self.get_config_optional(key)
.unwrap_or_else(|| default.to_string())
}
pub fn set_config_string(
&mut self,
key: StringKey,
val: &str,
undoable: bool,
) -> Result<OpOutput<()>> {
self.transact(Op::UpdateConfig, |col| {
col.set_config_string_inner(key, val)?;
if !undoable {
col.clear_current_undo_step_changes()?;
}
Ok(())
})
}
}
impl Collection {
pub(crate) fn set_config_string_inner(&mut self, key: StringKey, val: &str) -> Result<bool> {
self.set_config(key, &val)
}
}