
Similar to https://github.com/zed-industries/zed/pull/18690 & https://github.com/zed-industries/zed/pull/18695, this PR enables required docs for `ui` and does some cleanup. Changes: - Enables the `deny(missing_docs)` crate-wide. - Adds `allow(missing_docs)` on many modules until folks pick them up to document them - Documents some modules (all in `ui/src/styles`) - Crate root-level organization: Traits move to `traits`, other misc organization - Cleaned out a bunch of unused code. Note: I'd like to remove `utils/format_distance` but the assistant panel uses it. To move it over to use the `time_format` crate we may need to update it to use `time` instead of `chrono`. Needs more investigation. Release Notes: - N/A
38 lines
858 B
Rust
38 lines
858 B
Rust
#![allow(missing_docs)]
|
|
|
|
use gpui::AnyElement;
|
|
use smallvec::SmallVec;
|
|
|
|
use crate::{prelude::*, ListHeader};
|
|
|
|
/// A group of settings.
|
|
#[derive(IntoElement)]
|
|
pub struct SettingsGroup {
|
|
header: SharedString,
|
|
children: SmallVec<[AnyElement; 2]>,
|
|
}
|
|
|
|
impl SettingsGroup {
|
|
pub fn new(header: impl Into<SharedString>) -> Self {
|
|
Self {
|
|
header: header.into(),
|
|
children: SmallVec::new(),
|
|
}
|
|
}
|
|
}
|
|
|
|
impl ParentElement for SettingsGroup {
|
|
fn extend(&mut self, elements: impl IntoIterator<Item = AnyElement>) {
|
|
self.children.extend(elements)
|
|
}
|
|
}
|
|
|
|
impl RenderOnce for SettingsGroup {
|
|
fn render(self, _cx: &mut WindowContext) -> impl IntoElement {
|
|
v_flex()
|
|
.p_1()
|
|
.gap_2()
|
|
.child(ListHeader::new(self.header))
|
|
.children(self.children)
|
|
}
|
|
}
|