2024-01-30 16:26:02 +00:00
|
|
|
use std::path::PathBuf;
|
|
|
|
use std::str::FromStr;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2024-01-30 05:56:51 +00:00
|
|
|
use gpui::*;
|
2024-07-30 14:55:48 +00:00
|
|
|
use std::fs;
|
|
|
|
|
|
|
|
struct Assets {
|
|
|
|
base: PathBuf,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl AssetSource for Assets {
|
|
|
|
fn load(&self, path: &str) -> Result<Option<std::borrow::Cow<'static, [u8]>>> {
|
|
|
|
fs::read(self.base.join(path))
|
|
|
|
.map(|data| Some(std::borrow::Cow::Owned(data)))
|
|
|
|
.map_err(|e| e.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn list(&self, path: &str) -> Result<Vec<SharedString>> {
|
|
|
|
fs::read_dir(self.base.join(path))
|
|
|
|
.map(|entries| {
|
|
|
|
entries
|
|
|
|
.filter_map(|entry| {
|
|
|
|
entry
|
|
|
|
.ok()
|
|
|
|
.and_then(|entry| entry.file_name().into_string().ok())
|
|
|
|
.map(SharedString::from)
|
|
|
|
})
|
|
|
|
.collect()
|
|
|
|
})
|
|
|
|
.map_err(|e| e.into())
|
|
|
|
}
|
|
|
|
}
|
2024-01-30 05:56:51 +00:00
|
|
|
|
|
|
|
#[derive(IntoElement)]
|
2024-01-30 16:26:02 +00:00
|
|
|
struct ImageContainer {
|
2024-01-30 05:56:51 +00:00
|
|
|
text: SharedString,
|
2024-01-30 16:26:02 +00:00
|
|
|
src: ImageSource,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl ImageContainer {
|
|
|
|
pub fn new(text: impl Into<SharedString>, src: impl Into<ImageSource>) -> Self {
|
|
|
|
Self {
|
|
|
|
text: text.into(),
|
|
|
|
src: src.into(),
|
|
|
|
}
|
|
|
|
}
|
2024-01-30 05:56:51 +00:00
|
|
|
}
|
|
|
|
|
2024-01-30 16:26:02 +00:00
|
|
|
impl RenderOnce for ImageContainer {
|
2024-01-30 05:56:51 +00:00
|
|
|
fn render(self, _: &mut WindowContext) -> impl IntoElement {
|
|
|
|
div().child(
|
|
|
|
div()
|
|
|
|
.flex_row()
|
|
|
|
.size_full()
|
|
|
|
.gap_4()
|
|
|
|
.child(self.text)
|
2024-07-30 14:55:48 +00:00
|
|
|
.child(img(self.src).w(px(256.0)).h(px(256.0))),
|
2024-01-30 05:56:51 +00:00
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct ImageShowcase {
|
2024-01-30 16:26:02 +00:00
|
|
|
local_resource: Arc<PathBuf>,
|
2024-01-30 14:54:23 +00:00
|
|
|
remote_resource: SharedUri,
|
2024-07-30 14:55:48 +00:00
|
|
|
asset_resource: SharedString,
|
2024-01-30 05:56:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Render for ImageShowcase {
|
|
|
|
fn render(&mut self, _cx: &mut ViewContext<Self>) -> impl IntoElement {
|
|
|
|
div()
|
|
|
|
.flex()
|
|
|
|
.flex_row()
|
|
|
|
.size_full()
|
|
|
|
.justify_center()
|
|
|
|
.items_center()
|
|
|
|
.gap_8()
|
|
|
|
.bg(rgb(0xFFFFFF))
|
2024-01-30 16:26:02 +00:00
|
|
|
.child(ImageContainer::new(
|
|
|
|
"Image loaded from a local file",
|
|
|
|
self.local_resource.clone(),
|
|
|
|
))
|
|
|
|
.child(ImageContainer::new(
|
|
|
|
"Image loaded from a remote resource",
|
|
|
|
self.remote_resource.clone(),
|
|
|
|
))
|
2024-07-30 14:55:48 +00:00
|
|
|
.child(ImageContainer::new(
|
|
|
|
"Image loaded from an asset",
|
|
|
|
self.asset_resource.clone(),
|
|
|
|
))
|
2024-01-30 05:56:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-04-29 03:59:21 +00:00
|
|
|
actions!(image, [Quit]);
|
|
|
|
|
2024-01-30 05:56:51 +00:00
|
|
|
fn main() {
|
|
|
|
env_logger::init();
|
|
|
|
|
2024-07-30 14:55:48 +00:00
|
|
|
App::new()
|
|
|
|
.with_assets(Assets {
|
|
|
|
base: PathBuf::from("crates/gpui/examples"),
|
|
|
|
})
|
|
|
|
.run(|cx: &mut AppContext| {
|
|
|
|
cx.activate(true);
|
|
|
|
cx.on_action(|_: &Quit, cx| cx.quit());
|
|
|
|
cx.bind_keys([KeyBinding::new("cmd-q", Quit, None)]);
|
|
|
|
cx.set_menus(vec![Menu {
|
|
|
|
name: "Image".into(),
|
|
|
|
items: vec![MenuItem::action("Quit", Quit)],
|
|
|
|
}]);
|
2024-04-29 03:59:21 +00:00
|
|
|
|
2024-07-30 14:55:48 +00:00
|
|
|
let window_options = WindowOptions {
|
|
|
|
titlebar: Some(TitlebarOptions {
|
|
|
|
title: Some(SharedString::from("Image Example")),
|
|
|
|
appears_transparent: false,
|
|
|
|
..Default::default()
|
|
|
|
}),
|
2024-04-29 03:59:21 +00:00
|
|
|
|
2024-07-30 14:55:48 +00:00
|
|
|
window_bounds: Some(WindowBounds::Windowed(Bounds {
|
|
|
|
size: size(px(1100.), px(600.)),
|
|
|
|
origin: Point::new(px(200.), px(200.)),
|
|
|
|
})),
|
2024-04-29 03:59:21 +00:00
|
|
|
|
2024-07-30 14:55:48 +00:00
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
|
|
|
|
cx.open_window(window_options, |cx| {
|
|
|
|
cx.new_view(|_cx| ImageShowcase {
|
|
|
|
// Relative path to your root project path
|
|
|
|
local_resource: Arc::new(
|
|
|
|
PathBuf::from_str("crates/gpui/examples/image/app-icon.png").unwrap(),
|
|
|
|
),
|
|
|
|
remote_resource: "https://picsum.photos/512/512".into(),
|
|
|
|
asset_resource: "image/app-icon.png".into(),
|
|
|
|
})
|
2024-01-30 05:56:51 +00:00
|
|
|
})
|
2024-07-30 14:55:48 +00:00
|
|
|
.unwrap();
|
|
|
|
});
|
2024-01-30 05:56:51 +00:00
|
|
|
}
|