This change to make sure notification will display when WebView render on the drawer. 
635 lines
25 KiB
Rust
635 lines
25 KiB
Rust
use std::{sync::Arc, time::Duration};
|
|
|
|
use fake::Fake;
|
|
use gpui::{
|
|
actions, div, prelude::FluentBuilder as _, px, AppContext, FocusHandle, FocusableView,
|
|
InteractiveElement as _, IntoElement, ParentElement, Render, SharedString, Styled, Task, Timer,
|
|
View, ViewContext, VisualContext as _, WeakView, WindowContext,
|
|
};
|
|
|
|
use ui::{
|
|
button::{Button, ButtonVariant, ButtonVariants as _},
|
|
checkbox::Checkbox,
|
|
date_picker::DatePicker,
|
|
dropdown::Dropdown,
|
|
h_flex,
|
|
input::TextInput,
|
|
list::{List, ListDelegate, ListItem},
|
|
notification::{Notification, NotificationType},
|
|
theme::ActiveTheme as _,
|
|
v_flex,
|
|
webview::WebView,
|
|
ContextModal as _, Icon, IconName, Placement,
|
|
};
|
|
|
|
actions!(modal_story, [TestAction]);
|
|
|
|
pub struct ListItemDeletegate {
|
|
story: WeakView<ModalStory>,
|
|
confirmed_index: Option<usize>,
|
|
selected_index: Option<usize>,
|
|
items: Vec<Arc<String>>,
|
|
matches: Vec<Arc<String>>,
|
|
}
|
|
|
|
impl ListDelegate for ListItemDeletegate {
|
|
type Item = ListItem;
|
|
|
|
fn items_count(&self, _: &AppContext) -> usize {
|
|
self.matches.len()
|
|
}
|
|
|
|
fn confirmed_index(&self, _: &AppContext) -> Option<usize> {
|
|
self.confirmed_index
|
|
}
|
|
|
|
fn perform_search(&mut self, query: &str, cx: &mut ViewContext<List<Self>>) -> Task<()> {
|
|
let query = query.to_string();
|
|
cx.spawn(move |this, mut cx| async move {
|
|
// Simulate a slow search.
|
|
let sleep = (0.05..0.1).fake();
|
|
Timer::after(Duration::from_secs_f64(sleep)).await;
|
|
|
|
this.update(&mut cx, |this, cx| {
|
|
this.delegate_mut().matches = this
|
|
.delegate()
|
|
.items
|
|
.iter()
|
|
.filter(|item| item.to_lowercase().contains(&query.to_lowercase()))
|
|
.cloned()
|
|
.collect();
|
|
cx.notify();
|
|
})
|
|
.ok();
|
|
})
|
|
}
|
|
|
|
fn render_item(&self, ix: usize, _: &mut ViewContext<List<Self>>) -> Option<Self::Item> {
|
|
let confirmed = Some(ix) == self.confirmed_index;
|
|
let selected = Some(ix) == self.selected_index;
|
|
|
|
if let Some(item) = self.matches.get(ix) {
|
|
let list_item = ListItem::new(("item", ix))
|
|
.check_icon(ui::IconName::Check)
|
|
.confirmed(confirmed)
|
|
.selected(selected)
|
|
.py_1()
|
|
.px_3()
|
|
.child(
|
|
h_flex()
|
|
.items_center()
|
|
.justify_between()
|
|
.child(item.to_string()),
|
|
)
|
|
.suffix(|_| {
|
|
Button::new("like")
|
|
.icon(IconName::Heart)
|
|
.with_variant(ButtonVariant::Ghost)
|
|
.size(px(18.))
|
|
.on_click(move |_, cx| {
|
|
cx.stop_propagation();
|
|
cx.prevent_default();
|
|
|
|
println!("You have clicked like.");
|
|
})
|
|
});
|
|
Some(list_item)
|
|
} else {
|
|
None
|
|
}
|
|
}
|
|
|
|
fn render_empty(&self, cx: &mut ViewContext<List<Self>>) -> impl IntoElement {
|
|
v_flex()
|
|
.size_full()
|
|
.child(
|
|
Icon::new(IconName::Inbox)
|
|
.size(px(50.))
|
|
.text_color(cx.theme().muted_foreground),
|
|
)
|
|
.child("No matches found")
|
|
.items_center()
|
|
.justify_center()
|
|
.p_3()
|
|
.bg(cx.theme().muted)
|
|
.text_color(cx.theme().muted_foreground)
|
|
}
|
|
|
|
fn cancel(&mut self, cx: &mut ViewContext<List<Self>>) {
|
|
if let Some(story) = self.story.upgrade() {
|
|
cx.update_view(&story, |story, cx| story.close_drawer(cx));
|
|
}
|
|
}
|
|
|
|
fn confirm(&mut self, ix: Option<usize>, cx: &mut ViewContext<List<Self>>) {
|
|
if let Some(story) = self.story.upgrade() {
|
|
cx.update_view(&story, |story, cx| {
|
|
if let Some(ix) = ix {
|
|
self.confirmed_index = Some(ix);
|
|
if let Some(item) = self.matches.get(ix) {
|
|
story.selected_value = Some(SharedString::from(item.to_string()));
|
|
}
|
|
}
|
|
cx.close_drawer();
|
|
});
|
|
}
|
|
}
|
|
|
|
fn set_selected_index(&mut self, ix: Option<usize>, cx: &mut ViewContext<List<Self>>) {
|
|
self.selected_index = ix;
|
|
|
|
if let Some(_) = ix {
|
|
cx.notify();
|
|
}
|
|
}
|
|
}
|
|
|
|
pub struct ModalStory {
|
|
focus_handle: FocusHandle,
|
|
drawer_placement: Option<Placement>,
|
|
selected_value: Option<SharedString>,
|
|
list: View<List<ListItemDeletegate>>,
|
|
input1: View<TextInput>,
|
|
input2: View<TextInput>,
|
|
date_picker: View<DatePicker>,
|
|
dropdown: View<Dropdown<Vec<String>>>,
|
|
modal_overlay: bool,
|
|
model_show_close: bool,
|
|
model_padding: bool,
|
|
model_keyboard: bool,
|
|
}
|
|
|
|
impl super::Story for ModalStory {
|
|
fn title() -> &'static str {
|
|
"Modal"
|
|
}
|
|
|
|
fn description() -> &'static str {
|
|
"Modal & Drawer use examples"
|
|
}
|
|
|
|
fn new_view(cx: &mut WindowContext) -> View<impl gpui::FocusableView> {
|
|
Self::view(cx)
|
|
}
|
|
}
|
|
|
|
impl ModalStory {
|
|
pub fn view(cx: &mut WindowContext) -> View<Self> {
|
|
cx.new_view(Self::new)
|
|
}
|
|
|
|
fn new(cx: &mut ViewContext<Self>) -> Self {
|
|
let items: Vec<Arc<String>> = [
|
|
"Baguette (France)",
|
|
"Baklava (Turkey)",
|
|
"Beef Wellington (UK)",
|
|
"Biryani (India)",
|
|
"Borscht (Ukraine)",
|
|
"Bratwurst (Germany)",
|
|
"Bulgogi (Korea)",
|
|
"Burrito (USA)",
|
|
"Ceviche (Peru)",
|
|
"Chicken Tikka Masala (India)",
|
|
"Churrasco (Brazil)",
|
|
"Couscous (North Africa)",
|
|
"Croissant (France)",
|
|
"Dim Sum (China)",
|
|
"Empanada (Argentina)",
|
|
"Fajitas (Mexico)",
|
|
"Falafel (Middle East)",
|
|
"Feijoada (Brazil)",
|
|
"Fish and Chips (UK)",
|
|
"Fondue (Switzerland)",
|
|
"Goulash (Hungary)",
|
|
"Haggis (Scotland)",
|
|
"Kebab (Middle East)",
|
|
"Kimchi (Korea)",
|
|
"Lasagna (Italy)",
|
|
"Maple Syrup Pancakes (Canada)",
|
|
"Moussaka (Greece)",
|
|
"Pad Thai (Thailand)",
|
|
"Paella (Spain)",
|
|
"Pancakes (USA)",
|
|
"Pasta Carbonara (Italy)",
|
|
"Pavlova (Australia)",
|
|
"Peking Duck (China)",
|
|
"Pho (Vietnam)",
|
|
"Pierogi (Poland)",
|
|
"Pizza (Italy)",
|
|
"Poutine (Canada)",
|
|
"Pretzel (Germany)",
|
|
"Ramen (Japan)",
|
|
"Rendang (Indonesia)",
|
|
"Sashimi (Japan)",
|
|
"Satay (Indonesia)",
|
|
"Shepherd's Pie (Ireland)",
|
|
"Sushi (Japan)",
|
|
"Tacos (Mexico)",
|
|
"Tandoori Chicken (India)",
|
|
"Tortilla (Spain)",
|
|
"Tzatziki (Greece)",
|
|
"Wiener Schnitzel (Austria)",
|
|
]
|
|
.iter()
|
|
.map(|s| Arc::new(s.to_string()))
|
|
.collect();
|
|
|
|
let story = cx.view().downgrade();
|
|
let delegate = ListItemDeletegate {
|
|
story,
|
|
selected_index: None,
|
|
confirmed_index: None,
|
|
items: items.clone(),
|
|
matches: items.clone(),
|
|
};
|
|
let list = cx.new_view(|cx| {
|
|
let mut list = List::new(delegate, cx);
|
|
list.focus(cx);
|
|
list
|
|
});
|
|
|
|
let input1 = cx.new_view(|cx| TextInput::new(cx).placeholder("Your Name"));
|
|
let input2 = cx.new_view(|cx| TextInput::new(cx).placeholder("Input on the Window"));
|
|
let date_picker =
|
|
cx.new_view(|cx| DatePicker::new("birthday-picker", cx).placeholder("Date of Birth"));
|
|
let dropdown = cx.new_view(|cx| {
|
|
Dropdown::new(
|
|
"dropdown1",
|
|
vec![
|
|
"Option 1".to_string(),
|
|
"Option 2".to_string(),
|
|
"Option 3".to_string(),
|
|
],
|
|
None,
|
|
cx,
|
|
)
|
|
});
|
|
|
|
Self {
|
|
focus_handle: cx.focus_handle(),
|
|
drawer_placement: None,
|
|
selected_value: None,
|
|
list,
|
|
input1,
|
|
input2,
|
|
date_picker,
|
|
dropdown,
|
|
modal_overlay: true,
|
|
model_show_close: true,
|
|
model_padding: true,
|
|
model_keyboard: true,
|
|
}
|
|
}
|
|
|
|
fn open_drawer_at(&mut self, placement: Placement, cx: &mut ViewContext<Self>) {
|
|
let input = self.input1.clone();
|
|
let date_picker = self.date_picker.clone();
|
|
let list = self.list.clone();
|
|
|
|
let list_h = match placement {
|
|
Placement::Left | Placement::Right => px(400.),
|
|
Placement::Top | Placement::Bottom => px(160.),
|
|
};
|
|
|
|
let overlay = self.modal_overlay;
|
|
cx.open_drawer_at(placement, move |this, cx| {
|
|
this.overlay(overlay)
|
|
.size(px(400.))
|
|
.title("Drawer Title")
|
|
.gap_4()
|
|
.child(input.clone())
|
|
.child(date_picker.clone())
|
|
.child(
|
|
Button::new("send-notification")
|
|
.child("Test Notification")
|
|
.on_click(|_, cx| {
|
|
cx.push_notification("Hello this is message from Drawer.")
|
|
}),
|
|
)
|
|
.child(
|
|
div()
|
|
.border_1()
|
|
.border_color(cx.theme().border)
|
|
.rounded_md()
|
|
.size_full()
|
|
.flex_1()
|
|
.h(list_h)
|
|
.child(list.clone()),
|
|
)
|
|
.footer(
|
|
h_flex()
|
|
.gap_6()
|
|
.items_center()
|
|
.child(Button::new("confirm").primary().label("Confirm").on_click(
|
|
|_, cx| {
|
|
cx.close_drawer();
|
|
},
|
|
))
|
|
.child(Button::new("cancel").label("Cancel").on_click(|_, cx| {
|
|
cx.close_drawer();
|
|
})),
|
|
)
|
|
});
|
|
}
|
|
|
|
fn close_drawer(&mut self, cx: &mut ViewContext<Self>) {
|
|
self.drawer_placement = None;
|
|
cx.notify();
|
|
}
|
|
|
|
fn show_modal(&mut self, cx: &mut ViewContext<Self>) {
|
|
let overlay = self.modal_overlay;
|
|
let modal_show_close = self.model_show_close;
|
|
let modal_padding = self.model_padding;
|
|
let input1 = self.input1.clone();
|
|
let date_picker = self.date_picker.clone();
|
|
let dropdown = self.dropdown.clone();
|
|
let view = cx.view().clone();
|
|
let keyboard = self.model_keyboard;
|
|
|
|
cx.open_modal(move |modal, _| {
|
|
modal
|
|
.title("Form Modal")
|
|
.overlay(overlay)
|
|
.keyboard(keyboard)
|
|
.show_close(modal_show_close)
|
|
.when(!modal_padding, |this| this.p(px(0.)))
|
|
.child(
|
|
v_flex()
|
|
.gap_3()
|
|
.child("This is a modal dialog.")
|
|
.child("You can put anything here.")
|
|
.child(input1.clone())
|
|
.child(dropdown.clone())
|
|
.child(date_picker.clone()),
|
|
)
|
|
.footer(
|
|
h_flex()
|
|
.gap_6()
|
|
.items_center()
|
|
.child(Button::new("confirm").primary().label("Confirm").on_click({
|
|
let view = view.clone();
|
|
let input1 = input1.clone();
|
|
let date_picker = date_picker.clone();
|
|
move |_, cx| {
|
|
cx.close_modal();
|
|
|
|
view.update(cx, |view, cx| {
|
|
view.selected_value = Some(
|
|
format!(
|
|
"Hello, {}, date: {}",
|
|
input1.read(cx).text(),
|
|
date_picker.read(cx).date()
|
|
)
|
|
.into(),
|
|
)
|
|
});
|
|
}
|
|
}))
|
|
.child(Button::new("new-modal").label("Open Other Modal").on_click(
|
|
move |_, cx| {
|
|
cx.open_modal(move |modal, _| {
|
|
modal
|
|
.title("Other Modal")
|
|
.child("This is another modal.")
|
|
.min_h(px(300.))
|
|
});
|
|
},
|
|
))
|
|
.child(
|
|
Button::new("cancel")
|
|
.label("Cancel")
|
|
.on_click(move |_, cx| {
|
|
cx.close_modal();
|
|
}),
|
|
),
|
|
)
|
|
});
|
|
|
|
self.input1.focus_handle(cx).focus(cx);
|
|
}
|
|
|
|
fn on_action_test_action(&mut self, _: &TestAction, cx: &mut ViewContext<Self>) {
|
|
cx.push_notification("You have clicked the TestAction.");
|
|
}
|
|
}
|
|
|
|
impl FocusableView for ModalStory {
|
|
fn focus_handle(&self, _cx: &gpui::AppContext) -> FocusHandle {
|
|
self.focus_handle.clone()
|
|
}
|
|
}
|
|
|
|
impl Render for ModalStory {
|
|
fn render(&mut self, cx: &mut ViewContext<Self>) -> impl IntoElement {
|
|
div()
|
|
.id("modal-story")
|
|
.track_focus(&self.focus_handle)
|
|
.on_action(cx.listener(Self::on_action_test_action))
|
|
.size_full()
|
|
.child(
|
|
v_flex()
|
|
.gap_6()
|
|
.child(
|
|
h_flex()
|
|
.items_center()
|
|
.gap_3()
|
|
.child(
|
|
Checkbox::new("modal-overlay")
|
|
.label("Modal Overlay")
|
|
.checked(self.modal_overlay)
|
|
.on_click(cx.listener(|view, _, cx| {
|
|
view.modal_overlay = !view.modal_overlay;
|
|
cx.notify();
|
|
})),
|
|
)
|
|
.child(
|
|
Checkbox::new("modal-show-close")
|
|
.label("Model Close Button")
|
|
.checked(self.model_show_close)
|
|
.on_click(cx.listener(|view, _, cx| {
|
|
view.model_show_close = !view.model_show_close;
|
|
cx.notify();
|
|
})),
|
|
)
|
|
.child(
|
|
Checkbox::new("modal-padding")
|
|
.label("Model Padding")
|
|
.checked(self.model_padding)
|
|
.on_click(cx.listener(|view, _, cx| {
|
|
view.model_padding = !view.model_padding;
|
|
cx.notify();
|
|
})),
|
|
)
|
|
.child(
|
|
Checkbox::new("modal-keyboard")
|
|
.label("Keyboard")
|
|
.checked(self.model_keyboard)
|
|
.on_click(cx.listener(|view, _, cx| {
|
|
view.model_keyboard = !view.model_keyboard;
|
|
cx.notify();
|
|
})),
|
|
),
|
|
)
|
|
.child(
|
|
h_flex()
|
|
.gap_2()
|
|
.child("Test Focus Back")
|
|
.child(self.input2.clone())
|
|
.child(
|
|
Button::new("test-action")
|
|
.label("Test Action")
|
|
.flex_shrink_0()
|
|
.on_click(|_, cx| {
|
|
cx.dispatch_action(Box::new(TestAction));
|
|
}).tooltip("This button for test dispatch action, to make sure when Modal close,\nthis still can handle the action."),
|
|
),
|
|
)
|
|
.child(
|
|
h_flex()
|
|
.items_start()
|
|
.gap_3()
|
|
.flex_wrap()
|
|
.child(
|
|
Button::new("webview")
|
|
.label("Open WebView")
|
|
.on_click(cx.listener(|_, _, cx| {
|
|
let webview = cx.new_view(|cx| {
|
|
let webview = ui::wry::WebViewBuilder::new()
|
|
.build_as_child(&cx.raw_window_handle())
|
|
.unwrap();
|
|
|
|
WebView::new(cx, webview)
|
|
});
|
|
webview.update(cx, |webview, _| {
|
|
webview.load_url("https://github.com/explore");
|
|
});
|
|
cx.open_drawer(move |drawer, cx| {
|
|
let height = cx.window_bounds().get_bounds().size.height;
|
|
let webview_bounds = webview.read(cx).bounds();
|
|
|
|
drawer
|
|
.title("WebView Title")
|
|
.p_0()
|
|
.child(
|
|
div()
|
|
.h(height - webview_bounds.origin.y)
|
|
.child(webview.clone())
|
|
)
|
|
});
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-drawer-left")
|
|
.label("Left Drawer...")
|
|
.on_click(cx.listener(|this, _, cx| {
|
|
this.open_drawer_at(Placement::Left, cx)
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-drawer-top")
|
|
.label("Top Drawer...")
|
|
.on_click(cx.listener(|this, _, cx| {
|
|
this.open_drawer_at(Placement::Top, cx)
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-drawer")
|
|
.label("Right Drawer...")
|
|
.on_click(cx.listener(|this, _, cx| {
|
|
this.open_drawer_at(Placement::Right, cx)
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-drawer")
|
|
.label("Bottom Drawer...")
|
|
.on_click(cx.listener(|this, _, cx| {
|
|
this.open_drawer_at(Placement::Bottom, cx)
|
|
})),
|
|
),
|
|
)
|
|
.when_some(self.selected_value.clone(), |this, selected_value| {
|
|
this.child(
|
|
h_flex().gap_1().child("You have selected:").child(
|
|
div()
|
|
.child(selected_value.to_string())
|
|
.text_color(gpui::red()),
|
|
),
|
|
)
|
|
})
|
|
.child(
|
|
Button::new("show-modal")
|
|
.label("Open Modal...")
|
|
.on_click(cx.listener(|this, _, cx| this.show_modal(cx))),
|
|
)
|
|
.child(
|
|
h_flex()
|
|
.gap_3()
|
|
.flex_wrap()
|
|
.child(
|
|
Button::new("show-notify-info")
|
|
.label("Info Notify...")
|
|
.on_click(cx.listener(|_, _, cx| {
|
|
cx.push_notification(
|
|
"You have been saved file successfully.",
|
|
)
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-notify-error")
|
|
.label("Error Notify...")
|
|
.on_click(cx.listener(|_, _, cx| {
|
|
cx.push_notification((
|
|
NotificationType::Error,
|
|
"There have some error occurred. Please try again later.",
|
|
))
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-notify-success")
|
|
.label("Success Notify...")
|
|
.on_click(cx.listener(|_, _, cx| {
|
|
cx.push_notification((
|
|
NotificationType::Success,
|
|
"We have received your payment successfully.",
|
|
))
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-notify-warning")
|
|
.label("Warning Notify...")
|
|
.on_click(cx.listener(|_, _, cx| {
|
|
struct WarningNotification;
|
|
cx.push_notification(Notification::warning(
|
|
"The network is not stable, please check your connection.",
|
|
).id1::<WarningNotification>("test"))
|
|
})),
|
|
)
|
|
.child(
|
|
Button::new("show-notify-warning")
|
|
.label("Notification with Title")
|
|
.on_click(cx.listener(|_, _, cx| {
|
|
struct TestNotification;
|
|
|
|
cx.push_notification(
|
|
Notification::new(
|
|
"你已经成功保存了文件,但是有一些警告信息需要你注意。",
|
|
)
|
|
.id::<TestNotification>()
|
|
.title("保存成功")
|
|
.icon(IconName::Inbox)
|
|
.autohide(false)
|
|
.on_click(
|
|
cx.listener(|view, _, cx| {
|
|
view.selected_value =
|
|
Some("Notification clicked".into());
|
|
cx.notify();
|
|
}),
|
|
),
|
|
)
|
|
})),
|
|
),
|
|
),
|
|
)
|
|
}
|
|
}
|