Return impl IntoElement from Render::render trait

This commit is contained in:
Nathan Sobo 2024-01-02 10:09:05 -07:00
parent 0f33775a91
commit 1b5c8b2b4a
84 changed files with 550 additions and 110 deletions

View File

@ -304,7 +304,7 @@ impl ActivityIndicator {
impl EventEmitter<Event> for ActivityIndicator {}
impl Render for ActivityIndicator {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let content = self.content_to_render(cx);
let mut result = h_stack()

View File

@ -1101,7 +1101,7 @@ fn build_api_key_editor(cx: &mut ViewContext<AssistantPanel>) -> View<Editor> {
}
impl Render for AssistantPanel {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
if let Some(api_key_editor) = self.api_key_editor.clone() {
v_stack()
.on_action(cx.listener(AssistantPanel::save_credentials))

View File

@ -1,5 +1,5 @@
use gpui::{
div, DismissEvent, Element, EventEmitter, InteractiveElement, ParentElement, Render,
div, DismissEvent, EventEmitter, InteractiveElement, IntoElement, ParentElement, Render,
SemanticVersion, StatefulInteractiveElement, Styled, ViewContext,
};
use menu::Cancel;
@ -13,7 +13,7 @@ pub struct UpdateNotification {
impl EventEmitter<DismissEvent> for UpdateNotification {}
impl Render for UpdateNotification {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
let app_name = cx.global::<ReleaseChannel>().display_name();
v_stack()

View File

@ -30,7 +30,7 @@ impl Breadcrumbs {
impl EventEmitter<ToolbarItemEvent> for Breadcrumbs {}
impl Render for Breadcrumbs {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let element = h_stack().text_ui();
let Some(active_item) = self.active_item.as_ref() else {
return element;

View File

@ -222,7 +222,7 @@ impl ChannelView {
impl EventEmitter<EditorEvent> for ChannelView {}
impl Render for ChannelView {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
self.editor.clone()
}
}

View File

@ -549,7 +549,7 @@ impl ChatPanel {
impl EventEmitter<Event> for ChatPanel {}
impl Render for ChatPanel {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
div()
.full()
.child(if self.client.user_id().is_some() {

View File

@ -3,7 +3,7 @@ use client::UserId;
use collections::HashMap;
use editor::{AnchorRangeExt, Editor};
use gpui::{
AsyncWindowContext, Element, FocusableView, Model, Render, SharedString, Task, View,
AsyncWindowContext, FocusableView, IntoElement, Model, Render, SharedString, Task, View,
ViewContext, WeakView,
};
use language::{language_settings::SoftWrap, Buffer, BufferSnapshot, LanguageRegistry};
@ -196,7 +196,7 @@ impl MessageEditor {
}
impl Render for MessageEditor {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
self.editor.to_any()
}
}

View File

@ -2265,7 +2265,7 @@ fn render_tree_branch(is_last: bool, cx: &mut WindowContext) -> impl IntoElement
}
impl Render for CollabPanel {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack()
.key_context("CollabPanel")
.on_action(cx.listener(CollabPanel::cancel))

View File

@ -142,7 +142,7 @@ impl FocusableView for ChannelModal {
}
impl Render for ChannelModal {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let channel_store = self.channel_store.read(cx);
let Some(channel) = channel_store.channel_for_id(self.channel_id) else {
return div();

View File

@ -35,7 +35,7 @@ impl ContactFinder {
}
impl Render for ContactFinder {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack()
.elevation_3(cx)
.child(

View File

@ -56,7 +56,7 @@ pub struct CollabTitlebarItem {
}
impl Render for CollabTitlebarItem {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let room = ActiveCall::global(cx).read(cx).room().cloned();
let current_user = self.user_store.read(cx).current_user();
let client = self.client.clone();

View File

@ -540,7 +540,7 @@ impl NotificationPanel {
}
impl Render for NotificationPanel {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack()
.size_full()
.child(
@ -704,7 +704,7 @@ impl NotificationToast {
}
impl Render for NotificationToast {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let user = self.actor.clone();
h_stack()

View File

@ -117,7 +117,7 @@ impl IncomingCallNotification {
}
impl Render for IncomingCallNotification {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
// TODO: Is there a better place for us to initialize the font?
let (ui_font, ui_font_size) = {
let theme_settings = ThemeSettings::get_global(cx);

View File

@ -118,7 +118,7 @@ impl ProjectSharedNotification {
}
impl Render for ProjectSharedNotification {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
// TODO: Is there a better place for us to initialize the font?
let (ui_font, ui_font_size) = {
let theme_settings = ThemeSettings::get_global(cx);

View File

@ -83,7 +83,7 @@ impl FocusableView for CommandPalette {
}
impl Render for CommandPalette {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack().w(rems(34.)).child(self.picker.clone())
}
}

View File

@ -181,7 +181,7 @@ impl CopilotCodeVerification {
}
impl Render for CopilotCodeVerification {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let prompt = match &self.status {
Status::SigningIn {
prompt: Some(prompt),

View File

@ -3,7 +3,7 @@ use copilot::{Copilot, SignOut, Status};
use editor::{scroll::autoscroll::Autoscroll, Editor};
use fs::Fs;
use gpui::{
div, Action, AnchorCorner, AppContext, AsyncWindowContext, Element, Entity, ParentElement,
div, Action, AnchorCorner, AppContext, AsyncWindowContext, Entity, IntoElement, ParentElement,
Render, Subscription, View, ViewContext, WeakView, WindowContext,
};
use language::{
@ -34,7 +34,7 @@ pub struct CopilotButton {
}
impl Render for CopilotButton {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let all_language_settings = all_language_settings(None, cx);
if !all_language_settings.copilot.feature_enabled {
return div();

View File

@ -21,7 +21,7 @@ pub struct DiagnosticIndicator {
}
impl Render for DiagnosticIndicator {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let diagnostic_indicator = match (self.summary.error_count, self.summary.warning_count) {
(0, 0) => h_stack().child(
IconElement::new(Icon::Check)

View File

@ -9,7 +9,7 @@ pub struct ToolbarControls {
}
impl Render for ToolbarControls {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let include_warnings = self
.editor
.as_ref()

View File

@ -9291,7 +9291,7 @@ impl FocusableView for Editor {
}
impl Render for Editor {
fn render<'a>(&mut self, cx: &mut ViewContext<'a, Self>) -> impl 'static + Element {
fn render<'a>(&mut self, cx: &mut ViewContext<'a, Self>) -> impl IntoElement {
let settings = ThemeSettings::get_global(cx);
let text_style = match self.mode {
EditorMode::SingleLine | EditorMode::AutoHeight { .. } => TextStyle {

View File

@ -1193,7 +1193,7 @@ impl CursorPosition {
}
impl Render for CursorPosition {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
div().when_some(self.position, |el, position| {
let mut text = format!(
"{}{FILE_ROW_COLUMN_DELIMITER}{}",

View File

@ -17,7 +17,7 @@ impl DeployFeedbackButton {
}
impl Render for DeployFeedbackButton {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let is_open = self
.workspace
.upgrade()

View File

@ -396,7 +396,7 @@ impl FeedbackModal {
}
impl Render for FeedbackModal {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
self.update_submission_state(cx);
let submit_button_text = if self.awaiting_submission() {

View File

@ -118,7 +118,7 @@ impl FocusableView for FileFinder {
}
}
impl Render for FileFinder {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack().w(rems(34.)).child(self.picker.clone())
}
}

View File

@ -152,7 +152,7 @@ impl GoToLine {
}
impl Render for GoToLine {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
div()
.elevation_2(cx)
.key_context("GoToLine")

View File

@ -1,7 +1,7 @@
use crate::{
div, Action, AnyView, AnyWindowHandle, AppCell, AppContext, AsyncAppContext,
BackgroundExecutor, Bounds, ClipboardItem, Context, Element, Entity, EventEmitter,
ForegroundExecutor, InputEvent, KeyDownEvent, Keystroke, Model, ModelContext, Pixels, Platform,
BackgroundExecutor, Bounds, ClipboardItem, Context, Entity, EventEmitter, ForegroundExecutor,
InputEvent, IntoElement, KeyDownEvent, Keystroke, Model, ModelContext, Pixels, Platform,
PlatformWindow, Point, Render, Result, Size, Task, TestDispatcher, TestPlatform, TestWindow,
TestWindowHandlers, TextSystem, View, ViewContext, VisualContext, WindowBounds, WindowContext,
WindowHandle, WindowOptions,
@ -731,7 +731,7 @@ impl AnyWindowHandle {
pub struct EmptyView {}
impl Render for EmptyView {
fn render(&mut self, _cx: &mut crate::ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut crate::ViewContext<Self>) -> impl IntoElement {
div()
}
}

View File

@ -107,7 +107,7 @@ pub trait IntoElement: Sized {
}
pub trait Render: 'static + Sized {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element;
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement;
}
/// You can derive [IntoElement] on any type that implements this trait.

View File

@ -205,7 +205,7 @@ impl ExternalPaths {
}
impl Render for ExternalPaths {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
div() // Intentionally left empty because the platform will render icons for the dragged files
}
}

View File

@ -1,7 +1,5 @@
use editor::Editor;
use gpui::{
div, Element, IntoElement, ParentElement, Render, Subscription, View, ViewContext, WeakView,
};
use gpui::{div, IntoElement, ParentElement, Render, Subscription, View, ViewContext, WeakView};
use std::sync::Arc;
use ui::{Button, ButtonCommon, Clickable, LabelSize, Tooltip};
use workspace::{item::ItemHandle, StatusItemView, Workspace};
@ -38,7 +36,7 @@ impl ActiveBufferLanguage {
}
impl Render for ActiveBufferLanguage {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
div().when_some(self.active_language.as_ref(), |el, active_language| {
let active_language_text = if let Some(active_language_text) = active_language {
active_language_text.to_string()

View File

@ -67,7 +67,7 @@ impl LanguageSelector {
}
impl Render for LanguageSelector {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack().w(rems(34.)).child(self.picker.clone())
}
}

View File

@ -2,9 +2,9 @@ use collections::{HashMap, VecDeque};
use editor::{Editor, EditorEvent, MoveToEnd};
use futures::{channel::mpsc, StreamExt};
use gpui::{
actions, div, AnchorCorner, AnyElement, AppContext, Context, Element, EventEmitter,
FocusHandle, FocusableView, IntoElement, Model, ModelContext, ParentElement, Render, Styled,
Subscription, View, ViewContext, VisualContext, WeakModel, WindowContext,
actions, div, AnchorCorner, AnyElement, AppContext, Context, EventEmitter, FocusHandle,
FocusableView, IntoElement, Model, ModelContext, ParentElement, Render, Styled, Subscription,
View, ViewContext, VisualContext, WeakModel, WindowContext,
};
use language::{LanguageServerId, LanguageServerName};
use lsp::IoKind;
@ -595,9 +595,9 @@ fn log_contents(lines: &VecDeque<String>) -> String {
}
impl Render for LspLogView {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
self.editor
.update(cx, |editor, cx| editor.render(cx).into_any())
.update(cx, |editor, cx| editor.render(cx).into_any_element())
}
}
@ -708,7 +708,7 @@ impl ToolbarItemView for LspLogToolbarItemView {
}
impl Render for LspLogToolbarItemView {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let Some(log_view) = self.log_view.clone() else {
return div();
};

View File

@ -1,6 +1,6 @@
use editor::{scroll::autoscroll::Autoscroll, Anchor, Editor, ExcerptId};
use gpui::{
actions, canvas, div, rems, uniform_list, AnyElement, AppContext, AvailableSpace, Div, Element,
actions, canvas, div, rems, uniform_list, AnyElement, AppContext, AvailableSpace, Div,
EventEmitter, FocusHandle, FocusableView, Hsla, InteractiveElement, IntoElement, Model,
MouseButton, MouseDownEvent, MouseMoveEvent, ParentElement, Pixels, Render, Styled,
UniformListScrollHandle, View, ViewContext, VisualContext, WeakView, WindowContext,
@ -305,7 +305,7 @@ impl SyntaxTreeView {
}
impl Render for SyntaxTreeView {
fn render(&mut self, cx: &mut gpui::ViewContext<'_, Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<'_, Self>) -> impl IntoElement {
let settings = ThemeSettings::get_global(cx);
let line_height = cx
.text_style()
@ -505,7 +505,7 @@ fn format_node_range(node: Node) -> String {
}
impl Render for SyntaxTreeToolbarItemView {
fn render(&mut self, cx: &mut ViewContext<'_, Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<'_, Self>) -> impl IntoElement {
self.render_menu(cx)
.unwrap_or_else(|| popover_menu("Empty Syntax Tree"))
}

View File

@ -57,7 +57,7 @@ impl EventEmitter<DismissEvent> for OutlineView {}
impl ModalView for OutlineView {}
impl Render for OutlineView {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack().w(rems(34.)).child(self.picker.clone())
}
}

View File

@ -235,7 +235,7 @@ impl<D: PickerDelegate> EventEmitter<DismissEvent> for Picker<D> {}
impl<D: PickerDelegate> ModalView for Picker<D> {}
impl<D: PickerDelegate> Render for Picker<D> {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let picker_editor = h_stack()
.overflow_hidden()
.flex_none()

View File

@ -1480,7 +1480,7 @@ impl ProjectPanel {
}
impl Render for ProjectPanel {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
let has_worktree = self.visible_entries.len() != 0;
if has_worktree {

View File

@ -36,7 +36,7 @@ impl QuickActionBar {
}
impl Render for QuickActionBar {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let Some(editor) = self.active_editor() else {
return div().id("empty quick action bar");
};

View File

@ -103,7 +103,7 @@ impl FocusableView for RecentProjects {
}
impl Render for RecentProjects {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack()
.w(rems(self.rem_width))
.child(self.picker.clone())

View File

@ -101,7 +101,7 @@ impl BufferSearchBar {
impl EventEmitter<Event> for BufferSearchBar {}
impl EventEmitter<workspace::ToolbarItemEvent> for BufferSearchBar {}
impl Render for BufferSearchBar {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
if self.dismissed {
return div();
}

View File

@ -279,7 +279,7 @@ pub enum ViewEvent {
impl EventEmitter<ViewEvent> for ProjectSearchView {}
impl Render for ProjectSearchView {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
if self.has_matches() {
div()
.flex_1()
@ -1548,7 +1548,7 @@ impl ProjectSearchBar {
}
impl Render for ProjectSearchBar {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let Some(search) = self.active_project_search.clone() else {
return div();
};

View File

@ -1,6 +1,6 @@
use editor::Editor;
use gpui::{
div, white, Element, KeyBinding, ParentElement, Render, Styled, View, ViewContext,
div, white, IntoElement, KeyBinding, ParentElement, Render, Styled, View, ViewContext,
VisualContext, WindowContext,
};
@ -22,7 +22,7 @@ impl AutoHeightEditorStory {
}
impl Render for AutoHeightEditorStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
div()
.size_full()
.bg(white())

View File

@ -5,7 +5,7 @@ use ui::prelude::*;
pub struct CursorStory;
impl Render for CursorStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
let all_cursors: [(&str, Box<dyn Fn(Stateful<Div>) -> Stateful<Div>>); 19] = [
(
"cursor_default",

View File

@ -56,7 +56,7 @@ impl FocusStory {
}
impl Render for FocusStory {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
let theme = cx.theme();
let color_1 = theme.status().created;
let color_2 = theme.status().modified;

View File

@ -14,7 +14,7 @@ impl KitchenSinkStory {
}
impl Render for KitchenSinkStory {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let component_stories = ComponentStory::iter()
.map(|selector| selector.story(cx))
.collect::<Vec<_>>();

View File

@ -6,7 +6,7 @@ use ui::prelude::*;
pub struct OverflowScrollStory;
impl Render for OverflowScrollStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title("Overflow Scroll"))
.child(Story::label("`overflow_x_scroll`"))

View File

@ -200,7 +200,7 @@ impl PickerStory {
}
impl Render for PickerStory {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
div()
.bg(cx.theme().styles.colors.background)
.size_full()

View File

@ -11,7 +11,7 @@ impl ScrollStory {
}
impl Render for ScrollStory {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
let theme = cx.theme();
let color_1 = theme.status().created;
let color_2 = theme.status().modified;

View File

@ -1,6 +1,6 @@
use gpui::{
div, green, red, Element, HighlightStyle, InteractiveText, IntoElement, ParentElement, Render,
Styled, StyledText, View, VisualContext, WindowContext,
div, green, red, HighlightStyle, InteractiveText, IntoElement, ParentElement, Render, Styled,
StyledText, View, VisualContext, WindowContext,
};
use indoc::indoc;
use story::*;
@ -14,7 +14,7 @@ impl TextStory {
}
impl Render for TextStory {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
StoryContainer::new("Text Story", "crates/storybook2/src/stories/text.rs")
.children(
vec![

View File

@ -6,7 +6,7 @@ use ui::prelude::*;
pub struct ViewportUnitsStory;
impl Render for ViewportUnitsStory {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container().child(
div()
.flex()

View File

@ -7,7 +7,7 @@ use ui::prelude::*;
pub struct ZIndexStory;
impl Render for ZIndexStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container().child(Story::title("z-index")).child(
div()
.flex()

View File

@ -113,7 +113,7 @@ impl StoryWrapper {
}
impl Render for StoryWrapper {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
div()
.flex()
.flex_col()

View File

@ -3,9 +3,9 @@ use std::{path::PathBuf, sync::Arc};
use crate::TerminalView;
use db::kvp::KEY_VALUE_STORE;
use gpui::{
actions, div, serde_json, AppContext, AsyncWindowContext, Element, Entity, EventEmitter,
ExternalPaths, FocusHandle, FocusableView, IntoElement, ParentElement, Pixels, Render, Styled,
Subscription, Task, View, ViewContext, VisualContext, WeakView, WindowContext,
actions, div, serde_json, AppContext, AsyncWindowContext, Entity, EventEmitter, ExternalPaths,
FocusHandle, FocusableView, IntoElement, ParentElement, Pixels, Render, Styled, Subscription,
Task, View, ViewContext, VisualContext, WeakView, WindowContext,
};
use project::Fs;
use serde::{Deserialize, Serialize};
@ -329,7 +329,7 @@ impl TerminalPanel {
impl EventEmitter<PanelEvent> for TerminalPanel {}
impl Render for TerminalPanel {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
div().size_full().child(self.pane.clone())
}
}

View File

@ -617,7 +617,7 @@ impl TerminalView {
}
impl Render for TerminalView {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let terminal_handle = self.terminal.clone();
let focused = self.focus_handle.is_focused(cx);

View File

@ -67,7 +67,7 @@ impl FocusableView for ThemeSelector {
}
impl Render for ThemeSelector {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack().w(rems(34.)).child(self.picker.clone())
}
}

View File

@ -232,7 +232,7 @@ impl ContextMenuItem {
}
impl Render for ContextMenu {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
div().elevation_2(cx).flex().flex_row().child(
v_stack()
.min_w(px(200.))

View File

@ -7,7 +7,7 @@ use crate::Avatar;
pub struct AvatarStory;
impl Render for AvatarStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<Avatar>())
.child(Story::label("Default"))

View File

@ -7,7 +7,7 @@ use crate::{Button, ButtonStyle};
pub struct ButtonStory;
impl Render for ButtonStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<Button>())
.child(Story::label("Default"))

View File

@ -7,7 +7,7 @@ use crate::{h_stack, Checkbox};
pub struct CheckboxStory;
impl Render for CheckboxStory {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<Checkbox>())
.child(Story::label("Default"))

View File

@ -20,7 +20,7 @@ fn build_menu(cx: &mut WindowContext, header: impl Into<SharedString>) -> View<C
pub struct ContextMenuStory;
impl Render for ContextMenuStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.on_action(|_: &PrintCurrentDate, _| {
println!("printing unix time!");

View File

@ -7,7 +7,7 @@ use crate::Disclosure;
pub struct DisclosureStory;
impl Render for DisclosureStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<Disclosure>())
.child(Story::label("Toggled"))

View File

@ -8,7 +8,7 @@ use crate::{Icon, IconElement};
pub struct IconStory;
impl Render for IconStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
let icons = Icon::iter();
Story::container()

View File

@ -7,7 +7,7 @@ use crate::{Icon, IconButton};
pub struct IconButtonStory;
impl Render for IconButtonStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
let default_button = StoryItem::new(
"Default",
IconButton::new("default_icon_button", Icon::Hash),

View File

@ -13,7 +13,7 @@ pub fn binding(key: &str) -> gpui::KeyBinding {
}
impl Render for KeybindingStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
let all_modifier_permutations = ["ctrl", "alt", "cmd", "shift"].into_iter().permutations(2);
Story::container()

View File

@ -5,7 +5,7 @@ use story::Story;
pub struct LabelStory;
impl Render for LabelStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<Label>())
.child(Story::label("Default"))

View File

@ -7,7 +7,7 @@ use crate::{List, ListItem};
pub struct ListStory;
impl Render for ListStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<List>())
.child(Story::label("Default"))

View File

@ -7,7 +7,7 @@ use crate::{Icon, ListHeader};
pub struct ListHeaderStory;
impl Render for ListHeaderStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<ListHeader>())
.child(Story::label("Default"))

View File

@ -7,7 +7,7 @@ use crate::{Icon, ListItem};
pub struct ListItemStory;
impl Render for ListItemStory {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.bg(cx.theme().colors().background)
.child(Story::title_for::<ListItem>())

View File

@ -9,7 +9,7 @@ use crate::{Indicator, Tab};
pub struct TabStory;
impl Render for TabStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
Story::container()
.child(Story::title_for::<Tab>())
.child(Story::label("Default"))

View File

@ -6,7 +6,7 @@ use crate::{prelude::*, Tab, TabBar, TabPosition};
pub struct TabBarStory;
impl Render for TabBarStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
let tab_count = 20;
let selected_tab_index = 3;

View File

@ -6,7 +6,7 @@ use crate::{prelude::*, ToggleButton};
pub struct ToggleButtonStory;
impl Render for ToggleButtonStory {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
StoryContainer::new(
"Toggle Button",
"crates/ui2/src/components/stories/toggle_button.rs",

View File

@ -68,7 +68,7 @@ impl Tooltip {
}
impl Render for Tooltip {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let ui_font = ThemeSettings::get_global(cx).ui_font.family.clone();
overlay().child(
// padding to avoid mouse cursor

View File

@ -65,7 +65,7 @@ impl FocusableView for BranchList {
}
impl Render for BranchList {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack()
.w(rems(self.rem_width))
.child(self.picker.clone())

View File

@ -47,7 +47,7 @@ impl ModeIndicator {
}
impl Render for ModeIndicator {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
let Some(mode) = self.mode.as_ref() else {
return div().into_any();
};

View File

@ -64,7 +64,7 @@ impl BaseKeymapSelector {
}
impl Render for BaseKeymapSelector {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
self.picker.clone()
}
}

View File

@ -58,7 +58,7 @@ pub struct WelcomePage {
}
impl Render for WelcomePage {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut gpui::ViewContext<Self>) -> impl IntoElement {
h_stack().full().track_focus(&self.focus_handle).child(
v_stack()
.w_96()

View File

@ -505,7 +505,7 @@ impl Dock {
}
impl Render for Dock {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
if let Some(entry) = self.visible_entry() {
let size = entry.panel.size(cx);
@ -592,7 +592,7 @@ impl PanelButtons {
}
impl Render for PanelButtons {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
// todo!()
let dock = self.dock.read(cx);
let active_index = dock.active_panel_index;
@ -713,7 +713,7 @@ pub mod test {
}
impl Render for TestPanel {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
div()
}
}

View File

@ -760,7 +760,7 @@ pub mod test {
use super::{Item, ItemEvent};
use crate::{ItemId, ItemNavHistory, Pane, Workspace, WorkspaceId};
use gpui::{
AnyElement, AppContext, Context as _, Element, EntityId, EventEmitter, FocusableView,
AnyElement, AppContext, Context as _, EntityId, EventEmitter, FocusableView,
InteractiveElement, IntoElement, Model, Render, SharedString, Task, View, ViewContext,
VisualContext, WeakView,
};
@ -910,7 +910,7 @@ pub mod test {
}
impl Render for TestItem {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
gpui::div().track_focus(&self.focus_handle)
}
}

View File

@ -104,7 +104,7 @@ impl ModalLayer {
}
impl Render for ModalLayer {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let Some(active_modal) = &self.active_modal else {
return div();
};

View File

@ -219,7 +219,7 @@ pub mod simple_message_notification {
}
impl Render for MessageNotification {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack()
.elevation_3(cx)
.p_4()

View File

@ -1867,7 +1867,7 @@ impl FocusableView for Pane {
}
impl Render for Pane {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
v_stack()
.key_context("Pane")
.track_focus(&self.focus_handle)
@ -2746,7 +2746,7 @@ mod tests {
}
impl Render for DraggedTab {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let ui_font = ThemeSettings::get_global(cx).ui_font.family.clone();
let item = &self.pane.read(cx).items[self.ix];
let label = item.tab_content(Some(self.detail), false, cx);

View File

@ -66,7 +66,7 @@ impl FocusableView for SharedScreen {
}
}
impl Render for SharedScreen {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, _: &mut ViewContext<Self>) -> impl IntoElement {
div().track_focus(&self.focus).size_full().children(
self.frame
.as_ref()

View File

@ -33,7 +33,7 @@ pub struct StatusBar {
}
impl Render for StatusBar {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
div()
.py_0p5()
.px_1()

View File

@ -93,7 +93,7 @@ impl Toolbar {
}
impl Render for Toolbar {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
if !self.has_any_visible_items() {
return div();
}

View File

@ -3487,7 +3487,7 @@ impl FocusableView for Workspace {
struct DraggedDock(DockPosition);
impl Render for Workspace {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
let mut context = KeyContext::default();
context.add("Workspace");

View File

@ -0,0 +1,442 @@
use gpui::{
div, img, prelude::*, px, rems, DismissEvent, Div, EventEmitter, FocusHandle, FocusableView,
SharedString, Stateful, View, ViewContext, WindowContext,
};
use theme::ActiveFabricTheme;
use ui::{
popover_menu, Button, ButtonCommon, ButtonStyle, Clickable, Color, LabelSize, PopoverMenu,
Tooltip,
};
#[derive(Clone, Copy, Debug)]
pub struct PeerId(pub u32);
#[derive(Clone, Copy, Debug)]
pub struct ProjectId(u64);
pub trait TitlebarDelegate: 'static + Sized {
fn toggle_following(&mut self, peer_index: PeerId, cx: &mut ViewContext<Self>);
}
impl TitlebarDelegate for () {
fn toggle_following(&mut self, peer: PeerId, _cx: &mut ViewContext<Self>) {
log::info!("toggle following {:?}", peer);
}
}
#[derive(IntoElement)]
pub struct Titlebar<D: TitlebarDelegate = ()> {
pub delegate: View<D>,
pub full_screen: bool,
pub project_host: Option<ProjectHost<D>>,
pub projects: Projects<D>,
pub branches: Option<Branches>,
pub collaborators: Vec<FacePile>,
}
#[derive(IntoElement)]
pub struct ProjectHost<D: TitlebarDelegate> {
pub delegate: View<D>,
pub id: PeerId,
pub login: SharedString,
pub peer_index: u32,
}
#[derive(IntoElement)]
pub struct Projects<D: TitlebarDelegate> {
pub delegate: View<D>,
pub current: SharedString,
pub recent: Vec<Project>,
}
#[derive(Clone)]
pub struct Project {
pub name: SharedString,
pub id: ProjectId,
}
pub struct ProjectsMenu<D> {
delegate: View<D>,
focus: FocusHandle,
recent: Vec<Project>,
}
pub struct Branches {
pub current: SharedString,
}
#[derive(IntoElement, Default)]
pub struct FacePile {
pub faces: Vec<Avatar>,
}
#[derive(IntoElement)]
pub struct Avatar {
pub image_uri: SharedString,
pub audio_status: AudioStatus,
pub available: Option<bool>,
pub shape: AvatarShape,
}
pub enum AvatarShape {
Square,
Circle,
}
impl<D: TitlebarDelegate> RenderOnce for Titlebar<D> {
type Output = Stateful<Div>;
fn render(self, cx: &mut ui::prelude::WindowContext) -> Self::Output {
div()
.flex()
.flex_col()
.id("titlebar")
.justify_between()
.w_full()
.h(rems(1.75))
// Set a non-scaling min-height here to ensure the titlebar is
// always at least the height of the traffic lights.
.min_h(px(32.))
.pl_2()
.when(self.full_screen, |this| {
// Use pixels here instead of a rem-based size because the macOS traffic
// lights are a static size, and don't scale with the rest of the UI.
this.pl(px(80.))
})
.bg(cx.theme().denim.default.background)
.on_click(|event, cx| {
if event.up.click_count == 2 {
cx.zoom_window();
}
})
// left side
.child(
div()
.flex()
.flex_row()
.gap_1()
.children(self.project_host)
.child(self.projects), // .children(self.render_project_branch(cx))
// .children(self.render_collaborators(cx)),
)
// right side
// .child(
// div()
// .flex()
// .flex_row()
// .gap_1()
// .pr_1()
// .when_some(room, |this, room| {
// let room = room.read(cx);
// let project = self.project.read(cx);
// let is_local = project.is_local();
// let is_shared = is_local && project.is_shared();
// let is_muted = room.is_muted(cx);
// let is_deafened = room.is_deafened().unwrap_or(false);
// let is_screen_sharing = room.is_screen_sharing();
// this.when(is_local, |this| {
// this.child(
// Button::new(
// "toggle_sharing",
// if is_shared { "Unshare" } else { "Share" },
// )
// .style(ButtonStyle::Subtle)
// .label_size(LabelSize::Small)
// .on_click(cx.listener(
// move |this, _, cx| {
// if is_shared {
// this.unshare_project(&Default::default(), cx);
// } else {
// this.share_project(&Default::default(), cx);
// }
// },
// )),
// )
// })
// .child(
// IconButton::new("leave-call", ui::Icon::Exit)
// .style(ButtonStyle::Subtle)
// .icon_size(IconSize::Small)
// .on_click(move |_, cx| {
// ActiveCall::global(cx)
// .update(cx, |call, cx| call.hang_up(cx))
// .detach_and_log_err(cx);
// }),
// )
// .child(
// IconButton::new(
// "mute-microphone",
// if is_muted {
// ui::Icon::MicMute
// } else {
// ui::Icon::Mic
// },
// )
// .style(ButtonStyle::Subtle)
// .icon_size(IconSize::Small)
// .selected(is_muted)
// .on_click(move |_, cx| crate::toggle_mute(&Default::default(), cx)),
// )
// .child(
// IconButton::new(
// "mute-sound",
// if is_deafened {
// ui::Icon::AudioOff
// } else {
// ui::Icon::AudioOn
// },
// )
// .style(ButtonStyle::Subtle)
// .icon_size(IconSize::Small)
// .selected(is_deafened)
// .tooltip(move |cx| {
// Tooltip::with_meta("Deafen Audio", None, "Mic will be muted", cx)
// })
// .on_click(move |_, cx| crate::toggle_mute(&Default::default(), cx)),
// )
// .child(
// IconButton::new("screen-share", ui::Icon::Screen)
// .style(ButtonStyle::Subtle)
// .icon_size(IconSize::Small)
// .selected(is_screen_sharing)
// .on_click(move |_, cx| {
// crate::toggle_screen_sharing(&Default::default(), cx)
// }),
// )
// })
// .map(|el| {
// let status = self.client.status();
// let status = &*status.borrow();
// if matches!(status, client::Status::Connected { .. }) {
// el.child(self.render_user_menu_button(cx))
// } else {
// el.children(self.render_connection_status(status, cx))
// .child(self.render_sign_in_button(cx))
// .child(self.render_user_menu_button(cx))
// }
// }),
// )
}
}
impl<D: TitlebarDelegate> RenderOnce for ProjectHost<D> {
type Output = Button;
fn render(self, _: &mut WindowContext) -> Self::Output {
let delegate = self.delegate;
Button::new("project-host", self.login)
.color(Color::Player(self.peer_index))
.style(ButtonStyle::Subtle)
.label_size(LabelSize::Small)
.tooltip(move |cx| Tooltip::text("Toggle following", cx))
.on_click(move |_, cx| {
let host_id = self.id;
delegate.update(cx, |this, cx| this.toggle_following(host_id, cx))
})
}
}
impl<D: 'static> EventEmitter<DismissEvent> for ProjectsMenu<D> {}
impl<D: TitlebarDelegate> Render for ProjectsMenu<D> {
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl Element {
todo!()
}
}
impl<D: TitlebarDelegate> FocusableView for ProjectsMenu<D> {
fn focus_handle(&self, _cx: &gpui::AppContext) -> gpui::FocusHandle {
self.focus.clone()
}
}
impl<D: TitlebarDelegate> RenderOnce for Projects<D> {
type Output = PopoverMenu<ProjectsMenu<D>>;
fn render(self, _cx: &mut WindowContext) -> Self::Output {
let delegate = self.delegate;
let recent_projects = self.recent;
popover_menu("recent-projects")
.trigger(
Button::new("trigger", self.current)
.style(ButtonStyle::Subtle)
.label_size(LabelSize::Small)
.tooltip(move |cx| Tooltip::text("Recent Projects", cx)),
)
.menu(move |cx| {
if recent_projects.is_empty() {
None
} else {
Some(cx.new_view(|cx| ProjectsMenu {
delegate: delegate.clone(),
focus: cx.focus_handle(),
recent: recent_projects.clone(),
}))
}
})
}
}
impl RenderOnce for FacePile {
type Output = Div;
fn render(self, _: &mut WindowContext) -> Self::Output {
let face_count = self.faces.len();
div()
.p_1()
.flex()
.items_center()
.children(self.faces.into_iter().enumerate().map(|(ix, avatar)| {
let last_child = ix == face_count - 1;
div()
.z_index((face_count - ix) as u8)
.when(!last_child, |div| div.neg_mr_1())
.child(avatar)
}))
}
}
impl RenderOnce for Avatar {
type Output = Div;
fn render(self, cx: &mut WindowContext) -> Self::Output {
div()
.map(|this| match self.shape {
AvatarShape::Square => this.rounded_md(),
AvatarShape::Circle => this.rounded_full(),
})
.map(|this| match self.audio_status {
AudioStatus::None => this,
AudioStatus::Muted => this.border_color(cx.theme().muted),
AudioStatus::Speaking => this.border_color(cx.theme().speaking),
})
.size(cx.rem_size() + px(2.))
.child(
img(self.image_uri)
.size(cx.rem_size())
.bg(cx.theme().cotton.disabled.background),
)
.children(self.available.map(|is_free| {
// Non-integer sizes result in non-round indicators.
let indicator_size = (cx.rem_size() * 0.4).round();
div()
.absolute()
.z_index(1)
.bg(if is_free {
cx.theme().positive.default.background
} else {
cx.theme().negative.default.background
})
.size(indicator_size)
.rounded(indicator_size)
.bottom_0()
.right_0()
}))
}
}
pub enum AudioStatus {
None,
Muted,
Speaking,
}
// impl Titlebar {
// pub fn render_project_host(&self, cx: &mut ViewContext<Self>) -> Option<impl Element> {
// let host = self.project.read(cx).host()?;
// let host = self.user_store.read(cx).get_cached_user(host.user_id)?;
// let participant_index = self
// .user_store
// .read(cx)
// .participant_indices()
// .get(&host.id)?;
// Some(
// div().border().border_color(gpui::red()).child(
// Button::new("project_owner_trigger", host.github_login.clone())
// .color(Color::Player(participant_index.0))
// .style(ButtonStyle::Subtle)
// .label_size(LabelSize::Small)
// .tooltip(move |cx| Tooltip::text("Toggle following", cx)),
// ),
// )
// }
// pub fn render_project_branch(&self, cx: &mut ViewContext<Self>) -> Option<impl Element> {
// let entry = {
// let mut names_and_branches =
// self.project.read(cx).visible_worktrees(cx).map(|worktree| {
// let worktree = worktree.read(cx);
// worktree.root_git_entry()
// });
// names_and_branches.next().flatten()
// };
// let workspace = self.workspace.upgrade()?;
// let branch_name = entry
// .as_ref()
// .and_then(RepositoryEntry::branch)
// .map(|branch| util::truncate_and_trailoff(&branch, MAX_BRANCH_NAME_LENGTH))?;
// Some(
// popover_menu("project_branch_trigger")
// .trigger(
// Button::new("project_branch_trigger", branch_name)
// .color(Color::Muted)
// .style(ButtonStyle::Subtle)
// .label_size(LabelSize::Small)
// .tooltip(move |cx| {
// Tooltip::with_meta(
// "Recent Branches",
// Some(&ToggleVcsMenu),
// "Local branches only",
// cx,
// )
// }),
// )
// .menu(move |cx| Self::render_vcs_popover(workspace.clone(), cx)),
// )
// }
// fn render_collaborator(
// &self,
// user: &Arc<User>,
// peer_id: PeerId,
// is_present: bool,
// is_speaking: bool,
// is_muted: bool,
// room: &Room,
// project_id: Option<u64>,
// current_user: &Arc<User>,
// ) -> Option<FacePile> {
// let followers = project_id.map_or(&[] as &[_], |id| room.followers_for(peer_id, id));
// let pile = FacePile::default()
// .child(
// Avatar::new(user.avatar_uri.clone())
// .grayscale(!is_present)
// .border_color(if is_speaking {
// gpui::blue()
// } else if is_muted {
// gpui::red()
// } else {
// Hsla::default()
// }),
// )
// .children(followers.iter().filter_map(|follower_peer_id| {
// let follower = room
// .remote_participants()
// .values()
// .find_map(|p| (p.peer_id == *follower_peer_id).then_some(&p.user))
// .or_else(|| {
// (self.client.peer_id() == Some(*follower_peer_id)).then_some(current_user)
// })?
// .clone();
// Some(Avatar::new(follower.avatar_uri.clone()))
// }));
// Some(pile)
// }
// }