perf(java): Lazy eval java (#2168)

* perf(java): evaluate version lazily

* fix(java): update format string

* fix: use suggested format string

Co-authored-by: Moritz Vetter <mv@3yourmind.com>
This commit is contained in:
Moritz Vetter 2021-01-20 18:51:30 +01:00 committed by GitHub
parent b065758b1c
commit 83e0432a75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 19 additions and 18 deletions

View File

@ -1335,8 +1335,8 @@ The module will be shown if any of the following conditions are met:
### Options
| Option | Default | Description |
| ---------- | -------------------------------------- | ----------------------------------------------- |
| `format` | `"via [${symbol}${version}]($style) "` | The format for the module. |
| ---------- | ---------------------------------------- | ----------------------------------------------- |
| `format` | `"via [${symbol}(${version} )]($style)"` | The format for the module. |
| `symbol` | `"☕ "` | A format string representing the symbol of Java |
| `style` | `"red dimmed"` | The style for the module. |
| `disabled` | `false` | Disables the `java` module. |

View File

@ -13,7 +13,7 @@ pub struct JavaConfig<'a> {
impl<'a> RootModuleConfig<'a> for JavaConfig<'a> {
fn new() -> Self {
JavaConfig {
format: "via [$symbol$version]($style) ",
format: "via [$symbol($version )]($style)",
disabled: false,
style: "red dimmed",
symbol: "",

View File

@ -32,8 +32,6 @@ pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
return None;
}
let java_version = get_java_version(context)?;
let mut module = context.new_module("java");
let config: JavaConfig = JavaConfig::try_load(module.config);
@ -48,7 +46,10 @@ pub fn module<'a>(context: &'a Context) -> Option<Module<'a>> {
_ => None,
})
.map(|variable| match variable {
"version" => Some(Ok(&java_version)),
"version" => {
let java_version = get_java_version(context)?;
Some(Ok(java_version))
}
_ => None,
})
.parse(None)