Initial public release of Warp.

Repo-Sync-Origin: warpdotdev/warp-internal@12af1d983b
This commit is contained in:
David Stern
2026-04-28 08:43:33 -05:00
commit 0dbd3d567a
4982 changed files with 1431549 additions and 0 deletions
@@ -0,0 +1,79 @@
use super::Slide;
use crate::server::telemetry::TelemetryEvent;
use std::rc::Rc;
use warpui::ViewContext;
/// A callback function for custom CTA button actions.
type CustomCallback<S> = Rc<dyn Fn(&mut ViewContext<super::LaunchModal<S>>)>;
#[derive(Clone)]
pub struct CTAButton<S: Slide> {
pub label: String,
pub action: CTAButtonAction<S>,
#[allow(dead_code)]
pub telemetry_event: Option<TelemetryEvent>,
}
impl<S: Slide> CTAButton<S> {
// Constructor methods
pub fn next_slide(next: S, label: impl Into<String>) -> Self {
Self {
label: label.into(),
action: CTAButtonAction::NextSlide(next),
telemetry_event: None,
}
}
pub fn close(label: impl Into<String>) -> Self {
Self {
label: label.into(),
action: CTAButtonAction::Close,
telemetry_event: None,
}
}
#[allow(dead_code)]
pub fn open_url(label: impl Into<String>, url: impl Into<String>) -> Self {
Self {
label: label.into(),
action: CTAButtonAction::OpenUrl(url.into()),
telemetry_event: None,
}
}
pub fn custom<F>(label: impl Into<String>, callback: F) -> Self
where
F: Fn(&mut ViewContext<super::LaunchModal<S>>) + 'static,
{
Self {
label: label.into(),
action: CTAButtonAction::Custom(Rc::new(callback)),
telemetry_event: None,
}
}
#[allow(dead_code)]
pub fn with_telemetry(mut self, event: TelemetryEvent) -> Self {
self.telemetry_event = Some(event);
self
}
}
pub enum CTAButtonAction<S: Slide> {
NextSlide(S),
Close,
#[allow(dead_code)]
OpenUrl(String),
Custom(CustomCallback<S>),
}
impl<S: Slide> Clone for CTAButtonAction<S> {
fn clone(&self) -> Self {
match self {
CTAButtonAction::NextSlide(s) => CTAButtonAction::NextSlide(*s),
CTAButtonAction::Close => CTAButtonAction::Close,
CTAButtonAction::OpenUrl(url) => CTAButtonAction::OpenUrl(url.clone()),
CTAButtonAction::Custom(f) => CTAButtonAction::Custom(f.clone()),
}
}
}