Rebrand to Galaxy, major improvements to Bedrock support, still needs some TLC though

This commit is contained in:
Ryan Ward
2026-05-07 11:29:34 -05:00
parent f4e2475c60
commit a41cbd8cc7
2433 changed files with 14208 additions and 9409 deletions
+14 -14
View File
@@ -16,16 +16,16 @@ use crate::themes::theme::WarpTheme;
use crate::view_components::DismissibleToast;
use crate::ToastStack;
use lazy_static::lazy_static;
use warp_core::send_telemetry_from_app_ctx;
use warp_util::path::LineAndColumnArg;
use galaxy_core::send_telemetry_from_app_ctx;
use galaxy_util::path::LineAndColumnArg;
use crate::search::action::search_item::MatchedBinding;
use itertools::Itertools;
use warpui::elements::DispatchEventResult;
use warpui::elements::EventHandler;
use warpui::event::KeyState;
use warpui::platform::keyboard::KeyCode;
use warpui::FocusContext;
use galaxyui::elements::DispatchEventResult;
use galaxyui::elements::EventHandler;
use galaxyui::event::KeyState;
use galaxyui::platform::keyboard::KeyCode;
use galaxyui::FocusContext;
use crate::search::command_palette::zero_state::{self, Event as ZeroStateEvent, ZeroState};
use crate::search::data_source::QueryResult;
@@ -41,14 +41,14 @@ use crate::search::command_palette::data_sources::DataSourceStore;
use crate::server::ids::SyncId;
use crate::session_management::SessionSource;
use crate::workspace::{active_terminal_in_window, ForkedConversationDestination, WorkspaceAction};
use warpui::elements::{
use galaxyui::elements::{
Align, Border, ChildView, Clipped, ClippedScrollStateHandle, ClippedScrollable, ConstrainedBox,
Container, CornerRadius, Dismiss, Empty, Fill, Flex, ParentElement, Radius, SavePosition,
Shrinkable,
};
use warpui::keymap::BindingId;
use warpui::units::{IntoPixels, Pixels};
use warpui::{
use galaxyui::keymap::BindingId;
use galaxyui::units::{IntoPixels, Pixels};
use galaxyui::{
AppContext, Element, Entity, EntityId, ModelHandle, SingletonEntity, TypedActionView,
ViewContext, ViewHandle, WindowId,
};
@@ -170,7 +170,7 @@ impl TypedActionView for View {
}
}
impl warpui::View for View {
impl galaxyui::View for View {
fn ui_name() -> &'static str {
"CommandPaletteView"
}
@@ -1000,11 +1000,11 @@ impl View {
self.close(ctx, Some(result_action.result_type()));
}
/// Dispatches `action` to the correct window and [`warpui::View`] by using the current state of
/// Dispatches `action` to the correct window and [`galaxyui::View`] by using the current state of
/// the [`BindingSource`] model.
fn dispatch_typed_action_on_view(
&self,
action: &dyn warpui::Action,
action: &dyn galaxyui::Action,
ctx: &mut ViewContext<Self>,
) {
send_telemetry_from_ctx!(