mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-12 05:15:00 +00:00
6c7893db35
This PR renames `SharedUrl` to `SharedUri` to better reflect its intent. I'm still not entirely happy with this naming, as the file paths that we can store in here are not _really_ URIs, as they are lacking a protocol. I want to explore changing `SharedUri` / `SharedUrl` back to alway storing a URL and treat local filepaths differently, as it seems we're conflating two different concerns under the same umbrella, at the moment. Release Notes: - N/A
59 lines
1.6 KiB
Rust
59 lines
1.6 KiB
Rust
use gpui::*;
|
|
|
|
#[derive(IntoElement)]
|
|
struct ImageFromResource {
|
|
text: SharedString,
|
|
resource: SharedUri,
|
|
}
|
|
|
|
impl RenderOnce for ImageFromResource {
|
|
fn render(self, _: &mut WindowContext) -> impl IntoElement {
|
|
div().child(
|
|
div()
|
|
.flex_row()
|
|
.size_full()
|
|
.gap_4()
|
|
.child(self.text)
|
|
.child(img(self.resource).w(px(512.0)).h(px(512.0))),
|
|
)
|
|
}
|
|
}
|
|
|
|
struct ImageShowcase {
|
|
local_resource: SharedUri,
|
|
remote_resource: SharedUri,
|
|
}
|
|
|
|
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))
|
|
.child(ImageFromResource {
|
|
text: "Image loaded from a local file".into(),
|
|
resource: self.local_resource.clone(),
|
|
})
|
|
.child(ImageFromResource {
|
|
text: "Image loaded from a remote resource".into(),
|
|
resource: self.remote_resource.clone(),
|
|
})
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
env_logger::init();
|
|
|
|
App::new().run(|cx: &mut AppContext| {
|
|
cx.open_window(WindowOptions::default(), |cx| {
|
|
cx.new_view(|_cx| ImageShowcase {
|
|
local_resource: SharedUri::file("../zed/resources/app-icon.png"),
|
|
remote_resource: SharedUri::network("https://picsum.photos/512/512"),
|
|
})
|
|
});
|
|
});
|
|
}
|