mirror of
https://github.com/zed-industries/zed.git
synced 2026-06-01 03:14:56 +07:00
992 lines
34 KiB
Rust
992 lines
34 KiB
Rust
mod persistence;
|
|
|
|
use client::UserStore;
|
|
use collections::HashMap;
|
|
use component::{ComponentId, ComponentMetadata, ComponentStatus, components};
|
|
use gpui::{
|
|
App, Entity, EventEmitter, FocusHandle, Focusable, Task, WeakEntity, Window, list, prelude::*,
|
|
};
|
|
use gpui::{ListState, ScrollHandle, ScrollStrategy, UniformListScrollHandle};
|
|
use language::LanguageRegistry;
|
|
use notifications::status_toast::StatusToast;
|
|
use persistence::ComponentPreviewDb;
|
|
use project::Project;
|
|
use std::{iter::Iterator, ops::Range, sync::Arc};
|
|
use ui::{
|
|
ButtonLike, Divider, HighlightedLabel, ListItem, ListSubHeader, Scrollbars, Tooltip,
|
|
WithScrollbar, prelude::*,
|
|
};
|
|
use ui_input::InputField;
|
|
use workspace::AppState;
|
|
use workspace::{
|
|
Item, ItemId, SerializableItem, Workspace, WorkspaceId, delete_unloaded_items, item::ItemEvent,
|
|
};
|
|
|
|
pub fn init(app_state: Arc<AppState>, cx: &mut App) {
|
|
workspace::register_serializable_item::<ComponentPreview>(cx);
|
|
|
|
cx.observe_new(move |workspace: &mut Workspace, _window, cx| {
|
|
let app_state = app_state.clone();
|
|
let project = workspace.project().clone();
|
|
let weak_workspace = cx.entity().downgrade();
|
|
|
|
workspace.register_action(
|
|
move |workspace, _: &workspace::OpenComponentPreview, window, cx| {
|
|
let app_state = app_state.clone();
|
|
|
|
let language_registry = app_state.languages.clone();
|
|
let user_store = app_state.user_store.clone();
|
|
|
|
let component_preview = cx.new(|cx| {
|
|
ComponentPreview::new(
|
|
weak_workspace.clone(),
|
|
project.clone(),
|
|
language_registry,
|
|
user_store,
|
|
None,
|
|
None,
|
|
window,
|
|
cx,
|
|
)
|
|
.expect("Failed to create component preview")
|
|
});
|
|
|
|
workspace.add_item_to_active_pane(
|
|
Box::new(component_preview),
|
|
None,
|
|
true,
|
|
window,
|
|
cx,
|
|
)
|
|
},
|
|
);
|
|
})
|
|
.detach();
|
|
}
|
|
|
|
enum PreviewEntry {
|
|
AllComponents,
|
|
Separator,
|
|
Component(ComponentMetadata, Option<Vec<usize>>),
|
|
SectionHeader(SharedString),
|
|
}
|
|
|
|
impl From<ComponentMetadata> for PreviewEntry {
|
|
fn from(component: ComponentMetadata) -> Self {
|
|
PreviewEntry::Component(component, None)
|
|
}
|
|
}
|
|
|
|
impl From<SharedString> for PreviewEntry {
|
|
fn from(section_header: SharedString) -> Self {
|
|
PreviewEntry::SectionHeader(section_header)
|
|
}
|
|
}
|
|
|
|
#[derive(Default, Debug, Clone, PartialEq, Eq)]
|
|
pub enum PreviewPage {
|
|
#[default]
|
|
AllComponents,
|
|
Component(ComponentId),
|
|
}
|
|
|
|
pub struct ComponentPreview {
|
|
active_page: PreviewPage,
|
|
reset_key: usize,
|
|
component_list: ListState,
|
|
entries: Vec<PreviewEntry>,
|
|
component_map: HashMap<ComponentId, ComponentMetadata>,
|
|
components: Vec<ComponentMetadata>,
|
|
cursor_index: usize,
|
|
filter_editor: Entity<InputField>,
|
|
filter_text: String,
|
|
focus_handle: FocusHandle,
|
|
language_registry: Arc<LanguageRegistry>,
|
|
nav_scroll_handle: UniformListScrollHandle,
|
|
project: Entity<Project>,
|
|
user_store: Entity<UserStore>,
|
|
workspace: WeakEntity<Workspace>,
|
|
workspace_id: Option<WorkspaceId>,
|
|
_view_scroll_handle: ScrollHandle,
|
|
}
|
|
|
|
impl ComponentPreview {
|
|
pub fn new(
|
|
workspace: WeakEntity<Workspace>,
|
|
project: Entity<Project>,
|
|
language_registry: Arc<LanguageRegistry>,
|
|
user_store: Entity<UserStore>,
|
|
selected_index: impl Into<Option<usize>>,
|
|
active_page: Option<PreviewPage>,
|
|
window: &mut Window,
|
|
cx: &mut Context<Self>,
|
|
) -> anyhow::Result<Self> {
|
|
let component_registry = Arc::new(components());
|
|
let sorted_components = component_registry.sorted_components();
|
|
let selected_index = selected_index.into().unwrap_or(0);
|
|
let active_page = active_page.unwrap_or(PreviewPage::AllComponents);
|
|
let filter_editor = cx.new(|cx| InputField::new(window, cx, "Find components or usages…"));
|
|
|
|
let component_list = ListState::new(
|
|
sorted_components.len(),
|
|
gpui::ListAlignment::Top,
|
|
px(1500.0),
|
|
);
|
|
|
|
let mut component_preview = Self {
|
|
active_page,
|
|
reset_key: 0,
|
|
component_list,
|
|
entries: Vec::new(),
|
|
component_map: component_registry.component_map(),
|
|
components: sorted_components,
|
|
cursor_index: selected_index,
|
|
filter_editor,
|
|
filter_text: String::new(),
|
|
focus_handle: cx.focus_handle(),
|
|
language_registry,
|
|
nav_scroll_handle: UniformListScrollHandle::new(),
|
|
project,
|
|
user_store,
|
|
workspace,
|
|
workspace_id: None,
|
|
_view_scroll_handle: ScrollHandle::new(),
|
|
};
|
|
|
|
if component_preview.cursor_index > 0 {
|
|
component_preview.scroll_to_preview(component_preview.cursor_index, cx);
|
|
}
|
|
|
|
component_preview.update_component_list(cx);
|
|
|
|
let focus_handle = component_preview.filter_editor.read(cx).focus_handle(cx);
|
|
window.focus(&focus_handle, cx);
|
|
|
|
Ok(component_preview)
|
|
}
|
|
|
|
pub fn active_page_id(&self, _cx: &App) -> ActivePageId {
|
|
match &self.active_page {
|
|
PreviewPage::AllComponents => ActivePageId::default(),
|
|
PreviewPage::Component(component_id) => ActivePageId(component_id.0.to_string()),
|
|
}
|
|
}
|
|
|
|
fn scroll_to_preview(&mut self, ix: usize, cx: &mut Context<Self>) {
|
|
self.component_list.scroll_to_reveal_item(ix);
|
|
self.cursor_index = ix;
|
|
cx.notify();
|
|
}
|
|
|
|
fn set_active_page(&mut self, page: PreviewPage, cx: &mut Context<Self>) {
|
|
if self.active_page == page {
|
|
// Force the current preview page to render again
|
|
self.reset_key = self.reset_key.wrapping_add(1);
|
|
} else {
|
|
self.active_page = page;
|
|
cx.emit(ItemEvent::UpdateTab);
|
|
}
|
|
cx.notify();
|
|
}
|
|
|
|
fn filtered_components(&self) -> Vec<ComponentMetadata> {
|
|
if self.filter_text.is_empty() {
|
|
return self.components.clone();
|
|
}
|
|
|
|
let filter = self.filter_text.to_lowercase();
|
|
self.components
|
|
.iter()
|
|
.filter(|component| {
|
|
let component_name = component.name().to_lowercase();
|
|
let scope_name = component.scope().to_string().to_lowercase();
|
|
let description = component.description().to_lowercase();
|
|
|
|
component_name.contains(&filter)
|
|
|| scope_name.contains(&filter)
|
|
|| description.contains(&filter)
|
|
})
|
|
.cloned()
|
|
.collect()
|
|
}
|
|
|
|
fn scope_ordered_entries(&self) -> Vec<PreviewEntry> {
|
|
use collections::HashMap;
|
|
|
|
let mut scope_groups: HashMap<
|
|
ComponentScope,
|
|
Vec<(ComponentMetadata, Option<Vec<usize>>)>,
|
|
> = HashMap::default();
|
|
let lowercase_filter = self.filter_text.to_lowercase();
|
|
|
|
for component in &self.components {
|
|
if self.filter_text.is_empty() {
|
|
scope_groups
|
|
.entry(component.scope())
|
|
.or_insert_with(Vec::new)
|
|
.push((component.clone(), None));
|
|
continue;
|
|
}
|
|
|
|
// let full_component_name = component.name();
|
|
let scopeless_name = component.scopeless_name();
|
|
let scope_name = component.scope().to_string();
|
|
let description = component.description();
|
|
|
|
let lowercase_scopeless = scopeless_name.to_lowercase();
|
|
let lowercase_scope = scope_name.to_lowercase();
|
|
let lowercase_desc = description.to_lowercase();
|
|
|
|
if lowercase_scopeless.contains(&lowercase_filter)
|
|
&& let Some(index) = lowercase_scopeless.find(&lowercase_filter)
|
|
{
|
|
let end = index + lowercase_filter.len();
|
|
|
|
if end <= scopeless_name.len() {
|
|
let mut positions = Vec::new();
|
|
for i in index..end {
|
|
if scopeless_name.is_char_boundary(i) {
|
|
positions.push(i);
|
|
}
|
|
}
|
|
|
|
if !positions.is_empty() {
|
|
scope_groups
|
|
.entry(component.scope())
|
|
.or_insert_with(Vec::new)
|
|
.push((component.clone(), Some(positions)));
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
|
|
if lowercase_scopeless.contains(&lowercase_filter)
|
|
|| lowercase_scope.contains(&lowercase_filter)
|
|
|| lowercase_desc.contains(&lowercase_filter)
|
|
{
|
|
scope_groups
|
|
.entry(component.scope())
|
|
.or_insert_with(Vec::new)
|
|
.push((component.clone(), None));
|
|
}
|
|
}
|
|
|
|
// Sort the components in each group
|
|
for components in scope_groups.values_mut() {
|
|
components.sort_by_key(|(c, _)| c.sort_name());
|
|
}
|
|
|
|
let mut entries = Vec::new();
|
|
|
|
// Always show all components first
|
|
entries.push(PreviewEntry::AllComponents);
|
|
|
|
let mut scopes: Vec<_> = scope_groups
|
|
.keys()
|
|
.filter(|scope| !matches!(**scope, ComponentScope::None))
|
|
.cloned()
|
|
.collect();
|
|
|
|
scopes.sort_by_key(|s| s.to_string());
|
|
|
|
for scope in scopes {
|
|
if let Some(components) = scope_groups.remove(&scope)
|
|
&& !components.is_empty()
|
|
{
|
|
entries.push(PreviewEntry::Separator);
|
|
entries.push(PreviewEntry::SectionHeader(scope.to_string().into()));
|
|
|
|
let mut sorted_components = components;
|
|
sorted_components.sort_by_key(|(component, _)| component.sort_name());
|
|
|
|
for (component, positions) in sorted_components {
|
|
entries.push(PreviewEntry::Component(component, positions));
|
|
}
|
|
}
|
|
}
|
|
|
|
// Add uncategorized components last
|
|
if let Some(components) = scope_groups.get(&ComponentScope::None)
|
|
&& !components.is_empty()
|
|
{
|
|
entries.push(PreviewEntry::Separator);
|
|
entries.push(PreviewEntry::SectionHeader("Uncategorized".into()));
|
|
let mut sorted_components = components.clone();
|
|
sorted_components.sort_by_key(|(c, _)| c.sort_name());
|
|
|
|
for (component, positions) in sorted_components {
|
|
entries.push(PreviewEntry::Component(component, positions));
|
|
}
|
|
}
|
|
|
|
entries
|
|
}
|
|
|
|
fn update_component_list(&mut self, cx: &mut Context<Self>) {
|
|
let entries = self.scope_ordered_entries();
|
|
let new_len = entries.len();
|
|
|
|
if new_len > 0 {
|
|
self.nav_scroll_handle
|
|
.scroll_to_item(0, ScrollStrategy::Top);
|
|
}
|
|
|
|
let filtered_components = self.filtered_components();
|
|
|
|
if !self.filter_text.is_empty()
|
|
&& !matches!(self.active_page, PreviewPage::AllComponents)
|
|
&& let PreviewPage::Component(ref component_id) = self.active_page
|
|
{
|
|
let component_still_visible = filtered_components
|
|
.iter()
|
|
.any(|component| component.id() == *component_id);
|
|
|
|
if !component_still_visible {
|
|
if !filtered_components.is_empty() {
|
|
let first_component = &filtered_components[0];
|
|
self.set_active_page(PreviewPage::Component(first_component.id()), cx);
|
|
} else {
|
|
self.set_active_page(PreviewPage::AllComponents, cx);
|
|
}
|
|
}
|
|
}
|
|
|
|
self.component_list = ListState::new(new_len, gpui::ListAlignment::Top, px(1500.0));
|
|
self.entries = entries;
|
|
|
|
cx.emit(ItemEvent::UpdateTab);
|
|
}
|
|
|
|
fn render_sidebar_entry(
|
|
&self,
|
|
ix: usize,
|
|
entry: &PreviewEntry,
|
|
cx: &Context<Self>,
|
|
) -> impl IntoElement + use<> {
|
|
match entry {
|
|
PreviewEntry::Component(component_metadata, highlight_positions) => {
|
|
let id = component_metadata.id();
|
|
let selected = self.active_page == PreviewPage::Component(id.clone());
|
|
let name = component_metadata.scopeless_name();
|
|
|
|
ListItem::new(ix)
|
|
.child(if let Some(_positions) = highlight_positions {
|
|
let name_lower = name.to_lowercase();
|
|
let filter_lower = self.filter_text.to_lowercase();
|
|
let valid_positions = if let Some(start) = name_lower.find(&filter_lower) {
|
|
let end = start + filter_lower.len();
|
|
(start..end).collect()
|
|
} else {
|
|
Vec::new()
|
|
};
|
|
if valid_positions.is_empty() {
|
|
Label::new(name).into_any_element()
|
|
} else {
|
|
HighlightedLabel::new(name, valid_positions).into_any_element()
|
|
}
|
|
} else {
|
|
Label::new(name).into_any_element()
|
|
})
|
|
.selectable(true)
|
|
.toggle_state(selected)
|
|
.inset(true)
|
|
.on_click(cx.listener(move |this, _, _, cx| {
|
|
let id = id.clone();
|
|
this.set_active_page(PreviewPage::Component(id), cx);
|
|
}))
|
|
.into_any_element()
|
|
}
|
|
PreviewEntry::SectionHeader(shared_string) => ListSubHeader::new(shared_string)
|
|
.inset(true)
|
|
.into_any_element(),
|
|
PreviewEntry::AllComponents => {
|
|
let selected = self.active_page == PreviewPage::AllComponents;
|
|
|
|
ListItem::new(ix)
|
|
.child(Label::new("All Components"))
|
|
.selectable(true)
|
|
.toggle_state(selected)
|
|
.inset(true)
|
|
.on_click(cx.listener(move |this, _, _, cx| {
|
|
this.set_active_page(PreviewPage::AllComponents, cx);
|
|
}))
|
|
.into_any_element()
|
|
}
|
|
PreviewEntry::Separator => ListItem::new(ix)
|
|
.disabled(true)
|
|
.child(div().w_full().py_2().child(Divider::horizontal()))
|
|
.into_any_element(),
|
|
}
|
|
}
|
|
|
|
fn render_scope_header(
|
|
&self,
|
|
_ix: usize,
|
|
title: SharedString,
|
|
_window: &Window,
|
|
_cx: &App,
|
|
) -> impl IntoElement {
|
|
h_flex()
|
|
.w_full()
|
|
.h_10()
|
|
.child(Headline::new(title).size(HeadlineSize::XSmall))
|
|
.child(Divider::horizontal())
|
|
}
|
|
|
|
fn render_preview(
|
|
&self,
|
|
component: &ComponentMetadata,
|
|
window: &mut Window,
|
|
cx: &mut App,
|
|
) -> impl IntoElement {
|
|
let name = component.scopeless_name();
|
|
let scope = component.scope();
|
|
|
|
let description = component.description();
|
|
|
|
// Build the content container
|
|
v_flex()
|
|
.py_2()
|
|
.child(
|
|
v_flex()
|
|
.border_1()
|
|
.border_color(cx.theme().colors().border)
|
|
.rounded_sm()
|
|
.w_full()
|
|
.gap_4()
|
|
.py_4()
|
|
.px_6()
|
|
.flex_none()
|
|
.child(
|
|
v_flex()
|
|
.gap_1()
|
|
.child(
|
|
h_flex().gap_1().text_xl().child(div().child(name)).when(
|
|
scope != ComponentScope::None,
|
|
|this| {
|
|
this.child(div().opacity(0.5).child(format!("({})", scope)))
|
|
},
|
|
),
|
|
)
|
|
.child(
|
|
div()
|
|
.text_ui_sm(cx)
|
|
.text_color(cx.theme().colors().text_muted)
|
|
.max_w(px(600.0))
|
|
.child(description),
|
|
),
|
|
),
|
|
)
|
|
.child((component.preview())(window, cx))
|
|
.into_any_element()
|
|
}
|
|
|
|
fn render_all_components(&self, cx: &Context<Self>) -> impl IntoElement {
|
|
v_flex()
|
|
.id("component-list")
|
|
.px_8()
|
|
.pt_4()
|
|
.size_full()
|
|
.child(
|
|
if self.filtered_components().is_empty() && !self.filter_text.is_empty() {
|
|
div()
|
|
.size_full()
|
|
.items_center()
|
|
.justify_center()
|
|
.text_color(cx.theme().colors().text_muted)
|
|
.child(format!("No components matching '{}'.", self.filter_text))
|
|
.into_any_element()
|
|
} else {
|
|
list(
|
|
self.component_list.clone(),
|
|
cx.processor(|this, ix, window, cx| {
|
|
if ix >= this.entries.len() {
|
|
return div().w_full().h_0().into_any_element();
|
|
}
|
|
|
|
let entry = &this.entries[ix];
|
|
|
|
match entry {
|
|
PreviewEntry::Component(component, _) => this
|
|
.render_preview(component, window, cx)
|
|
.into_any_element(),
|
|
PreviewEntry::SectionHeader(shared_string) => this
|
|
.render_scope_header(ix, shared_string.clone(), window, cx)
|
|
.into_any_element(),
|
|
PreviewEntry::AllComponents => {
|
|
div().w_full().h_0().into_any_element()
|
|
}
|
|
PreviewEntry::Separator => div().w_full().h_0().into_any_element(),
|
|
}
|
|
}),
|
|
)
|
|
.flex_grow_1()
|
|
.with_sizing_behavior(gpui::ListSizingBehavior::Auto)
|
|
.into_any_element()
|
|
},
|
|
)
|
|
}
|
|
|
|
fn render_component_page(
|
|
&mut self,
|
|
component_id: &ComponentId,
|
|
_window: &mut Window,
|
|
_cx: &mut Context<Self>,
|
|
) -> impl IntoElement {
|
|
let component = self.component_map.get(component_id);
|
|
|
|
if let Some(component) = component {
|
|
v_flex()
|
|
.id("render-component-page")
|
|
.flex_1()
|
|
.child(ComponentPreviewPage::new(component.clone(), self.reset_key))
|
|
.into_any_element()
|
|
} else {
|
|
v_flex()
|
|
.size_full()
|
|
.items_center()
|
|
.justify_center()
|
|
.child("Component not found")
|
|
.into_any_element()
|
|
}
|
|
}
|
|
|
|
fn test_status_toast(&self, cx: &mut Context<Self>) {
|
|
if let Some(workspace) = self.workspace.upgrade() {
|
|
workspace.update(cx, |workspace, cx| {
|
|
let status_toast =
|
|
StatusToast::new("`zed/new-notification-system` created!", cx, |this, _cx| {
|
|
this.icon(
|
|
Icon::new(IconName::GitBranch)
|
|
.size(IconSize::Small)
|
|
.color(Color::Muted),
|
|
)
|
|
.action("Open Pull Request", |_, cx| {
|
|
cx.open_url("https://github.com/")
|
|
})
|
|
});
|
|
workspace.toggle_status_toast(status_toast, cx)
|
|
});
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Render for ComponentPreview {
|
|
fn render(&mut self, window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
|
|
// TODO: move this into the struct
|
|
let current_filter = self.filter_editor.update(cx, |input, cx| {
|
|
if input.is_empty(cx) {
|
|
String::new()
|
|
} else {
|
|
input.text(cx)
|
|
}
|
|
});
|
|
|
|
if current_filter != self.filter_text {
|
|
self.filter_text = current_filter;
|
|
self.update_component_list(cx);
|
|
}
|
|
let sidebar_entries = self.scope_ordered_entries();
|
|
let active_page = self.active_page.clone();
|
|
let background_color = cx.theme().colors().editor_background;
|
|
|
|
h_flex()
|
|
.id("component-preview")
|
|
.key_context("ComponentPreview")
|
|
.items_start()
|
|
.overflow_hidden()
|
|
.size_full()
|
|
.track_focus(&self.focus_handle)
|
|
.bg(background_color)
|
|
.child(
|
|
v_flex()
|
|
.h_full()
|
|
.border_r_1()
|
|
.border_color(cx.theme().colors().border)
|
|
.child(
|
|
div()
|
|
.size_full()
|
|
.child(
|
|
gpui::uniform_list(
|
|
"component-nav",
|
|
sidebar_entries.len(),
|
|
cx.processor(move |this, range: Range<usize>, _window, cx| {
|
|
range
|
|
.filter(|ix| ix < &sidebar_entries.len())
|
|
.map(|ix| {
|
|
this.render_sidebar_entry(
|
|
ix,
|
|
&sidebar_entries[ix],
|
|
cx,
|
|
)
|
|
})
|
|
.collect()
|
|
}),
|
|
)
|
|
.track_scroll(&self.nav_scroll_handle)
|
|
.p_2p5()
|
|
.w(px(231.)) // Matches perfectly with the size of the "Component Preview" tab, if that's the first one in the pane
|
|
.h_full()
|
|
.flex_1(),
|
|
)
|
|
.custom_scrollbars(
|
|
Scrollbars::new(ui::ScrollAxes::Vertical)
|
|
.with_track_along(ui::ScrollAxes::Vertical, background_color)
|
|
.tracked_scroll_handle(&self.nav_scroll_handle),
|
|
window,
|
|
cx,
|
|
),
|
|
)
|
|
.child(
|
|
div()
|
|
.w_full()
|
|
.p_2p5()
|
|
.border_t_1()
|
|
.border_color(cx.theme().colors().border)
|
|
.child(
|
|
Button::new("toast-test", "Launch Toast")
|
|
.full_width()
|
|
.on_click(cx.listener({
|
|
move |this, _, _window, cx| {
|
|
this.test_status_toast(cx);
|
|
cx.notify();
|
|
}
|
|
})),
|
|
),
|
|
),
|
|
)
|
|
.child(
|
|
v_flex()
|
|
.flex_1()
|
|
.size_full()
|
|
.child(
|
|
div()
|
|
.p_2()
|
|
.w_full()
|
|
.border_b_1()
|
|
.border_color(cx.theme().colors().border)
|
|
.child(self.filter_editor.clone()),
|
|
)
|
|
.child(
|
|
div().id("content-area").flex_1().overflow_y_scroll().child(
|
|
match active_page {
|
|
PreviewPage::AllComponents => {
|
|
self.render_all_components(cx).into_any_element()
|
|
}
|
|
PreviewPage::Component(id) => self
|
|
.render_component_page(&id, window, cx)
|
|
.into_any_element(),
|
|
},
|
|
),
|
|
),
|
|
)
|
|
}
|
|
}
|
|
|
|
impl EventEmitter<ItemEvent> for ComponentPreview {}
|
|
|
|
impl Focusable for ComponentPreview {
|
|
fn focus_handle(&self, _: &App) -> gpui::FocusHandle {
|
|
self.focus_handle.clone()
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash)]
|
|
pub struct ActivePageId(pub String);
|
|
|
|
impl Default for ActivePageId {
|
|
fn default() -> Self {
|
|
ActivePageId("AllComponents".to_string())
|
|
}
|
|
}
|
|
|
|
impl From<ComponentId> for ActivePageId {
|
|
fn from(id: ComponentId) -> Self {
|
|
Self(id.0.to_string())
|
|
}
|
|
}
|
|
|
|
impl Item for ComponentPreview {
|
|
type Event = ItemEvent;
|
|
|
|
fn tab_content_text(&self, _detail: usize, _cx: &App) -> SharedString {
|
|
"Component Preview".into()
|
|
}
|
|
|
|
fn telemetry_event_text(&self) -> Option<&'static str> {
|
|
None
|
|
}
|
|
|
|
fn show_toolbar(&self) -> bool {
|
|
false
|
|
}
|
|
|
|
fn can_split(&self) -> bool {
|
|
true
|
|
}
|
|
|
|
fn clone_on_split(
|
|
&self,
|
|
_workspace_id: Option<WorkspaceId>,
|
|
window: &mut Window,
|
|
cx: &mut Context<Self>,
|
|
) -> Task<Option<gpui::Entity<Self>>>
|
|
where
|
|
Self: Sized,
|
|
{
|
|
let language_registry = self.language_registry.clone();
|
|
let user_store = self.user_store.clone();
|
|
let weak_workspace = self.workspace.clone();
|
|
let project = self.project.clone();
|
|
let selected_index = self.cursor_index;
|
|
let active_page = self.active_page.clone();
|
|
|
|
let self_result = Self::new(
|
|
weak_workspace,
|
|
project,
|
|
language_registry,
|
|
user_store,
|
|
selected_index,
|
|
Some(active_page),
|
|
window,
|
|
cx,
|
|
);
|
|
|
|
Task::ready(match self_result {
|
|
Ok(preview) => Some(cx.new(|_cx| preview)),
|
|
Err(e) => {
|
|
log::error!("Failed to clone component preview: {}", e);
|
|
None
|
|
}
|
|
})
|
|
}
|
|
|
|
fn to_item_events(event: &Self::Event, f: &mut dyn FnMut(workspace::item::ItemEvent)) {
|
|
f(*event)
|
|
}
|
|
|
|
fn added_to_workspace(
|
|
&mut self,
|
|
workspace: &mut Workspace,
|
|
window: &mut Window,
|
|
cx: &mut Context<Self>,
|
|
) {
|
|
self.workspace_id = workspace.database_id();
|
|
|
|
let focus_handle = self.filter_editor.read(cx).focus_handle(cx);
|
|
window.focus(&focus_handle, cx);
|
|
}
|
|
}
|
|
|
|
impl SerializableItem for ComponentPreview {
|
|
fn serialized_item_kind() -> &'static str {
|
|
"ComponentPreview"
|
|
}
|
|
|
|
fn deserialize(
|
|
project: Entity<Project>,
|
|
workspace: WeakEntity<Workspace>,
|
|
workspace_id: WorkspaceId,
|
|
item_id: ItemId,
|
|
window: &mut Window,
|
|
cx: &mut App,
|
|
) -> Task<anyhow::Result<Entity<Self>>> {
|
|
let deserialized_active_page =
|
|
match ComponentPreviewDb::global(cx).get_active_page(item_id, workspace_id) {
|
|
Ok(page) => {
|
|
if let Some(page) = page {
|
|
ActivePageId(page)
|
|
} else {
|
|
ActivePageId::default()
|
|
}
|
|
}
|
|
Err(_) => ActivePageId::default(),
|
|
};
|
|
|
|
let user_store = project.read(cx).user_store();
|
|
let language_registry = project.read(cx).languages().clone();
|
|
let preview_page = if deserialized_active_page.0 == ActivePageId::default().0 {
|
|
Some(PreviewPage::default())
|
|
} else {
|
|
let component_str = deserialized_active_page.0;
|
|
let component_registry = components();
|
|
let all_components = component_registry.components();
|
|
let found_component = all_components.iter().find(|c| c.id().0 == component_str);
|
|
|
|
if let Some(component) = found_component {
|
|
Some(PreviewPage::Component(component.id()))
|
|
} else {
|
|
Some(PreviewPage::default())
|
|
}
|
|
};
|
|
|
|
window.spawn(cx, async move |cx| {
|
|
let user_store = user_store.clone();
|
|
let language_registry = language_registry.clone();
|
|
let weak_workspace = workspace.clone();
|
|
let project = project.clone();
|
|
cx.update(move |window, cx| {
|
|
Ok(cx.new(|cx| {
|
|
ComponentPreview::new(
|
|
weak_workspace,
|
|
project,
|
|
language_registry,
|
|
user_store,
|
|
None,
|
|
preview_page,
|
|
window,
|
|
cx,
|
|
)
|
|
.expect("Failed to create component preview")
|
|
}))
|
|
})?
|
|
})
|
|
}
|
|
|
|
fn cleanup(
|
|
workspace_id: WorkspaceId,
|
|
alive_items: Vec<ItemId>,
|
|
_window: &mut Window,
|
|
cx: &mut App,
|
|
) -> Task<anyhow::Result<()>> {
|
|
delete_unloaded_items(
|
|
alive_items,
|
|
workspace_id,
|
|
"component_previews",
|
|
&ComponentPreviewDb::global(cx),
|
|
cx,
|
|
)
|
|
}
|
|
|
|
fn serialize(
|
|
&mut self,
|
|
_workspace: &mut Workspace,
|
|
item_id: ItemId,
|
|
_closing: bool,
|
|
_window: &mut Window,
|
|
cx: &mut Context<Self>,
|
|
) -> Option<Task<anyhow::Result<()>>> {
|
|
let active_page = self.active_page_id(cx);
|
|
let workspace_id = self.workspace_id?;
|
|
let db = ComponentPreviewDb::global(cx);
|
|
Some(cx.background_spawn(async move {
|
|
db.save_active_page(item_id, workspace_id, active_page.0)
|
|
.await
|
|
}))
|
|
}
|
|
|
|
fn should_serialize(&self, event: &Self::Event) -> bool {
|
|
matches!(event, ItemEvent::UpdateTab)
|
|
}
|
|
}
|
|
|
|
// TODO: use language registry to allow rendering markdown
|
|
#[derive(IntoElement)]
|
|
pub struct ComponentPreviewPage {
|
|
// languages: Arc<LanguageRegistry>,
|
|
component: ComponentMetadata,
|
|
reset_key: usize,
|
|
}
|
|
|
|
impl ComponentPreviewPage {
|
|
pub fn new(
|
|
component: ComponentMetadata,
|
|
reset_key: usize,
|
|
// languages: Arc<LanguageRegistry>
|
|
) -> Self {
|
|
Self {
|
|
// languages,
|
|
component,
|
|
reset_key,
|
|
}
|
|
}
|
|
|
|
/// Renders the component status when it would be useful
|
|
///
|
|
/// Doesn't render if the component is `ComponentStatus::Live`
|
|
/// as that is the default state
|
|
fn render_component_status(&self, cx: &App) -> Option<impl IntoElement> {
|
|
let status = self.component.status();
|
|
let status_description = status.description().to_string();
|
|
|
|
let color = match status {
|
|
ComponentStatus::Deprecated => Color::Error,
|
|
ComponentStatus::EngineeringReady => Color::Info,
|
|
ComponentStatus::Live => Color::Success,
|
|
ComponentStatus::WorkInProgress => Color::Warning,
|
|
};
|
|
|
|
if status != ComponentStatus::Live {
|
|
Some(
|
|
ButtonLike::new("component_status")
|
|
.child(
|
|
div()
|
|
.px_1p5()
|
|
.rounded_sm()
|
|
.bg(color.color(cx).alpha(0.12))
|
|
.child(
|
|
Label::new(status.to_string())
|
|
.size(LabelSize::Small)
|
|
.color(color),
|
|
),
|
|
)
|
|
.tooltip(Tooltip::text(status_description))
|
|
.disabled(true),
|
|
)
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
fn render_header(&self, _: &Window, cx: &App) -> impl IntoElement {
|
|
v_flex()
|
|
.min_w_0()
|
|
.w_full()
|
|
.p_12()
|
|
.gap_6()
|
|
.bg(cx.theme().colors().surface_background)
|
|
.border_b_1()
|
|
.border_color(cx.theme().colors().border)
|
|
.child(
|
|
v_flex()
|
|
.gap_1()
|
|
.child(
|
|
Label::new(self.component.scope().to_string())
|
|
.size(LabelSize::Small)
|
|
.color(Color::Muted),
|
|
)
|
|
.child(
|
|
h_flex()
|
|
.gap_2()
|
|
.child(
|
|
Headline::new(self.component.scopeless_name())
|
|
.size(HeadlineSize::XLarge),
|
|
)
|
|
.children(self.render_component_status(cx)),
|
|
),
|
|
)
|
|
.child(Label::new(self.component.description()).size(LabelSize::Small))
|
|
}
|
|
|
|
fn render_preview(&self, window: &mut Window, cx: &mut App) -> impl IntoElement {
|
|
v_flex()
|
|
.id(("component-preview", self.reset_key))
|
|
.size_full()
|
|
.flex_1()
|
|
.px_12()
|
|
.py_6()
|
|
.bg(cx.theme().colors().editor_background)
|
|
.child((self.component.preview())(window, cx))
|
|
}
|
|
}
|
|
|
|
impl RenderOnce for ComponentPreviewPage {
|
|
fn render(self, window: &mut Window, cx: &mut App) -> impl IntoElement {
|
|
v_flex()
|
|
.size_full()
|
|
.flex_1()
|
|
.overflow_x_hidden()
|
|
.child(self.render_header(window, cx))
|
|
.child(self.render_preview(window, cx))
|
|
}
|
|
}
|