This commit is contained in:
parent
66ac061630
commit
6ee1500795
2 changed files with 38 additions and 6 deletions
|
@ -43,6 +43,7 @@ pub async fn pkg_ui(
|
|||
let keyrings = pkg.keyrings();
|
||||
let shared_objects = pkg.shared_objects();
|
||||
let icons = pkg.icons();
|
||||
let readmes = pkg.readmes();
|
||||
let mut pkginfo = pkg.pkginfo();
|
||||
|
||||
let content = Div().vanish()
|
||||
|
@ -203,17 +204,31 @@ pub async fn pkg_ui(
|
|||
Padding(Rounded(Background(Gray::_700, Code(&hook.1).sm().color(&Gray::_100))).size(Size::Large)).all(ScreenValue::_4)
|
||||
)
|
||||
})
|
||||
.push(
|
||||
html! {
|
||||
@for unit in &systemd_units {
|
||||
li { (unit) }
|
||||
}
|
||||
})
|
||||
).y(ScreenValue::_1)
|
||||
).list_style(ListStyle::Disc).color(&Gray::_300)
|
||||
)
|
||||
)
|
||||
})
|
||||
.push_if(!readmes.is_empty(),
|
||||
|| InfoCard(
|
||||
Div().vanish().push(CardTitle("READMEs")).push(
|
||||
Paragraph(
|
||||
SpaceBetween(
|
||||
Div().vanish()
|
||||
.push_for_each(&readmes, |readme: &(String, String)| {
|
||||
Div().vanish()
|
||||
.push(
|
||||
Text(&readme.0).xl().semibold().color(&Gray::_300)
|
||||
)
|
||||
.push(
|
||||
Padding(Rounded(Background(Gray::_700, Code(&readme.1).sm().color(&Gray::_100))).size(Size::Large)).all(ScreenValue::_4)
|
||||
)
|
||||
})
|
||||
).y(ScreenValue::_1)
|
||||
).list_style(ListStyle::Disc).color(&Gray::_300)
|
||||
)
|
||||
)
|
||||
)
|
||||
.push_if(!binaries.is_empty(),
|
||||
|| InfoCard(
|
||||
Div().vanish()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue