1 Commits
Author SHA1 Message Date
reya 853ab7a60e chore: bump version 2025-09-13 10:18:33 +07:00
59 changed files with 3405 additions and 4911 deletions
Generated
+244 -324
View File
File diff suppressed because it is too large Load Diff
+1 -5
View File
@@ -4,7 +4,7 @@ members = ["crates/*"]
default-members = ["crates/coop"] default-members = ["crates/coop"]
[workspace.package] [workspace.package]
version = "0.2.11" version = "0.2.7"
edition = "2021" edition = "2021"
publish = false publish = false
@@ -58,7 +58,3 @@ opt-level = "z"
lto = true lto = true
codegen-units = 1 codegen-units = 1
panic = "abort" panic = "abort"
[profile.profiling]
inherits = "release"
debug = true
Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

-3
View File
@@ -1,3 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" d="M17.75 19.25h2.596c1.163 0 2.106-1.001 1.788-2.12-.733-2.573-2.465-4.38-5.134-4.38-.446 0-.866.05-1.26.147M11.25 7a3.25 3.25 0 1 1-6.5 0 3.25 3.25 0 0 1 6.5 0Zm8.5.5a2.75 2.75 0 1 1-5.5 0 2.75 2.75 0 0 1 5.5 0ZM2.08 18.126c.78-3.14 2.78-5.376 5.92-5.376s5.14 2.237 5.918 5.376c.28 1.128-.658 2.124-1.82 2.124H3.901c-1.162 0-2.1-.996-1.82-2.124Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 550 B

-4
View File
@@ -1,4 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" fill="none" viewBox="0 0 24 24">
<path stroke="currentColor" stroke-linecap="square" stroke-linejoin="round" stroke-width="1.5" d="M21.25 12V6.75a2 2 0 0 0-2-2H4.75a2 2 0 0 0-2 2V12m18.5 0H2.75m18.5 0v5.25a2 2 0 0 1-2 2H4.75a2 2 0 0 1-2-2V12"/>
<path fill="currentColor" stroke="currentColor" stroke-width=".5" d="M6.5 14.875a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Zm0-7.25a.75.75 0 1 1 0 1.5.75.75 0 0 1 0-1.5Z"/>
</svg>

Before

Width:  |  Height:  |  Size: 486 B

+2 -5
View File
@@ -1,7 +1,5 @@
use std::sync::atomic::Ordering;
use global::app_state;
use global::constants::KEYRING_URL; use global::constants::KEYRING_URL;
use global::first_run;
use gpui::{App, AppContext, Context, Entity, Global, Subscription, Window}; use gpui::{App, AppContext, Context, Entity, Global, Subscription, Window};
use nostr_sdk::prelude::*; use nostr_sdk::prelude::*;
use smallvec::{smallvec, SmallVec}; use smallvec::{smallvec, SmallVec};
@@ -61,7 +59,6 @@ impl ClientKeys {
return; return;
} }
let app_state = app_state();
let read_client_keys = cx.read_credentials(KEYRING_URL); let read_client_keys = cx.read_credentials(KEYRING_URL);
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
@@ -76,7 +73,7 @@ impl ClientKeys {
this.set_keys(Some(keys), false, true, cx); this.set_keys(Some(keys), false, true, cx);
}) })
.ok(); .ok();
} else if app_state.is_first_run.load(Ordering::Acquire) { } else if *first_run() {
// If this is the first run, generate new keys and use them for the client keys // If this is the first run, generate new keys and use them for the client keys
this.update(cx, |this, cx| { this.update(cx, |this, cx| {
this.new_keys(cx); this.new_keys(cx);
+31 -36
View File
@@ -3,7 +3,7 @@ use std::sync::Arc;
use anyhow::{anyhow, Error}; use anyhow::{anyhow, Error};
use chrono::{Local, TimeZone}; use chrono::{Local, TimeZone};
use global::constants::IMAGE_RESIZE_SERVICE; use global::constants::IMAGE_RESIZE_SERVICE;
use gpui::{Image, ImageFormat, SharedString, SharedUri}; use gpui::{Image, ImageFormat};
use nostr_sdk::prelude::*; use nostr_sdk::prelude::*;
use qrcode::render::svg; use qrcode::render::svg;
use qrcode::QrCode; use qrcode::QrCode;
@@ -15,92 +15,87 @@ const HOURS_IN_DAY: i64 = 24;
const DAYS_IN_MONTH: i64 = 30; const DAYS_IN_MONTH: i64 = 30;
const FALLBACK_IMG: &str = "https://image.nostr.build/c30703b48f511c293a9003be8100cdad37b8798b77a1dc3ec6eb8a20443d5dea.png"; const FALLBACK_IMG: &str = "https://image.nostr.build/c30703b48f511c293a9003be8100cdad37b8798b77a1dc3ec6eb8a20443d5dea.png";
pub trait RenderedProfile { pub trait ReadableProfile {
fn avatar(&self, proxy: bool) -> SharedUri; fn avatar_url(&self, proxy: bool) -> String;
fn display_name(&self) -> SharedString; fn display_name(&self) -> String;
} }
impl RenderedProfile for Profile { impl ReadableProfile for Profile {
fn avatar(&self, proxy: bool) -> SharedUri { fn avatar_url(&self, proxy: bool) -> String {
self.metadata() self.metadata()
.picture .picture
.as_ref() .as_ref()
.filter(|picture| !picture.is_empty()) .filter(|picture| !picture.is_empty())
.map(|picture| { .map(|picture| {
if proxy { if proxy {
let url = format!( format!(
"{IMAGE_RESIZE_SERVICE}/?url={picture}&w=100&h=100&fit=cover&mask=circle&default={FALLBACK_IMG}&n=-1" "{IMAGE_RESIZE_SERVICE}/?url={picture}&w=100&h=100&fit=cover&mask=circle&default={FALLBACK_IMG}&n=-1"
); )
SharedUri::from(url)
} else { } else {
SharedUri::from(picture) picture.into()
} }
}) })
.unwrap_or_else(|| SharedUri::from("brand/avatar.png")) .unwrap_or_else(|| "brand/avatar.png".into())
} }
fn display_name(&self) -> SharedString { fn display_name(&self) -> String {
if let Some(display_name) = self.metadata().display_name.as_ref() { if let Some(display_name) = self.metadata().display_name.as_ref() {
if !display_name.is_empty() { if !display_name.is_empty() {
return SharedString::from(display_name); return display_name.into();
} }
} }
if let Some(name) = self.metadata().name.as_ref() { if let Some(name) = self.metadata().name.as_ref() {
if !name.is_empty() { if !name.is_empty() {
return SharedString::from(name); return name.into();
} }
} }
SharedString::from(shorten_pubkey(self.public_key(), 4)) shorten_pubkey(self.public_key(), 4)
} }
} }
pub trait RenderedTimestamp { pub trait ReadableTimestamp {
fn to_human_time(&self) -> SharedString; fn to_human_time(&self) -> String;
fn to_ago(&self) -> SharedString; fn to_ago(&self) -> String;
} }
impl RenderedTimestamp for Timestamp { impl ReadableTimestamp for Timestamp {
fn to_human_time(&self) -> SharedString { fn to_human_time(&self) -> String {
let input_time = match Local.timestamp_opt(self.as_u64() as i64, 0) { let input_time = match Local.timestamp_opt(self.as_u64() as i64, 0) {
chrono::LocalResult::Single(time) => time, chrono::LocalResult::Single(time) => time,
_ => return SharedString::from("9999"), _ => return "9999".into(),
}; };
let now = Local::now(); let now = Local::now();
let input_date = input_time.date_naive(); let input_date = input_time.date_naive();
let now_date = now.date_naive(); let now_date = now.date_naive();
let yesterday_date = (now - chrono::Duration::days(1)).date_naive(); let yesterday_date = (now - chrono::Duration::days(1)).date_naive();
let time_format = input_time.format("%H:%M %p"); let time_format = input_time.format("%H:%M %p");
match input_date { match input_date {
date if date == now_date => SharedString::from(format!("Today at {time_format}")), date if date == now_date => format!("Today at {time_format}"),
date if date == yesterday_date => { date if date == yesterday_date => format!("Yesterday at {time_format}"),
SharedString::from(format!("Yesterday at {time_format}")) _ => format!("{}, {time_format}", input_time.format("%d/%m/%y")),
}
_ => SharedString::from(format!("{}, {time_format}", input_time.format("%d/%m/%y"))),
} }
} }
fn to_ago(&self) -> SharedString { fn to_ago(&self) -> String {
let input_time = match Local.timestamp_opt(self.as_u64() as i64, 0) { let input_time = match Local.timestamp_opt(self.as_u64() as i64, 0) {
chrono::LocalResult::Single(time) => time, chrono::LocalResult::Single(time) => time,
_ => return SharedString::from("1m"), _ => return "1m".into(),
}; };
let now = Local::now(); let now = Local::now();
let duration = now.signed_duration_since(input_time); let duration = now.signed_duration_since(input_time);
match duration { match duration {
d if d.num_seconds() < SECONDS_IN_MINUTE => SharedString::from(NOW), d if d.num_seconds() < SECONDS_IN_MINUTE => NOW.into(),
d if d.num_minutes() < MINUTES_IN_HOUR => { d if d.num_minutes() < MINUTES_IN_HOUR => format!("{}m", d.num_minutes()),
SharedString::from(format!("{}m", d.num_minutes())) d if d.num_hours() < HOURS_IN_DAY => format!("{}h", d.num_hours()),
} d if d.num_days() < DAYS_IN_MONTH => format!("{}d", d.num_days()),
d if d.num_hours() < HOURS_IN_DAY => SharedString::from(format!("{}h", d.num_hours())), _ => input_time.format("%b %d").to_string(),
d if d.num_days() < DAYS_IN_MONTH => SharedString::from(format!("{}d", d.num_days())),
_ => SharedString::from(input_time.format("%b %d").to_string()),
} }
} }
} }
+10 -17
View File
@@ -1,3 +1,4 @@
use std::collections::HashSet;
use std::hash::{DefaultHasher, Hash, Hasher}; use std::hash::{DefaultHasher, Hash, Hasher};
use itertools::Itertools; use itertools::Itertools;
@@ -6,26 +7,10 @@ use nostr_sdk::prelude::*;
pub trait EventUtils { pub trait EventUtils {
fn uniq_id(&self) -> u64; fn uniq_id(&self) -> u64;
fn all_pubkeys(&self) -> Vec<PublicKey>; fn all_pubkeys(&self) -> Vec<PublicKey>;
fn compare_pubkeys(&self, other: &[PublicKey]) -> bool;
} }
impl EventUtils for Event { impl EventUtils for Event {
fn uniq_id(&self) -> u64 {
let mut hasher = DefaultHasher::new();
let mut pubkeys: Vec<PublicKey> = self.all_pubkeys();
pubkeys.sort();
pubkeys.hash(&mut hasher);
hasher.finish()
}
fn all_pubkeys(&self) -> Vec<PublicKey> {
let mut public_keys: Vec<PublicKey> = self.tags.public_keys().copied().collect();
public_keys.push(self.pubkey);
public_keys.into_iter().unique().collect()
}
}
impl EventUtils for UnsignedEvent {
fn uniq_id(&self) -> u64 { fn uniq_id(&self) -> u64 {
let mut hasher = DefaultHasher::new(); let mut hasher = DefaultHasher::new();
let mut pubkeys: Vec<PublicKey> = vec![]; let mut pubkeys: Vec<PublicKey> = vec![];
@@ -51,4 +36,12 @@ impl EventUtils for UnsignedEvent {
public_keys public_keys
} }
fn compare_pubkeys(&self, other: &[PublicKey]) -> bool {
let pubkeys = self.all_pubkeys();
let a: HashSet<_> = pubkeys.iter().collect();
let b: HashSet<_> = other.iter().collect();
a == b
}
} }
+14
View File
@@ -0,0 +1,14 @@
use nostr_connect::prelude::*;
#[derive(Debug, Clone)]
pub struct CoopAuthUrlHandler;
impl AuthUrlHandler for CoopAuthUrlHandler {
fn on_auth_url(&self, auth_url: Url) -> BoxedFuture<Result<()>> {
Box::pin(async move {
log::info!("Received Auth URL: {auth_url}");
webbrowser::open(auth_url.as_str())?;
Ok(())
})
}
}
+1
View File
@@ -1,5 +1,6 @@
pub mod debounced_delay; pub mod debounced_delay;
pub mod display; pub mod display;
pub mod event; pub mod event;
pub mod handle_auth;
pub mod nip05; pub mod nip05;
pub mod nip96; pub mod nip96;
+2 -2
View File
@@ -14,7 +14,7 @@ product-name = "Coop"
description = "Chat Freely, Stay Private on Nostr" description = "Chat Freely, Stay Private on Nostr"
identifier = "su.reya.coop" identifier = "su.reya.coop"
category = "SocialNetworking" category = "SocialNetworking"
version = "0.2.11" version = "0.2.7"
out-dir = "../../dist" out-dir = "../../dist"
before-packaging-command = "cargo build --release" before-packaging-command = "cargo build --release"
resources = ["Cargo.toml", "src"] resources = ["Cargo.toml", "src"]
@@ -62,5 +62,5 @@ oneshot.workspace = true
flume.workspace = true flume.workspace = true
webbrowser.workspace = true webbrowser.workspace = true
indexset = "0.12.3"
tracing-subscriber = { version = "0.3.18", features = ["fmt"] } tracing-subscriber = { version = "0.3.18", features = ["fmt"] }
indexset = "0.12.3"
-14
View File
@@ -1,24 +1,10 @@
use std::sync::Mutex; use std::sync::Mutex;
use gpui::{actions, App}; use gpui::{actions, App};
use nostr_connect::prelude::*;
actions!(coop, [ReloadMetadata, DarkMode, Settings, Logout, Quit]); actions!(coop, [ReloadMetadata, DarkMode, Settings, Logout, Quit]);
actions!(sidebar, [Reload, RelayStatus]); actions!(sidebar, [Reload, RelayStatus]);
#[derive(Debug, Clone)]
pub struct CoopAuthUrlHandler;
impl AuthUrlHandler for CoopAuthUrlHandler {
fn on_auth_url(&self, auth_url: Url) -> BoxedFuture<Result<()>> {
Box::pin(async move {
log::info!("Received Auth URL: {auth_url}");
webbrowser::open(auth_url.as_str())?;
Ok(())
})
}
}
pub fn load_embedded_fonts(cx: &App) { pub fn load_embedded_fonts(cx: &App) {
let asset_source = cx.asset_source(); let asset_source = cx.asset_source();
let font_paths = asset_source.list("fonts").unwrap(); let font_paths = asset_source.list("fonts").unwrap();
+160 -205
View File
@@ -7,18 +7,19 @@ use std::time::Duration;
use anyhow::{anyhow, Error}; use anyhow::{anyhow, Error};
use auto_update::AutoUpdater; use auto_update::AutoUpdater;
use client_keys::ClientKeys; use client_keys::ClientKeys;
use common::display::RenderedProfile; use common::display::ReadableProfile;
use common::event::EventUtils; use common::event::EventUtils;
use flume::{Receiver, Sender};
use global::constants::{ use global::constants::{
ACCOUNT_IDENTIFIER, BOOTSTRAP_RELAYS, DEFAULT_SIDEBAR_WIDTH, METADATA_BATCH_LIMIT, ACCOUNT_IDENTIFIER, BOOTSTRAP_RELAYS, DEFAULT_SIDEBAR_WIDTH, METADATA_BATCH_LIMIT,
METADATA_BATCH_TIMEOUT, SEARCH_RELAYS, METADATA_BATCH_TIMEOUT, SEARCH_RELAYS,
}; };
use global::{app_state, nostr_client, AuthRequest, Notice, SignalKind, UnwrappingStatus}; use global::{css, ingester, nostr_client, AuthRequest, Notice, Signal, UnwrappingStatus};
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
deferred, div, px, rems, App, AppContext, AsyncWindowContext, Axis, ClipboardItem, Context, div, px, rems, App, AppContext, AsyncWindowContext, Axis, Context, Entity, InteractiveElement,
Entity, InteractiveElement, IntoElement, ParentElement, Render, SharedString, IntoElement, ParentElement, Render, SharedString, StatefulInteractiveElement, Styled,
StatefulInteractiveElement, Styled, Subscription, Task, WeakEntity, Window, Subscription, Task, WeakEntity, Window,
}; };
use i18n::{shared_t, t}; use i18n::{shared_t, t};
use itertools::Itertools; use itertools::Itertools;
@@ -30,7 +31,7 @@ use signer_proxy::{BrowserSignerProxy, BrowserSignerProxyOptions};
use smallvec::{smallvec, SmallVec}; use smallvec::{smallvec, SmallVec};
use theme::{ActiveTheme, Theme, ThemeMode}; use theme::{ActiveTheme, Theme, ThemeMode};
use title_bar::TitleBar; use title_bar::TitleBar;
use ui::actions::{CopyPublicKey, OpenPublicKey}; use ui::actions::OpenProfile;
use ui::avatar::Avatar; use ui::avatar::Avatar;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonVariants};
use ui::dock_area::dock::DockPlacement; use ui::dock_area::dock::DockPlacement;
@@ -70,13 +71,13 @@ pub struct ChatSpace {
dock: Entity<DockArea>, dock: Entity<DockArea>,
// All authentication requests // All authentication requests
auth_requests: Entity<HashMap<RelayUrl, AuthRequest>>, auth_requests: HashMap<RelayUrl, AuthRequest>,
// Local state to determine if the user has set up NIP-17 relays // Local state to determine if the user has set up NIP-17 relays
nip17_relays: bool, nip17_relays: bool,
// All subscriptions for observing the app state // All subscriptions for observing the app state
_subscriptions: SmallVec<[Subscription; 4]>, _subscriptions: SmallVec<[Subscription; 3]>,
// All long running tasks // All long running tasks
_tasks: SmallVec<[Task<()>; 5]>, _tasks: SmallVec<[Task<()>; 5]>,
@@ -90,18 +91,11 @@ impl ChatSpace {
let title_bar = cx.new(|_| TitleBar::new()); let title_bar = cx.new(|_| TitleBar::new());
let dock = cx.new(|cx| DockArea::new(window, cx)); let dock = cx.new(|cx| DockArea::new(window, cx));
let auth_requests = cx.new(|_| HashMap::new());
let (pubkey_tx, pubkey_rx) = flume::bounded::<PublicKey>(1024);
let mut subscriptions = smallvec![]; let mut subscriptions = smallvec![];
let mut tasks = smallvec![]; let mut tasks = smallvec![];
subscriptions.push(
// Automatically sync theme with system appearance
window.observe_window_appearance(|window, cx| {
Theme::sync_system_appearance(Some(window), cx);
}),
);
subscriptions.push( subscriptions.push(
// Observe the client keys and show an alert modal if they fail to initialize // Observe the client keys and show an alert modal if they fail to initialize
cx.observe_in(&client_keys, window, |this, keys, window, cx| { cx.observe_in(&client_keys, window, |this, keys, window, cx| {
@@ -153,7 +147,7 @@ impl ChatSpace {
.await .await
.expect("Failed connect the bootstrap relays. Please restart the application."); .expect("Failed connect the bootstrap relays. Please restart the application.");
Self::process_nostr_events() Self::process_nostr_events(&pubkey_tx)
.await .await
.expect("Failed to handle nostr events. Please restart the application."); .expect("Failed to handle nostr events. Please restart the application.");
}), }),
@@ -177,7 +171,7 @@ impl ChatSpace {
tasks.push( tasks.push(
// Listen all metadata requests then batch them into single subscription // Listen all metadata requests then batch them into single subscription
cx.background_spawn(async move { cx.background_spawn(async move {
Self::process_batching_metadata().await; Self::process_batching_metadata(&pubkey_rx).await;
}), }),
); );
@@ -191,7 +185,7 @@ impl ChatSpace {
Self { Self {
dock, dock,
title_bar, title_bar,
auth_requests, auth_requests: HashMap::new(),
nip17_relays: true, nip17_relays: true,
_subscriptions: subscriptions, _subscriptions: subscriptions,
_tasks: tasks, _tasks: tasks,
@@ -221,7 +215,7 @@ impl ChatSpace {
async fn observe_signer() { async fn observe_signer() {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let ingester = ingester();
let stream_timeout = Duration::from_secs(5); let stream_timeout = Duration::from_secs(5);
let loop_duration = Duration::from_secs(1); let loop_duration = Duration::from_secs(1);
@@ -237,10 +231,7 @@ impl ChatSpace {
}; };
// Notify the app that the signer has been set. // Notify the app that the signer has been set.
app_state ingester.send(Signal::SignerSet(public_key)).await;
.signal
.send(SignalKind::SignerSet(public_key))
.await;
// Subscribe to the NIP-65 relays for the public key. // Subscribe to the NIP-65 relays for the public key.
let filter = Filter::new() let filter = Filter::new()
@@ -248,56 +239,44 @@ impl ChatSpace {
.author(public_key) .author(public_key)
.limit(1); .limit(1);
let mut nip65_found = false;
match client match client
.stream_events_from(BOOTSTRAP_RELAYS, filter, stream_timeout) .stream_events_from(BOOTSTRAP_RELAYS, filter, stream_timeout)
.await .await
{ {
Ok(mut stream) => { Ok(mut stream) => {
if stream.next().await.is_some() { let mut processed_ids = HashSet::new();
nip65_found = true;
if let Some(event) = stream.next().await {
if processed_ids.insert(event.id) {
// Fetch user's metadata event
Self::fetch_single_event(Kind::Metadata, event.pubkey).await;
// Fetch user's contact list event
Self::fetch_single_event(Kind::ContactList, event.pubkey).await;
// Fetch user's inbox relays event
Self::fetch_nip17_relays(event.pubkey).await;
break;
}
} else { } else {
// Timeout ingester.send(Signal::DmRelayNotFound).await;
app_state.signal.send(SignalKind::RelaysNotFound).await;
} }
} }
Err(e) => { Err(e) => {
log::error!("Error fetching NIP-65 Relay: {e:?}"); log::error!("Error fetching NIP-17 Relay: {e:?}");
app_state.signal.send(SignalKind::RelaysNotFound).await; ingester.send(Signal::DmRelayNotFound).await;
} }
}; };
if nip65_found {
// Subscribe to the NIP-17 relays for the public key.
let filter = Filter::new()
.kind(Kind::InboxRelays)
.author(public_key)
.limit(1);
match client.stream_events(filter, stream_timeout).await {
Ok(mut stream) => {
if stream.next().await.is_some() {
break;
} else {
// Timeout
app_state.signal.send(SignalKind::RelaysNotFound).await;
}
}
Err(e) => {
log::error!("Error fetching NIP-17 Relay: {e:?}");
app_state.signal.send(SignalKind::RelaysNotFound).await;
}
};
}
break; break;
} }
} }
async fn observe_giftwrap() { async fn observe_giftwrap() {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let css = css();
let ingester = ingester();
let loop_duration = Duration::from_secs(20); let loop_duration = Duration::from_secs(20);
let mut is_start_processing = false; let mut is_start_processing = false;
let mut total_loops = 0; let mut total_loops = 0;
@@ -306,25 +285,25 @@ impl ChatSpace {
if client.has_signer().await { if client.has_signer().await {
total_loops += 1; total_loops += 1;
if app_state.gift_wrap_processing.load(Ordering::Acquire) { if css.gift_wrap_processing.load(Ordering::Acquire) {
is_start_processing = true; is_start_processing = true;
// Reset gift wrap processing flag // Reset gift wrap processing flag
let _ = app_state.gift_wrap_processing.compare_exchange( let _ = css.gift_wrap_processing.compare_exchange(
true, true,
false, false,
Ordering::Release, Ordering::Release,
Ordering::Relaxed, Ordering::Relaxed,
); );
let signal = SignalKind::GiftWrapStatus(UnwrappingStatus::Processing); let signal = Signal::GiftWrapProcess(UnwrappingStatus::Processing);
app_state.signal.send(signal).await; ingester.send(signal).await;
} else { } else {
// Only run further if we are already processing // Only run further if we are already processing
// Wait until after 2 loops to prevent exiting early while events are still being processed // Wait until after 2 loops to prevent exiting early while events are still being processed
if is_start_processing && total_loops >= 2 { if is_start_processing && total_loops >= 2 {
let signal = SignalKind::GiftWrapStatus(UnwrappingStatus::Complete); let signal = Signal::GiftWrapProcess(UnwrappingStatus::Complete);
app_state.signal.send(signal).await; ingester.send(signal).await;
// Reset the counter // Reset the counter
is_start_processing = false; is_start_processing = false;
@@ -337,8 +316,7 @@ impl ChatSpace {
} }
} }
async fn process_batching_metadata() { async fn process_batching_metadata(rx: &Receiver<PublicKey>) {
let app_state = app_state();
let timeout = Duration::from_millis(METADATA_BATCH_TIMEOUT); let timeout = Duration::from_millis(METADATA_BATCH_TIMEOUT);
let mut processed_pubkeys: HashSet<PublicKey> = HashSet::new(); let mut processed_pubkeys: HashSet<PublicKey> = HashSet::new();
let mut batch: HashSet<PublicKey> = HashSet::new(); let mut batch: HashSet<PublicKey> = HashSet::new();
@@ -353,7 +331,7 @@ impl ChatSpace {
loop { loop {
let futs = smol::future::or( let futs = smol::future::or(
async move { async move {
if let Ok(public_key) = app_state.ingester.receiver().recv_async().await { if let Ok(public_key) = rx.recv_async().await {
BatchEvent::PublicKey(public_key) BatchEvent::PublicKey(public_key)
} else { } else {
BatchEvent::Closed BatchEvent::Closed
@@ -388,9 +366,10 @@ impl ChatSpace {
} }
} }
async fn process_nostr_events() -> Result<(), Error> { async fn process_nostr_events(pubkey_tx: &Sender<PublicKey>) -> Result<(), Error> {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let ingester = ingester();
let css = css();
let mut processed_events: HashSet<EventId> = HashSet::new(); let mut processed_events: HashSet<EventId> = HashSet::new();
let mut challenges: HashSet<Cow<'_, str>> = HashSet::new(); let mut challenges: HashSet<Cow<'_, str>> = HashSet::new();
@@ -403,53 +382,12 @@ impl ChatSpace {
match message { match message {
RelayMessage::Event { event, .. } => { RelayMessage::Event { event, .. } => {
// Keep track of which relays have seen this event
app_state
.seen_on_relays
.write()
.await
.entry(event.id)
.or_insert_with(HashSet::new)
.insert(relay_url);
// Skip events that have already been processed // Skip events that have already been processed
if !processed_events.insert(event.id) { if !processed_events.insert(event.id) {
continue; continue;
} }
match event.kind { match event.kind {
Kind::RelayList => {
if let Ok(true) = Self::is_self_event(&event).await {
// Fetch user's metadata event
Self::fetch_single_event(Kind::Metadata, event.pubkey).await;
// Fetch user's contact list event
Self::fetch_single_event(Kind::ContactList, event.pubkey).await;
}
}
Kind::InboxRelays => {
if let Ok(true) = Self::is_self_event(&event).await {
let relays = nip17::extract_relay_list(&event).collect_vec();
if !relays.is_empty() {
for relay in relays.clone().into_iter() {
if client.add_relay(relay).await.is_err() {
let notice = Notice::RelayFailed(relay.clone());
app_state.signal.send(SignalKind::Notice(notice)).await;
}
if client.connect_relay(relay).await.is_err() {
let notice = Notice::RelayFailed(relay.clone());
app_state.signal.send(SignalKind::Notice(notice)).await;
}
}
// Subscribe to gift wrap events only in the current user's NIP-17 relays
Self::fetch_gift_wrap(relays, event.pubkey).await;
} else {
app_state.signal.send(SignalKind::RelaysNotFound).await;
}
}
}
Kind::ContactList => { Kind::ContactList => {
if let Ok(true) = Self::is_self_event(&event).await { if let Ok(true) = Self::is_self_event(&event).await {
let public_keys = event.tags.public_keys().copied().collect_vec(); let public_keys = event.tags.public_keys().copied().collect_vec();
@@ -459,54 +397,46 @@ impl ChatSpace {
Filter::new().limit(limit).authors(public_keys).kinds(kinds); Filter::new().limit(limit).authors(public_keys).kinds(kinds);
client client
.subscribe_to( .subscribe_to(BOOTSTRAP_RELAYS, filter, css.auto_close_opts)
BOOTSTRAP_RELAYS,
filter,
app_state.auto_close_opts,
)
.await .await
.ok(); .ok();
} }
} }
Kind::Metadata => { Kind::Metadata => {
let metadata = Metadata::from_json(&event.content).unwrap_or_default(); if let Ok(metadata) = Metadata::from_json(&event.content) {
let profile = Profile::new(event.pubkey, metadata); let profile = Profile::new(event.pubkey, metadata);
ingester.send(Signal::Metadata(profile)).await;
app_state.signal.send(SignalKind::NewProfile(profile)).await; }
} }
Kind::GiftWrap => { Kind::GiftWrap => {
Self::unwrap_gift_wrap(&event).await; Self::unwrap_gift_wrap(&event, pubkey_tx).await;
} }
_ => {} _ => {}
} }
} }
RelayMessage::EndOfStoredEvents(subscription_id) => { RelayMessage::EndOfStoredEvents(subscription_id) => {
if *subscription_id == app_state.gift_wrap_sub_id { if *subscription_id == css.gift_wrap_sub_id {
let signal = SignalKind::GiftWrapStatus(UnwrappingStatus::Processing); let signal = Signal::GiftWrapProcess(UnwrappingStatus::Processing);
app_state.signal.send(signal).await; ingester.send(signal).await;
} }
} }
RelayMessage::Auth { challenge } => { RelayMessage::Auth { challenge } => {
if challenges.insert(challenge.clone()) { if challenges.insert(challenge.clone()) {
let req = AuthRequest::new(challenge, relay_url); let req = AuthRequest::new(challenge, relay_url);
// Send a signal to the ingester to handle the auth request // Send a signal to the ingester to handle the auth request
app_state.signal.send(SignalKind::Auth(req)).await; ingester.send(Signal::Auth(req)).await;
} }
} }
RelayMessage::Ok { RelayMessage::Ok {
event_id, message, .. event_id, message, ..
} => { } => {
// Keep track of events sent by Coop // Keep track of events sent by Coop
app_state.sent_ids.write().await.insert(event_id); css.sent_ids.write().await.insert(event_id);
// Keep track of events that need to be resent // Keep track of events that need to be resent
match MachineReadablePrefix::parse(&message) { match MachineReadablePrefix::parse(&message) {
Some(MachineReadablePrefix::AuthRequired) => { Some(MachineReadablePrefix::AuthRequired) => {
app_state css.resend_queue.write().await.insert(event_id, relay_url);
.resend_queue
.write()
.await
.insert(event_id, relay_url);
} }
Some(_) => {} Some(_) => {}
None => {} None => {}
@@ -520,16 +450,17 @@ impl ChatSpace {
} }
async fn process_nostr_signals(view: WeakEntity<ChatSpace>, cx: &mut AsyncWindowContext) { async fn process_nostr_signals(view: WeakEntity<ChatSpace>, cx: &mut AsyncWindowContext) {
let app_state = app_state(); let ingester = ingester();
let signals = ingester.signals();
let mut is_open_proxy_modal = false; let mut is_open_proxy_modal = false;
while let Ok(signal) = app_state.signal.receiver().recv_async().await { while let Ok(signal) = signals.recv_async().await {
cx.update(|window, cx| { cx.update(|window, cx| {
let registry = Registry::global(cx); let registry = Registry::global(cx);
let settings = AppSettings::global(cx); let settings = AppSettings::global(cx);
match signal { match signal {
SignalKind::SignerSet(public_key) => { Signal::SignerSet(public_key) => {
window.close_modal(cx); window.close_modal(cx);
// Setup the default layout for current workspace // Setup the default layout for current workspace
@@ -545,11 +476,11 @@ impl ChatSpace {
// Load all chat rooms // Load all chat rooms
registry.update(cx, |this, cx| { registry.update(cx, |this, cx| {
this.set_signer_pubkey(public_key, cx); this.set_identity(public_key, cx);
this.load_rooms(window, cx); this.load_rooms(window, cx);
}); });
} }
SignalKind::SignerUnset => { Signal::SignerUnset => {
// Setup the onboarding layout for current workspace // Setup the onboarding layout for current workspace
view.update(cx, |this, cx| { view.update(cx, |this, cx| {
this.set_onboarding_layout(window, cx); this.set_onboarding_layout(window, cx);
@@ -561,7 +492,7 @@ impl ChatSpace {
this.reset(cx); this.reset(cx);
}); });
} }
SignalKind::Auth(req) => { Signal::Auth(req) => {
let url = &req.url; let url = &req.url;
let auto_auth = AppSettings::get_auto_auth(cx); let auto_auth = AppSettings::get_auto_auth(cx);
let is_authenticated = AppSettings::read_global(cx).is_authenticated(url); let is_authenticated = AppSettings::read_global(cx).is_authenticated(url);
@@ -579,7 +510,7 @@ impl ChatSpace {
}) })
.ok(); .ok();
} }
SignalKind::ProxyDown => { Signal::ProxyDown => {
if !is_open_proxy_modal { if !is_open_proxy_modal {
is_open_proxy_modal = true; is_open_proxy_modal = true;
@@ -589,28 +520,28 @@ impl ChatSpace {
.ok(); .ok();
} }
} }
SignalKind::GiftWrapStatus(status) => { Signal::GiftWrapProcess(status) => {
registry.update(cx, |this, cx| { registry.update(cx, |this, cx| {
this.set_unwrapping_status(status, cx); this.set_unwrapping_status(status, cx);
}); });
} }
SignalKind::NewProfile(profile) => { Signal::Metadata(profile) => {
registry.update(cx, |this, cx| { registry.update(cx, |this, cx| {
this.insert_or_update_person(profile, cx); this.insert_or_update_person(profile, cx);
}); });
} }
SignalKind::NewMessage((gift_wrap_id, event)) => { Signal::Message((gift_wrap_id, event)) => {
registry.update(cx, |this, cx| { registry.update(cx, |this, cx| {
this.event_to_message(gift_wrap_id, event, window, cx); this.event_to_message(gift_wrap_id, event, window, cx);
}); });
} }
SignalKind::RelaysNotFound => { Signal::DmRelayNotFound => {
view.update(cx, |this, cx| { view.update(cx, |this, cx| {
this.set_required_relays(cx); this.set_required_relays(cx);
}) })
.ok(); .ok();
} }
SignalKind::Notice(msg) => { Signal::Notice(msg) => {
window.push_notification(msg.as_str(), cx); window.push_notification(msg.as_str(), cx);
} }
}; };
@@ -631,22 +562,64 @@ impl ChatSpace {
/// Fetches a single event by kind and public key /// Fetches a single event by kind and public key
pub async fn fetch_single_event(kind: Kind, public_key: PublicKey) { pub async fn fetch_single_event(kind: Kind, public_key: PublicKey) {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let css = css();
let filter = Filter::new().kind(kind).author(public_key).limit(1); let filter = Filter::new().kind(kind).author(public_key).limit(1);
if let Err(e) = client.subscribe(filter, app_state.auto_close_opts).await { if let Err(e) = client.subscribe(filter, css.auto_close_opts).await {
log::info!("Failed to subscribe: {e}"); log::info!("Failed to subscribe: {e}");
} }
} }
/// Fetches gift wrap events for a given public key and relays pub async fn fetch_nip17_relays(public_key: PublicKey) {
let client = nostr_client();
let ingester = ingester();
let filter = Filter::new()
.kind(Kind::InboxRelays)
.author(public_key)
.limit(1);
match client.stream_events(filter, Duration::from_secs(5)).await {
Ok(mut stream) => {
let mut processed_ids = HashSet::new();
if let Some(event) = stream.next().await {
if processed_ids.insert(event.id) {
let relays = nip17::extract_relay_list(&event).collect_vec();
if !relays.is_empty() {
for relay in relays.clone().into_iter() {
if client.add_relay(relay).await.is_err() {
let notice = Notice::RelayFailed(relay.clone());
ingester.send(Signal::Notice(notice)).await;
}
if client.connect_relay(relay).await.is_err() {
let notice = Notice::RelayFailed(relay.clone());
ingester.send(Signal::Notice(notice)).await;
}
}
// Subscribe to gift wrap events only in the current user's NIP-17 relays
Self::fetch_gift_wrap(relays, event.pubkey).await;
}
}
} else {
ingester.send(Signal::DmRelayNotFound).await;
}
}
Err(e) => {
log::error!("Error fetching NIP-17 Relay: {e:?}");
ingester.send(Signal::DmRelayNotFound).await;
}
};
}
pub async fn fetch_gift_wrap(relays: Vec<&RelayUrl>, public_key: PublicKey) { pub async fn fetch_gift_wrap(relays: Vec<&RelayUrl>, public_key: PublicKey) {
let client = nostr_client(); let client = nostr_client();
let id = app_state().gift_wrap_sub_id.clone(); let sub_id = css().gift_wrap_sub_id.clone();
let filter = Filter::new().kind(Kind::GiftWrap).pubkey(public_key); let filter = Filter::new().kind(Kind::GiftWrap).pubkey(public_key);
if client if client
.subscribe_with_id_to(relays.clone(), id, filter, None) .subscribe_with_id_to(relays.clone(), sub_id, filter, None)
.await .await
.is_ok() .is_ok()
{ {
@@ -661,7 +634,7 @@ impl ChatSpace {
} }
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let css = css();
let kinds = vec![Kind::Metadata, Kind::ContactList, Kind::RelayList]; let kinds = vec![Kind::Metadata, Kind::ContactList, Kind::RelayList];
let limit = public_keys.len() * kinds.len() + 20; let limit = public_keys.len() * kinds.len() + 20;
@@ -670,13 +643,13 @@ impl ChatSpace {
let filter = Filter::new().authors(public_keys).kinds(kinds).limit(limit); let filter = Filter::new().authors(public_keys).kinds(kinds).limit(limit);
client client
.subscribe_to(BOOTSTRAP_RELAYS, filter, app_state.auto_close_opts) .subscribe_to(BOOTSTRAP_RELAYS, filter, css.auto_close_opts)
.await .await
.ok(); .ok();
} }
/// Stores an unwrapped event in local database with reference to original /// Stores an unwrapped event in local database with reference to original
async fn set_unwrapped_event(gift_wrap: EventId, unwrapped: &Event) -> Result<(), Error> { async fn set_unwrapped_event(root: EventId, unwrapped: &Event) -> Result<(), Error> {
let client = nostr_client(); let client = nostr_client();
// Save unwrapped event // Save unwrapped event
@@ -684,7 +657,7 @@ impl ChatSpace {
// Create a reference event pointing to the unwrapped event // Create a reference event pointing to the unwrapped event
let event = EventBuilder::new(Kind::ApplicationSpecificData, "") let event = EventBuilder::new(Kind::ApplicationSpecificData, "")
.tags(vec![Tag::identifier(gift_wrap), Tag::event(unwrapped.id)]) .tags(vec![Tag::identifier(root), Tag::event(unwrapped.id)])
.sign(&Keys::generate()) .sign(&Keys::generate())
.await?; .await?;
@@ -716,9 +689,10 @@ impl ChatSpace {
} }
/// Unwraps a gift-wrapped event and processes its contents. /// Unwraps a gift-wrapped event and processes its contents.
async fn unwrap_gift_wrap(target: &Event) { async fn unwrap_gift_wrap(target: &Event, pubkey_tx: &Sender<PublicKey>) {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let ingester = ingester();
let css = css();
let mut message: Option<Event> = None; let mut message: Option<Event> = None;
if let Ok(event) = Self::get_unwrapped_event(target.id).await { if let Ok(event) = Self::get_unwrapped_event(target.id).await {
@@ -738,22 +712,18 @@ impl ChatSpace {
if let Some(event) = message { if let Some(event) = message {
// Send all pubkeys to the metadata batch to sync data // Send all pubkeys to the metadata batch to sync data
for public_key in event.all_pubkeys() { for public_key in event.all_pubkeys() {
app_state.ingester.send(public_key).await; pubkey_tx.send_async(public_key).await.ok();
} }
match event.created_at >= app_state.init_at { match event.created_at >= css.init_at {
// New message: send a signal to notify the UI // New message: send a signal to notify the UI
true => { true => {
app_state smol::Timer::after(Duration::from_millis(200)).await;
.signal ingester.send(Signal::Message((target.id, event))).await;
.send(SignalKind::NewMessage((target.id, event)))
.await;
} }
// Old message: Coop is probably processing the user's messages during initial load // Old message: Coop is probably processing the user's messages during initial load
false => { false => {
app_state css.gift_wrap_processing.store(true, Ordering::Release);
.gift_wrap_processing
.store(true, Ordering::Release);
} }
} }
} }
@@ -804,7 +774,7 @@ impl ChatSpace {
let task: Task<Result<(), Error>> = cx.background_spawn(async move { let task: Task<Result<(), Error>> = cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let css = css();
let signer = client.signer().await?; let signer = client.signer().await?;
// Construct event // Construct event
@@ -835,7 +805,7 @@ impl ChatSpace {
relay.resubscribe().await?; relay.resubscribe().await?;
// Get all failed events that need to be resent // Get all failed events that need to be resent
let mut queue = app_state.resend_queue.write().await; let mut queue = css.resend_queue.write().await;
let ids: Vec<EventId> = queue let ids: Vec<EventId> = queue
.iter() .iter()
@@ -854,8 +824,8 @@ impl ChatSpace {
success: HashSet::from([relay_url]), success: HashSet::from([relay_url]),
}; };
app_state.sent_ids.write().await.insert(event_id); css.sent_ids.write().await.insert(event_id);
app_state.resent_ids.write().await.push(output); css.resent_ids.write().await.push(output);
} }
} }
} }
@@ -960,33 +930,28 @@ impl ChatSpace {
} }
fn reopen_auth_request(&mut self, window: &mut Window, cx: &mut Context<Self>) { fn reopen_auth_request(&mut self, window: &mut Window, cx: &mut Context<Self>) {
for (_, request) in self.auth_requests.read(cx).clone() { for (_, request) in self.auth_requests.clone().into_iter() {
self.open_auth_request(request, window, cx); self.open_auth_request(request, window, cx);
} }
} }
fn push_auth_request(&mut self, req: &AuthRequest, cx: &mut Context<Self>) { fn push_auth_request(&mut self, req: &AuthRequest, cx: &mut Context<Self>) {
self.auth_requests.update(cx, |this, cx| { self.auth_requests.insert(req.url.clone(), req.to_owned());
this.insert(req.url.clone(), req.to_owned()); cx.notify();
cx.notify();
});
} }
fn sending_auth_request(&mut self, challenge: &str, cx: &mut Context<Self>) { fn sending_auth_request(&mut self, challenge: &str, cx: &mut Context<Self>) {
self.auth_requests.update(cx, |this, cx| { for (_, req) in self.auth_requests.iter_mut() {
for (_, req) in this.iter_mut() { if req.challenge == challenge {
if req.challenge == challenge { req.sending = true;
req.sending = true; cx.notify();
cx.notify();
}
} }
}); }
} }
fn is_sending_auth_request(&self, challenge: &str, cx: &App) -> bool { fn is_sending_auth_request(&self, challenge: &str, _cx: &App) -> bool {
if let Some(req) = self if let Some(req) = self
.auth_requests .auth_requests
.read(cx)
.iter() .iter()
.find(|(_, req)| req.challenge == challenge) .find(|(_, req)| req.challenge == challenge)
{ {
@@ -997,10 +962,8 @@ impl ChatSpace {
} }
fn remove_auth_request(&mut self, challenge: &str, cx: &mut Context<Self>) { fn remove_auth_request(&mut self, challenge: &str, cx: &mut Context<Self>) {
self.auth_requests.update(cx, |this, cx| { self.auth_requests.retain(|_, r| r.challenge != challenge);
this.retain(|_, r| r.challenge != challenge); cx.notify();
cx.notify();
});
} }
fn set_onboarding_layout(&mut self, window: &mut Window, cx: &mut Context<Self>) { fn set_onboarding_layout(&mut self, window: &mut Window, cx: &mut Context<Self>) {
@@ -1020,7 +983,7 @@ impl ChatSpace {
window: &mut Window, window: &mut Window,
cx: &mut Context<Self>, cx: &mut Context<Self>,
) { ) {
let panel = Arc::new(account::init(profile, secret, window, cx)); let panel = Arc::new(account::init(secret, profile, window, cx));
let center = DockItem::panel(panel); let center = DockItem::panel(panel);
self.dock.update(cx, |this, cx| { self.dock.update(cx, |this, cx| {
@@ -1120,7 +1083,7 @@ impl ChatSpace {
) { ) {
let task: Task<Result<(), Error>> = cx.background_spawn(async move { let task: Task<Result<(), Error>> = cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let css = css();
let filter = Filter::new().kind(Kind::PrivateDirectMessage); let filter = Filter::new().kind(Kind::PrivateDirectMessage);
@@ -1139,7 +1102,7 @@ impl ChatSpace {
.authors(pubkeys); .authors(pubkeys);
client client
.subscribe_to(BOOTSTRAP_RELAYS, filter, app_state.auto_close_opts) .subscribe_to(BOOTSTRAP_RELAYS, filter, css.auto_close_opts)
.await?; .await?;
Ok(()) Ok(())
@@ -1159,7 +1122,7 @@ impl ChatSpace {
fn on_sign_out(&mut self, _e: &Logout, _window: &mut Window, cx: &mut Context<Self>) { fn on_sign_out(&mut self, _e: &Logout, _window: &mut Window, cx: &mut Context<Self>) {
cx.background_spawn(async move { cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let ingester = ingester();
let filter = Filter::new() let filter = Filter::new()
.kind(Kind::ApplicationSpecificData) .kind(Kind::ApplicationSpecificData)
@@ -1172,12 +1135,12 @@ impl ChatSpace {
client.reset().await; client.reset().await;
// Notify the channel about the signer being unset // Notify the channel about the signer being unset
app_state.signal.send(SignalKind::SignerUnset).await; ingester.send(Signal::SignerUnset).await;
}) })
.detach(); .detach();
} }
fn on_open_pubkey(&mut self, ev: &OpenPublicKey, window: &mut Window, cx: &mut Context<Self>) { fn on_open_profile(&mut self, ev: &OpenProfile, window: &mut Window, cx: &mut Context<Self>) {
let public_key = ev.0; let public_key = ev.0;
let profile = user_profile::init(public_key, window, cx); let profile = user_profile::init(public_key, window, cx);
@@ -1195,12 +1158,6 @@ impl ChatSpace {
}); });
} }
fn on_copy_pubkey(&mut self, ev: &CopyPublicKey, window: &mut Window, cx: &mut Context<Self>) {
let Ok(bech32) = ev.0.to_bech32();
cx.write_to_clipboard(ClipboardItem::new_string(bech32));
window.push_notification(t!("common.copied"), cx);
}
fn render_proxy_modal(&mut self, window: &mut Window, cx: &mut App) { fn render_proxy_modal(&mut self, window: &mut Window, cx: &mut App) {
window.open_modal(cx, |this, _window, _cx| { window.open_modal(cx, |this, _window, _cx| {
this.overlay_closable(false) this.overlay_closable(false)
@@ -1288,7 +1245,7 @@ impl ChatSpace {
.w_full() .w_full()
.child(compose_button()) .child(compose_button())
.when(status != &UnwrappingStatus::Complete, |this| { .when(status != &UnwrappingStatus::Complete, |this| {
this.child(deferred( this.child(
h_flex() h_flex()
.px_2() .px_2()
.h_6() .h_6()
@@ -1297,7 +1254,7 @@ impl ChatSpace {
.rounded_full() .rounded_full()
.bg(cx.theme().surface_background) .bg(cx.theme().surface_background)
.child(shared_t!("loading.label")), .child(shared_t!("loading.label")),
)) )
}) })
} }
@@ -1310,7 +1267,7 @@ impl ChatSpace {
let proxy = AppSettings::get_proxy_user_avatars(cx); let proxy = AppSettings::get_proxy_user_avatars(cx);
let updating = AutoUpdater::read_global(cx).status.is_updating(); let updating = AutoUpdater::read_global(cx).status.is_updating();
let updated = AutoUpdater::read_global(cx).status.is_updated(); let updated = AutoUpdater::read_global(cx).status.is_updated();
let auth_requests = self.auth_requests.read(cx).len(); let auth_requests = self.auth_requests.len();
h_flex() h_flex()
.gap_1() .gap_1()
@@ -1375,7 +1332,7 @@ impl ChatSpace {
.reverse() .reverse()
.transparent() .transparent()
.icon(IconName::CaretDown) .icon(IconName::CaretDown)
.child(Avatar::new(profile.avatar(proxy)).size(rems(1.49))) .child(Avatar::new(profile.avatar_url(proxy)).size(rems(1.49)))
.popup_menu(|this, _window, _cx| { .popup_menu(|this, _window, _cx| {
this.menu(t!("user.dark_mode"), Box::new(DarkMode)) this.menu(t!("user.dark_mode"), Box::new(DarkMode))
.menu(t!("user.settings"), Box::new(Settings)) .menu(t!("user.settings"), Box::new(Settings))
@@ -1402,7 +1359,7 @@ impl ChatSpace {
this._tasks.push(cx.background_spawn(async move { this._tasks.push(cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let ingester = ingester();
if proxy.start().await.is_ok() { if proxy.start().await.is_ok() {
webbrowser::open(&url).ok(); webbrowser::open(&url).ok();
@@ -1433,7 +1390,7 @@ impl ChatSpace {
break; break;
} else { } else {
app_state.signal.send(SignalKind::ProxyDown).await; ingester.send(Signal::ProxyDown).await;
} }
smol::Timer::after(Duration::from_secs(1)).await; smol::Timer::after(Duration::from_secs(1)).await;
} }
@@ -1481,8 +1438,8 @@ impl Render for ChatSpace {
let registry = Registry::read_global(cx); let registry = Registry::read_global(cx);
// Only render titlebar child elements if user is logged in // Only render titlebar child elements if user is logged in
if let Some(public_key) = registry.signer_pubkey() { if registry.identity.is_some() {
let profile = registry.get_person(&public_key, cx); let profile = registry.identity(cx);
let left_side = self let left_side = self
.render_titlebar_left_side(window, cx) .render_titlebar_left_side(window, cx)
@@ -1498,12 +1455,10 @@ impl Render for ChatSpace {
} }
div() div()
.id(SharedString::from("chatspace"))
.on_action(cx.listener(Self::on_settings)) .on_action(cx.listener(Self::on_settings))
.on_action(cx.listener(Self::on_dark_mode)) .on_action(cx.listener(Self::on_dark_mode))
.on_action(cx.listener(Self::on_sign_out)) .on_action(cx.listener(Self::on_sign_out))
.on_action(cx.listener(Self::on_open_pubkey)) .on_action(cx.listener(Self::on_open_profile))
.on_action(cx.listener(Self::on_copy_pubkey))
.on_action(cx.listener(Self::on_reload_metadata)) .on_action(cx.listener(Self::on_reload_metadata))
.relative() .relative()
.size_full() .size_full()
+13 -2
View File
@@ -2,12 +2,13 @@ use std::sync::Arc;
use assets::Assets; use assets::Assets;
use global::constants::{APP_ID, APP_NAME}; use global::constants::{APP_ID, APP_NAME};
use global::{app_state, nostr_client}; use global::{css, ingester, nostr_client};
use gpui::{ use gpui::{
point, px, size, AppContext, Application, Bounds, KeyBinding, Menu, MenuItem, SharedString, point, px, size, AppContext, Application, Bounds, KeyBinding, Menu, MenuItem, SharedString,
TitlebarOptions, WindowBackgroundAppearance, WindowBounds, WindowDecorations, WindowKind, TitlebarOptions, WindowBackgroundAppearance, WindowBounds, WindowDecorations, WindowKind,
WindowOptions, WindowOptions,
}; };
use theme::Theme;
use ui::Root; use ui::Root;
use crate::actions::{load_embedded_fonts, quit, Quit}; use crate::actions::{load_embedded_fonts, quit, Quit};
@@ -25,8 +26,11 @@ fn main() {
// Initialize the Nostr client // Initialize the Nostr client
let _client = nostr_client(); let _client = nostr_client();
// Initialize the ingester
let _ingester = ingester();
// Initialize the coop simple storage // Initialize the coop simple storage
let _app_state = app_state(); let _css = css();
// Initialize the Application // Initialize the Application
let app = Application::new() let app = Application::new()
@@ -78,6 +82,13 @@ fn main() {
// Bring the app to the foreground // Bring the app to the foreground
cx.activate(true); cx.activate(true);
// Automatically sync theme with system appearance
window
.observe_window_appearance(|window, cx| {
Theme::sync_system_appearance(Some(window), cx);
})
.detach();
// Root Entity // Root Entity
cx.new(|cx| { cx.new(|cx| {
// Initialize the tokio runtime // Initialize the tokio runtime
+54 -100
View File
@@ -2,15 +2,15 @@ use std::time::Duration;
use anyhow::Error; use anyhow::Error;
use client_keys::ClientKeys; use client_keys::ClientKeys;
use common::display::RenderedProfile; use common::display::ReadableProfile;
use common::handle_auth::CoopAuthUrlHandler;
use global::constants::{ACCOUNT_IDENTIFIER, BUNKER_TIMEOUT}; use global::constants::{ACCOUNT_IDENTIFIER, BUNKER_TIMEOUT};
use global::{app_state, nostr_client, SignalKind}; use global::{ingester, nostr_client, Signal};
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
div, relative, rems, svg, AnyElement, App, AppContext, Context, Entity, EventEmitter, div, relative, rems, svg, AnyElement, App, AppContext, Context, Entity, EventEmitter,
FocusHandle, Focusable, InteractiveElement, IntoElement, ParentElement, Render, FocusHandle, Focusable, InteractiveElement, IntoElement, ParentElement, Render, SharedString,
RetainAllImageCache, SharedString, StatefulInteractiveElement, Styled, Subscription, Task, StatefulInteractiveElement, Styled, Task, WeakEntity, Window,
WeakEntity, Window,
}; };
use i18n::{shared_t, t}; use i18n::{shared_t, t};
use nostr_connect::prelude::*; use nostr_connect::prelude::*;
@@ -22,20 +22,18 @@ use ui::button::{Button, ButtonVariants};
use ui::dock_area::panel::{Panel, PanelEvent}; use ui::dock_area::panel::{Panel, PanelEvent};
use ui::indicator::Indicator; use ui::indicator::Indicator;
use ui::input::{InputState, TextInput}; use ui::input::{InputState, TextInput};
use ui::notification::Notification;
use ui::popup_menu::PopupMenu; use ui::popup_menu::PopupMenu;
use ui::{h_flex, v_flex, ContextModal, Sizable, StyledExt}; use ui::{h_flex, v_flex, ContextModal, Disableable, Sizable, StyledExt};
use crate::actions::CoopAuthUrlHandler;
use crate::chatspace::ChatSpace; use crate::chatspace::ChatSpace;
pub fn init( pub fn init(
profile: Profile,
secret: String, secret: String,
profile: Profile,
window: &mut Window, window: &mut Window,
cx: &mut App, cx: &mut App,
) -> Entity<Account> { ) -> Entity<Account> {
cx.new(|cx| Account::new(secret, profile, window, cx)) Account::new(secret, profile, window, cx)
} }
pub struct Account { pub struct Account {
@@ -44,33 +42,18 @@ pub struct Account {
is_bunker: bool, is_bunker: bool,
is_extension: bool, is_extension: bool,
loading: bool, loading: bool,
// Panel
name: SharedString, name: SharedString,
focus_handle: FocusHandle, focus_handle: FocusHandle,
image_cache: Entity<RetainAllImageCache>,
_subscriptions: SmallVec<[Subscription; 1]>,
_tasks: SmallVec<[Task<()>; 1]>, _tasks: SmallVec<[Task<()>; 1]>,
} }
impl Account { impl Account {
fn new(secret: String, profile: Profile, window: &mut Window, cx: &mut Context<Self>) -> Self { fn new(secret: String, profile: Profile, _window: &mut Window, cx: &mut App) -> Entity<Self> {
let is_bunker = secret.starts_with("bunker://"); let is_bunker = secret.starts_with("bunker://");
let is_extension = secret.starts_with("extension"); let is_extension = secret.starts_with("extension");
let mut subscriptions = smallvec![]; cx.new(|cx| Self {
subscriptions.push(
// Clear the local state when user closes the account panel
cx.on_release_in(window, move |this, window, cx| {
this.stored_secret.clear();
this.image_cache.update(cx, |this, cx| {
this.clear(window, cx);
});
}),
);
Self {
profile, profile,
is_bunker, is_bunker,
is_extension, is_extension,
@@ -78,10 +61,8 @@ impl Account {
loading: false, loading: false,
name: "Account".into(), name: "Account".into(),
focus_handle: cx.focus_handle(), focus_handle: cx.focus_handle(),
image_cache: RetainAllImageCache::new(cx),
_subscriptions: subscriptions,
_tasks: smallvec![], _tasks: smallvec![],
} })
} }
fn login(&mut self, window: &mut Window, cx: &mut Context<Self>) { fn login(&mut self, window: &mut Window, cx: &mut Context<Self>) {
@@ -112,8 +93,8 @@ impl Account {
signer.auth_url_handler(CoopAuthUrlHandler); signer.auth_url_handler(CoopAuthUrlHandler);
self._tasks.push( self._tasks.push(
// Handle connection in the background // Handle connection
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |_this, cx| {
let client = nostr_client(); let client = nostr_client();
match signer.bunker_uri().await { match signer.bunker_uri().await {
@@ -122,9 +103,8 @@ impl Account {
client.set_signer(signer).await; client.set_signer(signer).await;
} }
Err(e) => { Err(e) => {
this.update_in(cx, |this, window, cx| { cx.update(|window, cx| {
this.set_loading(false, cx); window.push_notification(e.to_string(), cx);
window.push_notification(Notification::error(e.to_string()), cx);
}) })
.ok(); .ok();
} }
@@ -268,7 +248,7 @@ impl Account {
// Reset the nostr client in the background // Reset the nostr client in the background
cx.background_spawn(async move { cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let ingester = ingester();
let filter = Filter::new() let filter = Filter::new()
.kind(Kind::ApplicationSpecificData) .kind(Kind::ApplicationSpecificData)
@@ -281,7 +261,7 @@ impl Account {
client.unset_signer().await; client.unset_signer().await;
// Notify the channel about the signer being unset // Notify the channel about the signer being unset
app_state.signal.send(SignalKind::SignerUnset).await; ingester.send(Signal::SignerUnset).await;
}), }),
); );
} }
@@ -321,7 +301,6 @@ impl Focusable for Account {
impl Render for Account { impl Render for Account {
fn render(&mut self, _window: &mut gpui::Window, cx: &mut Context<Self>) -> impl IntoElement { fn render(&mut self, _window: &mut gpui::Window, cx: &mut Context<Self>) -> impl IntoElement {
v_flex() v_flex()
.image_cache(self.image_cache.clone())
.relative() .relative()
.size_full() .size_full()
.gap_10() .gap_10()
@@ -363,72 +342,46 @@ impl Render for Account {
.id("account") .id("account")
.h_10() .h_10()
.w_72() .w_72()
.bg(cx.theme().elevated_surface_background) .bg(cx.theme().element_background)
.text_color(cx.theme().element_foreground)
.rounded_lg() .rounded_lg()
.text_sm() .text_sm()
.when(self.loading, |this| { .map(|this| {
this.child( if self.loading {
div() this.child(
.size_full() div()
.flex() .size_full()
.items_center() .flex()
.justify_center() .items_center()
.child(Indicator::new().small()), .justify_center()
) .child(Indicator::new().small()),
}) )
.when(!self.loading, |this| { } else {
let avatar = self.profile.avatar(true); this.child(
let name = self.profile.display_name(); div()
.h_full()
this.child( .flex()
h_flex() .items_center()
.h_full() .justify_center()
.justify_center() .gap_2()
.gap_2() .child(shared_t!("onboarding.choose_account"))
.child( .child(
h_flex() h_flex()
.gap_1() .gap_1()
.child(Avatar::new(avatar).size(rems(1.5))) .child(
.child(div().pb_px().font_semibold().child(name)), Avatar::new(self.profile.avatar_url(true))
) .size(rems(1.5)),
.child(
div()
.when(self.is_bunker, |this| {
let label = SharedString::from("Nostr Connect");
this.child(
div()
.py_0p5()
.px_2()
.text_xs()
.bg(cx.theme().secondary_active)
.text_color(
cx.theme().secondary_foreground,
)
.rounded_full()
.child(label),
) )
}) .child(
.when(self.is_extension, |this| {
let label = SharedString::from("Extension");
this.child(
div() div()
.py_0p5() .pb_px()
.px_2() .font_semibold()
.text_xs() .child(self.profile.display_name()),
.bg(cx.theme().secondary_active) ),
.text_color( ),
cx.theme().secondary_foreground, )
) }
.rounded_full()
.child(label),
)
}),
),
)
}) })
.active(|this| this.bg(cx.theme().element_active))
.hover(|this| this.bg(cx.theme().element_hover)) .hover(|this| this.bg(cx.theme().element_hover))
.on_click(cx.listener(move |this, _e, window, cx| { .on_click(cx.listener(move |this, _e, window, cx| {
this.login(window, cx); this.login(window, cx);
@@ -438,6 +391,7 @@ impl Render for Account {
Button::new("logout") Button::new("logout")
.label(t!("user.sign_out")) .label(t!("user.sign_out"))
.ghost() .ghost()
.disabled(self.loading)
.on_click(cx.listener(move |this, _e, window, cx| { .on_click(cx.listener(move |this, _e, window, cx| {
this.logout(window, cx); this.logout(window, cx);
})), })),
File diff suppressed because it is too large Load Diff
+3 -3
View File
@@ -2,7 +2,7 @@ use gpui::{
div, App, AppContext, Context, Entity, IntoElement, ParentElement, Render, SharedString, div, App, AppContext, Context, Entity, IntoElement, ParentElement, Render, SharedString,
Styled, Window, Styled, Window,
}; };
use i18n::{shared_t, t}; use i18n::t;
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::input::{InputState, TextInput}; use ui::input::{InputState, TextInput};
use ui::{v_flex, Sizable}; use ui::{v_flex, Sizable};
@@ -41,7 +41,7 @@ impl Render for Subject {
div() div()
.text_sm() .text_sm()
.text_color(cx.theme().text_muted) .text_color(cx.theme().text_muted)
.child(shared_t!("subject.title")), .child(SharedString::new(t!("subject.title"))),
) )
.child(TextInput::new(&self.input).small()) .child(TextInput::new(&self.input).small())
.child( .child(
@@ -49,7 +49,7 @@ impl Render for Subject {
.text_xs() .text_xs()
.italic() .italic()
.text_color(cx.theme().text_placeholder) .text_color(cx.theme().text_placeholder)
.child(shared_t!("subject.help_text")), .child(SharedString::new(t!("subject.help_text"))),
) )
} }
} }
+300 -263
View File
@@ -2,28 +2,28 @@ use std::ops::Range;
use std::time::Duration; use std::time::Duration;
use anyhow::{anyhow, Error}; use anyhow::{anyhow, Error};
use common::display::{RenderedProfile, TextUtils}; use common::display::{ReadableProfile, TextUtils};
use common::nip05::nip05_profile; use common::nip05::nip05_profile;
use global::constants::BOOTSTRAP_RELAYS; use global::constants::BOOTSTRAP_RELAYS;
use global::{app_state, nostr_client}; use global::nostr_client;
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
div, px, relative, rems, uniform_list, App, AppContext, Context, Entity, InteractiveElement, div, px, relative, rems, uniform_list, AppContext, Context, Entity, InteractiveElement,
IntoElement, ParentElement, Render, RetainAllImageCache, SharedString, IntoElement, ParentElement, Render, SharedString, StatefulInteractiveElement, Styled,
StatefulInteractiveElement, Styled, Subscription, Task, Window, Subscription, Task, Window,
}; };
use gpui_tokio::Tokio; use i18n::t;
use i18n::{shared_t, t}; use itertools::Itertools;
use nostr_sdk::prelude::*; use nostr_sdk::prelude::*;
use registry::room::Room; use registry::room::{Room, RoomKind};
use registry::Registry; use registry::Registry;
use settings::AppSettings; use settings::AppSettings;
use smallvec::{smallvec, SmallVec}; use smallvec::{smallvec, SmallVec};
use smol::Timer;
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::avatar::Avatar; use ui::avatar::Avatar;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonRounded, ButtonVariants};
use ui::input::{InputEvent, InputState, TextInput}; use ui::input::{InputEvent, InputState, TextInput};
use ui::modal::ModalButtonProps;
use ui::notification::Notification; use ui::notification::Notification;
use ui::{h_flex, v_flex, ContextModal, Disableable, Icon, IconName, Sizable, StyledExt}; use ui::{h_flex, v_flex, ContextModal, Disableable, Icon, IconName, Sizable, StyledExt};
@@ -34,46 +34,22 @@ pub fn compose_button() -> impl IntoElement {
.ghost_alt() .ghost_alt()
.cta() .cta()
.small() .small()
.rounded() .rounded(ButtonRounded::Full)
.on_click(move |_, window, cx| { .on_click(move |_, window, cx| {
let compose = cx.new(|cx| Compose::new(window, cx)); let compose = cx.new(|cx| Compose::new(window, cx));
let weak_view = compose.downgrade(); let title = SharedString::new(t!("sidebar.direct_messages"));
window.open_modal(cx, move |modal, _window, cx| { window.open_modal(cx, move |modal, _window, _cx| {
let weak_view = weak_view.clone(); modal.title(title.clone()).child(compose.clone())
let label = if compose.read(cx).selected(cx).len() > 1 {
shared_t!("compose.create_group_dm_button")
} else {
shared_t!("compose.create_dm_button")
};
modal
.alert()
.overlay_closable(true)
.keyboard(true)
.show_close(true)
.button_props(ModalButtonProps::default().ok_text(label))
.title(shared_t!("sidebar.direct_messages"))
.child(compose.clone())
.on_ok(move |_, window, cx| {
weak_view
.update(cx, |this, cx| {
this.submit(window, cx);
})
.ok();
// false to prevent the modal from closing
false
})
}) })
}), }),
) )
} }
#[derive(Debug, PartialEq, Eq, PartialOrd, Ord)] #[derive(Debug)]
struct Contact { struct Contact {
public_key: PublicKey, public_key: PublicKey,
selected: bool, select: bool,
} }
impl AsRef<PublicKey> for Contact { impl AsRef<PublicKey> for Contact {
@@ -86,12 +62,12 @@ impl Contact {
pub fn new(public_key: PublicKey) -> Self { pub fn new(public_key: PublicKey) -> Self {
Self { Self {
public_key, public_key,
selected: false, select: false,
} }
} }
pub fn selected(mut self) -> Self { pub fn select(mut self) -> Self {
self.selected = true; self.select = true;
self self
} }
} }
@@ -99,209 +75,188 @@ impl Contact {
pub struct Compose { pub struct Compose {
/// Input for the room's subject /// Input for the room's subject
title_input: Entity<InputState>, title_input: Entity<InputState>,
/// Input for the room's members /// Input for the room's members
user_input: Entity<InputState>, user_input: Entity<InputState>,
/// The current user's contacts
/// User's contacts contacts: Vec<Entity<Contact>>,
contacts: Entity<Vec<Contact>>, /// Input error message
/// Error message
error_message: Entity<Option<SharedString>>, error_message: Entity<Option<SharedString>>,
adding: bool,
image_cache: Entity<RetainAllImageCache>, submitting: bool,
_subscriptions: SmallVec<[Subscription; 2]>, #[allow(dead_code)]
_tasks: SmallVec<[Task<()>; 1]>, subscriptions: SmallVec<[Subscription; 1]>,
} }
impl Compose { impl Compose {
pub fn new(window: &mut Window, cx: &mut Context<'_, Self>) -> Self { pub fn new(window: &mut Window, cx: &mut Context<'_, Self>) -> Self {
let contacts = cx.new(|_| vec![]);
let error_message = cx.new(|_| None);
let user_input = let user_input =
cx.new(|cx| InputState::new(window, cx).placeholder("npub or nprofile...")); cx.new(|cx| InputState::new(window, cx).placeholder(t!("compose.placeholder_npub")));
let title_input = let title_input =
cx.new(|cx| InputState::new(window, cx).placeholder("Family...(Optional)")); cx.new(|cx| InputState::new(window, cx).placeholder(t!("compose.placeholder_title")));
let error_message = cx.new(|_| None);
let mut subscriptions = smallvec![]; let mut subscriptions = smallvec![];
let mut tasks = smallvec![];
// Handle Enter event for user input
subscriptions.push(cx.subscribe_in(
&user_input,
window,
move |this, _input, event, window, cx| {
if let InputEvent::PressEnter { .. } = event {
this.add_and_select_contact(window, cx)
};
},
));
let get_contacts: Task<Result<Vec<Contact>, Error>> = cx.background_spawn(async move { let get_contacts: Task<Result<Vec<Contact>, Error>> = cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let signer = client.signer().await?; let signer = client.signer().await?;
let public_key = signer.get_public_key().await?; let public_key = signer.get_public_key().await?;
let profiles = client.database().contacts(public_key).await?; let profiles = client.database().contacts(public_key).await?;
let contacts: Vec<Contact> = profiles let contacts = profiles
.into_iter() .into_iter()
.map(|profile| Contact::new(profile.public_key())) .map(|profile| Contact::new(profile.public_key()))
.collect(); .collect_vec();
Ok(contacts) Ok(contacts)
}); });
tasks.push( cx.spawn_in(window, async move |this, cx| {
// Load all contacts match get_contacts.await {
cx.spawn_in(window, async move |this, cx| { Ok(contacts) => {
match get_contacts.await { this.update(cx, |this, cx| {
Ok(contacts) => { this.extend_contacts(contacts, cx);
this.update(cx, |this, cx| { })
this.extend_contacts(contacts, cx); .ok();
}) }
.ok(); Err(e) => {
} cx.update(|window, cx| {
Err(e) => { window.push_notification(Notification::error(e.to_string()), cx);
cx.update(|window, cx| { })
window.push_notification(Notification::error(e.to_string()), cx); .ok();
}) }
.ok(); };
} })
}; .detach();
}),
);
subscriptions.push(
// Clear the image cache when sidebar is closed
cx.on_release_in(window, move |this, window, cx| {
this.image_cache.update(cx, |this, cx| {
this.clear(window, cx);
})
}),
);
subscriptions.push(
// Handle Enter event for user input
cx.subscribe_in(
&user_input,
window,
move |this, _input, event, window, cx| {
if let InputEvent::PressEnter { .. } = event {
this.add_and_select_contact(window, cx)
};
},
),
);
Self { Self {
adding: false,
submitting: false,
contacts: vec![],
title_input, title_input,
user_input, user_input,
error_message, error_message,
contacts, subscriptions,
image_cache: RetainAllImageCache::new(cx),
_subscriptions: subscriptions,
_tasks: tasks,
} }
} }
async fn request_metadata(public_key: PublicKey) -> Result<(), Error> { async fn request_metadata(client: &Client, public_key: PublicKey) -> Result<(), Error> {
let client = nostr_client(); let opts = SubscribeAutoCloseOptions::default().exit_policy(ReqExitPolicy::ExitOnEOSE);
let app_state = app_state();
let kinds = vec![Kind::Metadata, Kind::ContactList, Kind::RelayList]; let kinds = vec![Kind::Metadata, Kind::ContactList, Kind::RelayList];
let filter = Filter::new().author(public_key).kinds(kinds).limit(10); let filter = Filter::new().author(public_key).kinds(kinds).limit(10);
client client
.subscribe_to(BOOTSTRAP_RELAYS, filter, app_state.auto_close_opts) .subscribe_to(BOOTSTRAP_RELAYS, filter, Some(opts))
.await?; .await?;
Ok(()) Ok(())
} }
pub fn submit(&mut self, window: &mut Window, cx: &mut Context<Self>) {
let public_keys: Vec<PublicKey> = self.selected(cx);
if public_keys.is_empty() {
self.set_error(Some(t!("compose.receiver_required").into()), cx);
return;
};
// Show loading spinner
self.set_submitting(true, cx);
// Convert selected pubkeys into Nostr tags
let mut tag_list: Vec<Tag> = public_keys.iter().map(|pk| Tag::public_key(*pk)).collect();
// Add subject if it is present
if !self.title_input.read(cx).value().is_empty() {
tag_list.push(Tag::custom(
TagKind::Subject,
vec![self.title_input.read(cx).value().to_string()],
));
}
let event: Task<Result<Room, Error>> = cx.background_spawn(async move {
let signer = nostr_client().signer().await?;
let public_key = signer.get_public_key().await?;
let room = EventBuilder::private_msg_rumor(public_keys[0], "")
.tags(Tags::from_list(tag_list))
.build(public_key)
.sign(&Keys::generate())
.await
.map(|event| Room::new(&event).kind(RoomKind::Ongoing))?;
Ok(room)
});
cx.spawn_in(window, async move |this, cx| {
match event.await {
Ok(room) => {
cx.update(|window, cx| {
let registry = Registry::global(cx);
// Reset local state
this.update(cx, |this, cx| {
this.set_submitting(false, cx);
})
.ok();
// Create and insert the new room into the registry
registry.update(cx, |this, cx| {
this.push_room(cx.new(|_| room), cx);
});
// Close the current modal
window.close_modal(cx);
})
.ok();
}
Err(e) => {
this.update(cx, |this, cx| {
this.set_error(Some(e.to_string().into()), cx);
})
.ok();
}
};
})
.detach();
}
fn extend_contacts<I>(&mut self, contacts: I, cx: &mut Context<Self>) fn extend_contacts<I>(&mut self, contacts: I, cx: &mut Context<Self>)
where where
I: IntoIterator<Item = Contact>, I: IntoIterator<Item = Contact>,
{ {
self.contacts.update(cx, |this, cx| {
this.extend(contacts);
cx.notify();
});
}
fn push_contact(&mut self, contact: Contact, window: &mut Window, cx: &mut Context<Self>) {
let pk = contact.public_key;
if !self.contacts.read(cx).iter().any(|c| c.public_key == pk) {
self._tasks.push(cx.background_spawn(async move {
Self::request_metadata(pk).await.ok();
}));
cx.defer_in(window, |this, window, cx| {
this.contacts.update(cx, |this, cx| {
this.insert(0, contact);
cx.notify();
});
this.user_input.update(cx, |this, cx| {
this.set_value("", window, cx);
this.set_loading(false, cx);
});
});
} else {
self.set_error(t!("compose.contact_existed"), cx);
}
}
fn select_contact(&mut self, public_key: PublicKey, cx: &mut Context<Self>) {
self.contacts.update(cx, |this, cx| {
if let Some(contact) = this.iter_mut().find(|c| c.public_key == public_key) {
contact.selected = true;
}
cx.notify();
});
}
fn add_and_select_contact(&mut self, window: &mut Window, cx: &mut Context<Self>) {
let content = self.user_input.read(cx).value().to_string();
// Show loading indicator in the input
self.user_input.update(cx, |this, cx| {
this.set_loading(true, cx);
});
if let Ok(public_key) = content.to_public_key() {
let contact = Contact::new(public_key).selected();
self.push_contact(contact, window, cx);
} else if content.contains("@") {
let task = Tokio::spawn(cx, async move {
if let Ok(profile) = nip05_profile(&content).await {
let public_key = profile.public_key;
let contact = Contact::new(public_key).selected();
Ok(contact)
} else {
Err(anyhow!("Not found"))
}
});
cx.spawn_in(window, async move |this, cx| {
match task.await {
Ok(Ok(contact)) => {
this.update_in(cx, |this, window, cx| {
this.push_contact(contact, window, cx);
})
.ok();
}
Ok(Err(e)) => {
this.update(cx, |this, cx| {
this.set_error(e.to_string(), cx);
})
.ok();
}
Err(e) => {
log::error!("Tokio error: {e}");
}
};
})
.detach();
}
}
fn selected(&self, cx: &App) -> Vec<PublicKey> {
self.contacts self.contacts
.read(cx) .extend(contacts.into_iter().map(|contact| cx.new(|_| contact)));
cx.notify();
}
fn push_contact(&mut self, contact: Contact, cx: &mut Context<Self>) {
if !self
.contacts
.iter()
.any(|e| e.read(cx).public_key == contact.public_key)
{
self.contacts.insert(0, cx.new(|_| contact));
cx.notify();
} else {
self.set_error(Some(t!("compose.contact_existed").into()), cx);
}
}
fn selected(&self, cx: &Context<Self>) -> Vec<PublicKey> {
self.contacts
.iter() .iter()
.filter_map(|contact| { .filter_map(|contact| {
if contact.selected { if contact.read(cx).select {
Some(contact.public_key) Some(contact.read(cx).public_key)
} else { } else {
None None
} }
@@ -309,40 +264,84 @@ impl Compose {
.collect() .collect()
} }
fn submit(&mut self, window: &mut Window, cx: &mut Context<Self>) { fn add_and_select_contact(&mut self, window: &mut Window, cx: &mut Context<Self>) {
let registry = Registry::global(cx); let content = self.user_input.read(cx).value().to_string();
let receivers: Vec<PublicKey> = self.selected(cx);
let subject_input = self.title_input.read(cx).value();
let subject = (!subject_input.is_empty()).then(|| subject_input.to_string());
if !self.user_input.read(cx).value().is_empty() { // Prevent multiple requests
self.add_and_select_contact(window, cx); self.set_adding(true, cx);
// Show loading indicator in the input
self.user_input.update(cx, |this, cx| {
this.set_loading(true, cx);
});
let task: Task<Result<Contact, Error>> = if content.contains("@") {
cx.background_spawn(async move {
let (tx, rx) = oneshot::channel::<Option<Nip05Profile>>();
nostr_sdk::async_utility::task::spawn(async move {
let profile = nip05_profile(&content).await.ok();
tx.send(profile).ok();
});
if let Ok(Some(profile)) = rx.await {
let client = nostr_client();
let public_key = profile.public_key;
let contact = Contact::new(public_key).select();
Self::request_metadata(client, public_key).await?;
Ok(contact)
} else {
Err(anyhow!(t!("common.not_found")))
}
})
} else if let Ok(public_key) = content.to_public_key() {
cx.background_spawn(async move {
let client = nostr_client();
let contact = Contact::new(public_key).select();
Self::request_metadata(client, public_key).await?;
Ok(contact)
})
} else {
self.set_error(Some(t!("common.pubkey_invalid").into()), cx);
return; return;
}; };
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
let result = Room::new(subject, receivers).await; match task.await {
Ok(contact) => {
this.update_in(cx, |this, window, cx| { cx.update(|window, cx| {
match result { this.update(cx, |this, cx| {
Ok(room) => { this.push_contact(contact, cx);
registry.update(cx, |this, cx| { this.set_adding(false, cx);
this.push_room(cx.new(|_| room), cx); this.user_input.update(cx, |this, cx| {
}); this.set_value("", window, cx);
this.set_loading(false, cx);
window.close_modal(cx); });
} })
Err(e) => { .ok();
this.set_error(e.to_string(), cx); })
} .ok();
}; }
}) Err(e) => {
.ok(); this.update(cx, |this, cx| {
this.set_error(Some(e.to_string().into()), cx);
})
.ok();
}
};
}) })
.detach(); .detach();
} }
fn set_error(&mut self, error: impl Into<SharedString>, cx: &mut Context<Self>) { fn set_error(&mut self, error: impl Into<Option<SharedString>>, cx: &mut Context<Self>) {
if self.adding {
self.set_adding(false, cx);
}
// Unlock the user input // Unlock the user input
self.user_input.update(cx, |this, cx| { self.user_input.update(cx, |this, cx| {
this.set_loading(false, cx); this.set_loading(false, cx);
@@ -350,54 +349,63 @@ impl Compose {
// Update error message // Update error message
self.error_message.update(cx, |this, cx| { self.error_message.update(cx, |this, cx| {
*this = Some(error.into()); *this = error.into();
cx.notify(); cx.notify();
}); });
// Dismiss error after 2 seconds // Dismiss error after 2 seconds
cx.spawn(async move |this, cx| { cx.spawn(async move |this, cx| {
cx.background_executor().timer(Duration::from_secs(2)).await; Timer::after(Duration::from_secs(2)).await;
this.update(cx, |this, cx| { this.update(cx, |this, cx| {
this.error_message.update(cx, |this, cx| { this.set_error(None, cx);
*this = None;
cx.notify();
});
}) })
.ok(); .ok();
}) })
.detach(); .detach();
} }
fn set_adding(&mut self, status: bool, cx: &mut Context<Self>) {
self.adding = status;
cx.notify();
}
fn set_submitting(&mut self, status: bool, cx: &mut Context<Self>) {
self.submitting = status;
cx.notify();
}
fn list_items(&self, range: Range<usize>, cx: &Context<Self>) -> Vec<impl IntoElement> { fn list_items(&self, range: Range<usize>, cx: &Context<Self>) -> Vec<impl IntoElement> {
let proxy = AppSettings::get_proxy_user_avatars(cx); let proxy = AppSettings::get_proxy_user_avatars(cx);
let registry = Registry::read_global(cx); let registry = Registry::read_global(cx);
let mut items = Vec::with_capacity(self.contacts.read(cx).len()); let mut items = Vec::with_capacity(self.contacts.len());
for ix in range { for ix in range {
let Some(contact) = self.contacts.read(cx).get(ix) else { let Some(entity) = self.contacts.get(ix).cloned() else {
continue; continue;
}; };
let public_key = contact.public_key; let public_key = entity.read(cx).as_ref();
let profile = registry.get_person(&public_key, cx); let profile = registry.get_person(public_key, cx);
let selected = entity.read(cx).select;
items.push( items.push(
h_flex() h_flex()
.id(ix) .id(ix)
.px_2() .px_1()
.h_11() .h_9()
.w_full() .w_full()
.justify_between() .justify_between()
.rounded(cx.theme().radius) .rounded(cx.theme().radius)
.child( .child(
h_flex() div()
.flex()
.items_center()
.gap_1p5() .gap_1p5()
.text_sm() .text_sm()
.child(Avatar::new(profile.avatar(proxy)).size(rems(1.75))) .child(Avatar::new(profile.avatar_url(proxy)).size(rems(1.75)))
.child(profile.display_name()), .child(profile.display_name()),
) )
.when(contact.selected, |this| { .when(selected, |this| {
this.child( this.child(
Icon::new(IconName::CheckCircleFill) Icon::new(IconName::CheckCircleFill)
.small() .small()
@@ -405,8 +413,11 @@ impl Compose {
) )
}) })
.hover(|this| this.bg(cx.theme().elevated_surface_background)) .hover(|this| this.bg(cx.theme().elevated_surface_background))
.on_click(cx.listener(move |this, _, _window, cx| { .on_click(cx.listener(move |_this, _event, _window, cx| {
this.select_contact(public_key, cx); entity.update(cx, |this, cx| {
this.select = !this.select;
cx.notify();
});
})), })),
); );
} }
@@ -417,18 +428,24 @@ impl Compose {
impl Render for Compose { impl Render for Compose {
fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement { fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
let label = if self.submitting {
t!("compose.creating_dm_button")
} else if self.selected(cx).len() > 1 {
t!("compose.create_group_dm_button")
} else {
t!("compose.create_dm_button")
};
let error = self.error_message.read(cx).as_ref(); let error = self.error_message.read(cx).as_ref();
let loading = self.user_input.read(cx).loading;
let contacts = self.contacts.read(cx);
v_flex() v_flex()
.image_cache(self.image_cache.clone()) .mb_4()
.gap_2() .gap_2()
.child( .child(
div() div()
.text_sm() .text_sm()
.text_color(cx.theme().text_muted) .text_color(cx.theme().text_muted)
.child(shared_t!("compose.description")), .child(SharedString::new(t!("compose.description"))),
) )
.when_some(error, |this, msg| { .when_some(error, |this, msg| {
this.child( this.child(
@@ -449,13 +466,13 @@ impl Render for Compose {
div() div()
.text_sm() .text_sm()
.font_semibold() .font_semibold()
.child(shared_t!("compose.subject_label")), .child(SharedString::new(t!("compose.subject_label"))),
) )
.child(TextInput::new(&self.title_input).small().appearance(false)), .child(TextInput::new(&self.title_input).small().appearance(false)),
) )
.child( .child(
v_flex() v_flex()
.pt_1() .my_1()
.gap_2() .gap_2()
.child( .child(
v_flex() v_flex()
@@ -464,18 +481,22 @@ impl Render for Compose {
div() div()
.text_sm() .text_sm()
.font_semibold() .font_semibold()
.child(shared_t!("compose.to_label")), .child(SharedString::new(t!("compose.to_label"))),
) )
.child( .child(
TextInput::new(&self.user_input) h_flex()
.small() .gap_1()
.disabled(loading) .child(
.suffix( TextInput::new(&self.user_input)
.small()
.disabled(self.adding),
)
.child(
Button::new("add") Button::new("add")
.icon(IconName::PlusCircleFill) .icon(IconName::PlusCircleFill)
.transparent() .ghost()
.small() .loading(self.adding)
.disabled(loading) .disabled(self.adding)
.on_click(cx.listener(move |this, _, window, cx| { .on_click(cx.listener(move |this, _, window, cx| {
this.add_and_select_contact(window, cx); this.add_and_select_contact(window, cx);
})), })),
@@ -483,7 +504,7 @@ impl Render for Compose {
), ),
) )
.map(|this| { .map(|this| {
if contacts.is_empty() { if self.contacts.is_empty() {
this.child( this.child(
v_flex() v_flex()
.h_24() .h_24()
@@ -491,32 +512,48 @@ impl Render for Compose {
.items_center() .items_center()
.justify_center() .justify_center()
.text_center() .text_center()
.text_xs()
.child( .child(
div() div()
.text_xs()
.font_semibold() .font_semibold()
.line_height(relative(1.2)) .line_height(relative(1.2))
.child(shared_t!("compose.no_contacts_message")), .child(SharedString::new(t!(
"compose.no_contacts_message"
))),
) )
.child( .child(
div() div().text_xs().text_color(cx.theme().text_muted).child(
.text_color(cx.theme().text_muted) SharedString::new(t!(
.child(shared_t!("compose.no_contacts_description")), "compose.no_contacts_description"
)),
),
), ),
) )
} else { } else {
this.child( this.child(
uniform_list( uniform_list(
"contacts", "contacts",
contacts.len(), self.contacts.len(),
cx.processor(move |this, range, _window, cx| { cx.processor(move |this, range, _window, cx| {
this.list_items(range, cx) this.list_items(range, cx)
}), }),
) )
.h(px(300.)), .min_h(px(300.)),
) )
} }
}), }),
) )
.child(
Button::new("create_dm_btn")
.label(label)
.primary()
.small()
.w_full()
.loading(self.submitting)
.disabled(self.submitting || self.adding)
.on_click(cx.listener(move |this, _event, window, cx| {
this.submit(window, cx);
})),
)
} }
} }
+4 -4
View File
@@ -8,7 +8,7 @@ use gpui::{
div, img, App, AppContext, Context, Entity, Flatten, IntoElement, ParentElement, div, img, App, AppContext, Context, Entity, Flatten, IntoElement, ParentElement,
PathPromptOptions, Render, SharedString, Styled, Task, Window, PathPromptOptions, Render, SharedString, Styled, Task, Window,
}; };
use i18n::{shared_t, t}; use i18n::t;
use nostr_sdk::prelude::*; use nostr_sdk::prelude::*;
use settings::AppSettings; use settings::AppSettings;
use smol::fs; use smol::fs;
@@ -260,7 +260,7 @@ impl Render for EditProfile {
.flex_col() .flex_col()
.gap_1() .gap_1()
.text_sm() .text_sm()
.child(shared_t!("profile.label_name")) .child(SharedString::new(t!("profile.label_name")))
.child(TextInput::new(&self.name_input).small()), .child(TextInput::new(&self.name_input).small()),
) )
.child( .child(
@@ -269,7 +269,7 @@ impl Render for EditProfile {
.flex_col() .flex_col()
.gap_1() .gap_1()
.text_sm() .text_sm()
.child(shared_t!("profile.label_website")) .child(SharedString::new(t!("profile.label_website")))
.child(TextInput::new(&self.website_input).small()), .child(TextInput::new(&self.website_input).small()),
) )
.child( .child(
@@ -278,7 +278,7 @@ impl Render for EditProfile {
.flex_col() .flex_col()
.gap_1() .gap_1()
.text_sm() .text_sm()
.child(shared_t!("profile.label_bio")) .child(SharedString::new(t!("profile.label_bio")))
.child(TextInput::new(&self.bio_input).small()), .child(TextInput::new(&self.bio_input).small()),
) )
} }
+43 -40
View File
@@ -1,13 +1,13 @@
use std::time::Duration; use std::time::Duration;
use client_keys::ClientKeys; use client_keys::ClientKeys;
use common::handle_auth::CoopAuthUrlHandler;
use global::constants::{ACCOUNT_IDENTIFIER, BUNKER_TIMEOUT}; use global::constants::{ACCOUNT_IDENTIFIER, BUNKER_TIMEOUT};
use global::nostr_client; use global::nostr_client;
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
div, relative, AnyElement, App, AppContext, Context, Entity, EventEmitter, FocusHandle, div, relative, AnyElement, App, AppContext, Context, Entity, EventEmitter, FocusHandle,
Focusable, IntoElement, ParentElement, Render, SharedString, Styled, Subscription, Task, Focusable, IntoElement, ParentElement, Render, SharedString, Styled, Subscription, Window,
Window,
}; };
use i18n::{shared_t, t}; use i18n::{shared_t, t};
use nostr_connect::prelude::*; use nostr_connect::prelude::*;
@@ -19,8 +19,6 @@ use ui::input::{InputEvent, InputState, TextInput};
use ui::popup_menu::PopupMenu; use ui::popup_menu::PopupMenu;
use ui::{v_flex, ContextModal, Disableable, Sizable, StyledExt}; use ui::{v_flex, ContextModal, Disableable, Sizable, StyledExt};
use crate::actions::CoopAuthUrlHandler;
pub fn init(window: &mut Window, cx: &mut App) -> Entity<Login> { pub fn init(window: &mut Window, cx: &mut App) -> Entity<Login> {
Login::new(window, cx) Login::new(window, cx)
} }
@@ -293,22 +291,30 @@ impl Login {
// Handle connection // Handle connection
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
let client = nostr_client();
match signer.bunker_uri().await { match signer.bunker_uri().await {
Ok(uri) => { Ok(uri) => {
this.update(cx, |this, cx| { this.update(cx, |this, cx| {
this.write_uri_to_disk(signer, uri, cx); this.write_uri_to_disk(&uri, cx);
}) })
.ok(); .ok();
// Set the client's signer with the current nostr connect instance
client.set_signer(signer).await;
} }
Err(error) => { Err(error) => {
this.update_in(cx, |this, window, cx| { cx.update(|window, cx| {
this.set_error(error.to_string(), window, cx); this.update(cx, |this, cx| {
// Force reset the client keys this.set_error(error.to_string(), window, cx);
// // Force reset the client keys
// This step is necessary to ensure that user can retry the connection //
client_keys.update(cx, |this, cx| { // This step is necessary to ensure that user can retry the connection
this.force_new_keys(cx); client_keys.update(cx, |this, cx| {
}); this.force_new_keys(cx);
});
})
.ok();
}) })
.ok(); .ok();
} }
@@ -317,41 +323,38 @@ impl Login {
.detach(); .detach();
} }
fn write_uri_to_disk( fn write_uri_to_disk(&mut self, uri: &NostrConnectURI, cx: &mut Context<Self>) {
&mut self, let Some(public_key) = uri.remote_signer_public_key().cloned() else {
signer: NostrConnect, log::error!("Remote Signer's public key not found");
uri: NostrConnectURI, return;
cx: &mut Context<Self>, };
) {
let mut uri_without_secret = uri.to_string();
// Clear the secret parameter in the URI if it exists let mut value = uri.to_string();
// Clear the secret param if it exists
if let Some(secret) = uri.secret() { if let Some(secret) = uri.secret() {
uri_without_secret = uri_without_secret.replace(secret, ""); value = value.replace(secret, "");
} }
let task: Task<Result<(), anyhow::Error>> = cx.background_spawn(async move { cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let keys = Keys::generate();
let tags = vec![Tag::identifier(ACCOUNT_IDENTIFIER)];
let kind = Kind::ApplicationSpecificData;
// Update the client's signer let builder = EventBuilder::new(kind, value)
client.set_signer(signer).await; .tags(tags)
let signer = client.signer().await?;
let public_key = signer.get_public_key().await?;
let event = EventBuilder::new(Kind::ApplicationSpecificData, uri_without_secret)
.tags(vec![Tag::identifier(ACCOUNT_IDENTIFIER)])
.build(public_key) .build(public_key)
.sign(&Keys::generate()) .sign(&keys)
.await?; .await;
// Save the event to the database if let Ok(event) = builder {
client.database().save_event(&event).await?; if let Err(e) = client.database().save_event(&event).await {
log::error!("Failed to save event: {e}");
Ok(()) };
}); }
})
task.detach(); .detach();
} }
pub fn write_keys_to_disk(&self, keys: &Keys, password: String, cx: &mut Context<Self>) { pub fn write_keys_to_disk(&self, keys: &Keys, password: String, cx: &mut Context<Self>) {
+2 -2
View File
@@ -14,7 +14,7 @@ use settings::AppSettings;
use smol::fs; use smol::fs;
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::avatar::Avatar; use ui::avatar::Avatar;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonRounded, ButtonVariants};
use ui::dock_area::panel::{Panel, PanelEvent}; use ui::dock_area::panel::{Panel, PanelEvent};
use ui::input::{InputState, TextInput}; use ui::input::{InputState, TextInput};
use ui::modal::ModalButtonProps; use ui::modal::ModalButtonProps;
@@ -352,7 +352,7 @@ impl Render for NewAccount {
.label(t!("common.upload")) .label(t!("common.upload"))
.ghost() .ghost()
.small() .small()
.rounded() .rounded(ButtonRounded::Full)
.disabled(self.submitting || self.uploading) .disabled(self.submitting || self.uploading)
.loading(self.uploading) .loading(self.uploading)
.on_click(cx.listener(move |this, _, window, cx| { .on_click(cx.listener(move |this, _, window, cx| {
+29 -28
View File
@@ -135,6 +135,7 @@ impl Onboarding {
self._tasks.push( self._tasks.push(
// Wait for Nostr Connect approval // Wait for Nostr Connect approval
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
let client = nostr_client();
let connect = this.read_with(cx, |this, cx| this.nostr_connect.read(cx).clone()); let connect = this.read_with(cx, |this, cx| this.nostr_connect.read(cx).clone());
if let Ok(Some(signer)) = connect { if let Ok(Some(signer)) = connect {
@@ -142,9 +143,12 @@ impl Onboarding {
Ok(uri) => { Ok(uri) => {
this.update(cx, |this, cx| { this.update(cx, |this, cx| {
this.set_connecting(cx); this.set_connecting(cx);
this.write_uri_to_disk(signer, uri, cx); this.write_uri_to_disk(&uri, cx);
}) })
.ok(); .ok();
// Set the client's signer with the current nostr connect instance
client.set_signer(signer).await;
} }
Err(e) => { Err(e) => {
this.update_in(cx, |_, window, cx| { this.update_in(cx, |_, window, cx| {
@@ -165,41 +169,38 @@ impl Onboarding {
ChatSpace::proxy_signer(window, cx); ChatSpace::proxy_signer(window, cx);
} }
fn write_uri_to_disk( fn write_uri_to_disk(&mut self, uri: &NostrConnectURI, cx: &mut Context<Self>) {
&mut self, let Some(public_key) = uri.remote_signer_public_key().cloned() else {
signer: NostrConnect, log::error!("Remote Signer's public key not found");
uri: NostrConnectURI, return;
cx: &mut Context<Self>, };
) {
let mut uri_without_secret = uri.to_string();
// Clear the secret parameter in the URI if it exists let mut value = uri.to_string();
// Clear the secret param if it exists
if let Some(secret) = uri.secret() { if let Some(secret) = uri.secret() {
uri_without_secret = uri_without_secret.replace(secret, ""); value = value.replace(secret, "");
} }
let task: Task<Result<(), anyhow::Error>> = cx.background_spawn(async move { cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let keys = Keys::generate();
let tags = vec![Tag::identifier(ACCOUNT_IDENTIFIER)];
let kind = Kind::ApplicationSpecificData;
// Update the client's signer let builder = EventBuilder::new(kind, value)
client.set_signer(signer).await; .tags(tags)
let signer = client.signer().await?;
let public_key = signer.get_public_key().await?;
let event = EventBuilder::new(Kind::ApplicationSpecificData, uri_without_secret)
.tags(vec![Tag::identifier(ACCOUNT_IDENTIFIER)])
.build(public_key) .build(public_key)
.sign(&Keys::generate()) .sign(&keys)
.await?; .await;
// Save the event to the database if let Ok(event) = builder {
client.database().save_event(&event).await?; if let Err(e) = client.database().save_event(&event).await {
log::error!("Failed to save event: {e}");
Ok(()) };
}); }
})
task.detach(); .detach();
} }
fn copy_uri(&mut self, window: &mut Window, cx: &mut Context<Self>) { fn copy_uri(&mut self, window: &mut Window, cx: &mut Context<Self>) {
+48 -55
View File
@@ -1,6 +1,5 @@
use common::display::RenderedProfile; use common::display::ReadableProfile;
use gpui::http_client::Url; use gpui::http_client::Url;
use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
div, px, relative, rems, App, AppContext, Context, Entity, InteractiveElement, IntoElement, div, px, relative, rems, App, AppContext, Context, Entity, InteractiveElement, IntoElement,
ParentElement, Render, SharedString, StatefulInteractiveElement, Styled, Window, ParentElement, Render, SharedString, StatefulInteractiveElement, Styled, Window,
@@ -11,7 +10,7 @@ use registry::Registry;
use settings::AppSettings; use settings::AppSettings;
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::avatar::Avatar; use ui::avatar::Avatar;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonRounded, ButtonVariants};
use ui::input::{InputState, TextInput}; use ui::input::{InputState, TextInput};
use ui::modal::ModalButtonProps; use ui::modal::ModalButtonProps;
use ui::switch::Switch; use ui::switch::Switch;
@@ -112,6 +111,9 @@ impl Preferences {
impl Render for Preferences { impl Render for Preferences {
fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement { fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
let input_state = self.media_input.downgrade();
let profile = Registry::read_global(cx).identity(cx);
let auto_auth = AppSettings::get_auto_auth(cx); let auto_auth = AppSettings::get_auto_auth(cx);
let backup = AppSettings::get_backup_messages(cx); let backup = AppSettings::get_backup_messages(cx);
let screening = AppSettings::get_screening(cx); let screening = AppSettings::get_screening(cx);
@@ -119,9 +121,6 @@ impl Render for Preferences {
let proxy = AppSettings::get_proxy_user_avatars(cx); let proxy = AppSettings::get_proxy_user_avatars(cx);
let hide = AppSettings::get_hide_user_avatars(cx); let hide = AppSettings::get_hide_user_avatars(cx);
let registry = Registry::read_global(cx);
let input_state = self.media_input.downgrade();
v_flex() v_flex()
.child( .child(
v_flex() v_flex()
@@ -134,54 +133,48 @@ impl Render for Preferences {
.font_semibold() .font_semibold()
.child(shared_t!("preferences.account_header")), .child(shared_t!("preferences.account_header")),
) )
.when_some(registry.signer_pubkey(), |this, public_key| { .child(
let profile = registry.get_person(&public_key, cx); h_flex()
.w_full()
this.child( .justify_between()
h_flex() .child(
.w_full() h_flex()
.justify_between() .id("user")
.child( .gap_2()
h_flex() .child(Avatar::new(profile.avatar_url(proxy)).size(rems(2.4)))
.id("user") .child(
.gap_2() div()
.child(Avatar::new(profile.avatar(proxy)).size(rems(2.4))) .flex_1()
.child( .text_sm()
div() .child(
.flex_1() div()
.text_sm() .font_semibold()
.child( .line_height(relative(1.3))
div() .child(profile.display_name()),
.font_semibold() )
.line_height(relative(1.3)) .child(
.child(profile.display_name()), div()
) .text_xs()
.child( .text_color(cx.theme().text_muted)
div() .line_height(relative(1.3))
.text_xs() .child(shared_t!("preferences.account_btn")),
.text_color(cx.theme().text_muted) ),
.line_height(relative(1.3)) )
.child(shared_t!( .on_click(cx.listener(move |this, _e, window, cx| {
"preferences.account_btn" this.open_edit_profile(window, cx);
)), })),
), )
) .child(
.on_click(cx.listener(move |this, _e, window, cx| { Button::new("relays")
this.open_edit_profile(window, cx); .label("Messaging Relays")
})), .xsmall()
) .ghost_alt()
.child( .rounded(ButtonRounded::Full)
Button::new("relays") .on_click(cx.listener(move |this, _e, window, cx| {
.label("Messaging Relays") this.open_relays(window, cx);
.xsmall() })),
.ghost_alt() ),
.rounded() ),
.on_click(cx.listener(move |this, _e, window, cx| {
this.open_relays(window, cx);
})),
),
)
}),
) )
.child( .child(
v_flex() v_flex()
@@ -211,7 +204,7 @@ impl Render for Preferences {
.on_click(move |_, _window, cx| { .on_click(move |_, _window, cx| {
if let Some(input) = input_state.upgrade() { if let Some(input) = input_state.upgrade() {
let Ok(url) = let Ok(url) =
Url::parse(&input.read(cx).value()) Url::parse(input.read(cx).value())
else { else {
return; return;
}; };
+100 -36
View File
@@ -1,6 +1,6 @@
use std::time::Duration; use std::time::Duration;
use common::display::{shorten_pubkey, RenderedProfile, RenderedTimestamp}; use common::display::{shorten_pubkey, ReadableProfile, ReadableTimestamp};
use common::nip05::nip05_verify; use common::nip05::nip05_verify;
use global::constants::BOOTSTRAP_RELAYS; use global::constants::BOOTSTRAP_RELAYS;
use global::nostr_client; use global::nostr_client;
@@ -17,7 +17,7 @@ use settings::AppSettings;
use smallvec::{smallvec, SmallVec}; use smallvec::{smallvec, SmallVec};
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::avatar::Avatar; use ui::avatar::Avatar;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonRounded, ButtonVariants};
use ui::indicator::Indicator; use ui::indicator::Indicator;
use ui::{h_flex, v_flex, ContextModal, Icon, IconName, Sizable, StyledExt}; use ui::{h_flex, v_flex, ContextModal, Icon, IconName, Sizable, StyledExt};
@@ -29,43 +29,42 @@ pub struct Screening {
profile: Profile, profile: Profile,
verified: bool, verified: bool,
followed: bool, followed: bool,
dm_relays: Option<bool>,
last_active: Option<Timestamp>, last_active: Option<Timestamp>,
mutual_contacts: Vec<Profile>, mutual_contacts: Vec<Profile>,
_tasks: SmallVec<[Task<()>; 3]>, _tasks: SmallVec<[Task<()>; 4]>,
} }
impl Screening { impl Screening {
pub fn new(public_key: PublicKey, window: &mut Window, cx: &mut Context<Self>) -> Self { pub fn new(public_key: PublicKey, window: &mut Window, cx: &mut Context<Self>) -> Self {
let registry = Registry::read_global(cx); let registry = Registry::read_global(cx);
let identity = registry.identity(cx).public_key();
let profile = registry.get_person(&public_key, cx); let profile = registry.get_person(&public_key, cx);
let mut tasks = smallvec![]; let mut tasks = smallvec![];
let contact_check: Task<Result<(bool, Vec<Profile>), Error>> = let contact_check: Task<(bool, Vec<Profile>)> = cx.background_spawn(async move {
cx.background_spawn(async move { let client = nostr_client();
let client = nostr_client();
let signer = client.signer().await?;
let signer_pubkey = signer.get_public_key().await?;
// Check if user is in contact list // Check if user is in contact list
let contacts = client.database().contacts_public_keys(signer_pubkey).await; let contacts = client.database().contacts_public_keys(identity).await;
let followed = contacts.unwrap_or_default().contains(&public_key); let followed = contacts.unwrap_or_default().contains(&public_key);
// Check mutual contacts // Check mutual contacts
let contact_list = Filter::new().kind(Kind::ContactList).pubkey(public_key); let contact_list = Filter::new().kind(Kind::ContactList).pubkey(public_key);
let mut mutual_contacts = vec![]; let mut mutual_contacts = vec![];
if let Ok(events) = client.database().query(contact_list).await { if let Ok(events) = client.database().query(contact_list).await {
for event in events.into_iter().filter(|ev| ev.pubkey != signer_pubkey) { for event in events.into_iter().filter(|ev| ev.pubkey != identity) {
if let Ok(metadata) = client.database().metadata(event.pubkey).await { if let Ok(metadata) = client.database().metadata(event.pubkey).await {
let profile = Profile::new(event.pubkey, metadata.unwrap_or_default()); let profile = Profile::new(event.pubkey, metadata.unwrap_or_default());
mutual_contacts.push(profile); mutual_contacts.push(profile);
}
} }
} }
}
Ok((followed, mutual_contacts)) (followed, mutual_contacts)
}); });
let activity_check = cx.background_spawn(async move { let activity_check = cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
@@ -84,6 +83,24 @@ impl Screening {
activity activity
}); });
let relay_check = cx.background_spawn(async move {
let client = nostr_client();
let mut relay = false;
let filter = Filter::new()
.kind(Kind::InboxRelays)
.author(public_key)
.limit(1);
if let Ok(mut stream) = client.stream_events(filter, Duration::from_secs(2)).await {
while stream.next().await.is_some() {
relay = true
}
}
relay
});
let addr_check = if let Some(address) = profile.metadata().nip05 { let addr_check = if let Some(address) = profile.metadata().nip05 {
Some(Tokio::spawn(cx, async move { Some(Tokio::spawn(cx, async move {
nip05_verify(public_key, &address).await.unwrap_or(false) nip05_verify(public_key, &address).await.unwrap_or(false)
@@ -95,14 +112,14 @@ impl Screening {
tasks.push( tasks.push(
// Run the contact check in the background // Run the contact check in the background
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
if let Ok((followed, mutual_contacts)) = contact_check.await { let (followed, mutual_contacts) = contact_check.await;
this.update(cx, |this, cx| {
this.followed = followed; this.update(cx, |this, cx| {
this.mutual_contacts = mutual_contacts; this.followed = followed;
cx.notify(); this.mutual_contacts = mutual_contacts;
}) cx.notify();
.ok(); })
} .ok();
}), }),
); );
@@ -119,6 +136,19 @@ impl Screening {
}), }),
); );
tasks.push(
// Run the relay check in the background
cx.spawn_in(window, async move |this, cx| {
let relay = relay_check.await;
this.update(cx, |this, cx| {
this.dm_relays = Some(relay);
cx.notify();
})
.ok();
}),
);
tasks.push( tasks.push(
// Run the NIP-05 verification in the background // Run the NIP-05 verification in the background
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
@@ -138,6 +168,7 @@ impl Screening {
profile, profile,
verified: false, verified: false,
followed: false, followed: false,
dm_relays: None,
last_active: None, last_active: None,
mutual_contacts: vec![], mutual_contacts: vec![],
_tasks: tasks, _tasks: tasks,
@@ -204,7 +235,9 @@ impl Screening {
.hover(|this| { .hover(|this| {
this.bg(cx.theme().elevated_surface_background) this.bg(cx.theme().elevated_surface_background)
}) })
.child(Avatar::new(contact.avatar(true)).size(rems(1.75))) .child(
Avatar::new(contact.avatar_url(true)).size(rems(1.75)),
)
.child(contact.display_name()), .child(contact.display_name()),
); );
} }
@@ -234,7 +267,7 @@ impl Render for Screening {
.items_center() .items_center()
.justify_center() .justify_center()
.text_center() .text_center()
.child(Avatar::new(self.profile.avatar(proxy)).size(rems(4.))) .child(Avatar::new(self.profile.avatar_url(proxy)).size(rems(4.)))
.child( .child(
div() div()
.font_semibold() .font_semibold()
@@ -268,7 +301,7 @@ impl Render for Screening {
.label(t!("profile.njump")) .label(t!("profile.njump"))
.secondary() .secondary()
.small() .small()
.rounded() .rounded(ButtonRounded::Full)
.on_click(cx.listener(move |this, _e, window, cx| { .on_click(cx.listener(move |this, _e, window, cx| {
this.open_njump(window, cx); this.open_njump(window, cx);
})), })),
@@ -278,7 +311,7 @@ impl Render for Screening {
.tooltip(t!("screening.report")) .tooltip(t!("screening.report"))
.icon(IconName::Report) .icon(IconName::Report)
.danger() .danger()
.rounded() .rounded(ButtonRounded::Full)
.on_click(cx.listener(move |this, _e, window, cx| { .on_click(cx.listener(move |this, _e, window, cx| {
this.report(window, cx); this.report(window, cx);
})), })),
@@ -330,7 +363,7 @@ impl Render for Screening {
.icon(IconName::Info) .icon(IconName::Info)
.xsmall() .xsmall()
.ghost() .ghost()
.rounded() .rounded(ButtonRounded::Full)
.tooltip(t!("screening.active_tooltip")), .tooltip(t!("screening.active_tooltip")),
), ),
) )
@@ -402,7 +435,7 @@ impl Render for Screening {
.icon(IconName::Info) .icon(IconName::Info)
.xsmall() .xsmall()
.ghost() .ghost()
.rounded() .rounded(ButtonRounded::Full)
.on_click(cx.listener( .on_click(cx.listener(
move |this, _, window, cx| { move |this, _, window, cx| {
this.mutual_contacts(window, cx); this.mutual_contacts(window, cx);
@@ -423,6 +456,37 @@ impl Render for Screening {
}), }),
), ),
), ),
)
.child(
h_flex()
.items_start()
.gap_2()
.child(status_badge(self.dm_relays, cx))
.child(
v_flex()
.w_full()
.text_sm()
.child({
if self.dm_relays == Some(true) {
shared_t!("screening.relay_found")
} else {
shared_t!("screening.relay_empty")
}
})
.child(
div()
.w_full()
.line_clamp(1)
.text_color(cx.theme().text_muted)
.child({
if self.dm_relays == Some(true) {
shared_t!("screening.relay_found_desc")
} else {
shared_t!("screening.relay_empty_desc")
}
}),
),
),
), ),
) )
} }
+7 -8
View File
@@ -2,7 +2,7 @@ use std::time::Duration;
use anyhow::{anyhow, Error}; use anyhow::{anyhow, Error};
use global::constants::NIP17_RELAYS; use global::constants::NIP17_RELAYS;
use global::{app_state, nostr_client}; use global::{css, nostr_client};
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
div, px, uniform_list, App, AppContext, Context, Entity, InteractiveElement, IntoElement, div, px, uniform_list, App, AppContext, Context, Entity, InteractiveElement, IntoElement,
@@ -11,9 +11,10 @@ use gpui::{
}; };
use i18n::{shared_t, t}; use i18n::{shared_t, t};
use nostr_sdk::prelude::*; use nostr_sdk::prelude::*;
use registry::Registry;
use smallvec::{smallvec, SmallVec}; use smallvec::{smallvec, SmallVec};
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonRounded, ButtonVariants};
use ui::input::{InputEvent, InputState, TextInput}; use ui::input::{InputEvent, InputState, TextInput};
use ui::modal::ModalButtonProps; use ui::modal::ModalButtonProps;
use ui::{h_flex, v_flex, ContextModal, IconName, Sizable, StyledExt}; use ui::{h_flex, v_flex, ContextModal, IconName, Sizable, StyledExt};
@@ -32,7 +33,7 @@ where
.label(label) .label(label)
.warning() .warning()
.xsmall() .xsmall()
.rounded() .rounded(ButtonRounded::Full)
.on_click(move |_, window, cx| { .on_click(move |_, window, cx| {
let view = cx.new(|cx| SetupRelay::new(Kind::InboxRelays, window, cx)); let view = cx.new(|cx| SetupRelay::new(Kind::InboxRelays, window, cx));
let weak_view = view.downgrade(); let weak_view = view.downgrade();
@@ -69,6 +70,7 @@ pub struct SetupRelay {
impl SetupRelay { impl SetupRelay {
pub fn new(kind: Kind, window: &mut Window, cx: &mut Context<Self>) -> Self { pub fn new(kind: Kind, window: &mut Window, cx: &mut Context<Self>) -> Self {
let identity = Registry::read_global(cx).identity(cx).public_key();
let input = cx.new(|cx| InputState::new(window, cx).placeholder("wss://example.com")); let input = cx.new(|cx| InputState::new(window, cx).placeholder("wss://example.com"));
let mut subscriptions = smallvec![]; let mut subscriptions = smallvec![];
@@ -76,10 +78,7 @@ impl SetupRelay {
let load_relay = cx.background_spawn(async move { let load_relay = cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let signer = client.signer().await?; let filter = Filter::new().kind(kind).author(identity).limit(1);
let public_key = signer.get_public_key().await?;
let filter = Filter::new().kind(kind).author(public_key).limit(1);
if let Some(event) = client.database().query(filter).await?.first() { if let Some(event) = client.database().query(filter).await?.first() {
let relays: Vec<RelayUrl> = event let relays: Vec<RelayUrl> = event
@@ -219,7 +218,7 @@ impl SetupRelay {
} }
// Fetch gift wrap events // Fetch gift wrap events
let sub_id = app_state().gift_wrap_sub_id.clone(); let sub_id = css().gift_wrap_sub_id.clone();
let filter = Filter::new().kind(Kind::GiftWrap).pubkey(public_key); let filter = Filter::new().kind(Kind::GiftWrap).pubkey(public_key);
if client if client
+3 -9
View File
@@ -3,7 +3,7 @@ use std::rc::Rc;
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
div, rems, App, ClickEvent, InteractiveElement, IntoElement, ParentElement as _, RenderOnce, div, rems, App, ClickEvent, InteractiveElement, IntoElement, ParentElement as _, RenderOnce,
SharedString, SharedUri, StatefulInteractiveElement, Styled, Window, SharedString, StatefulInteractiveElement, Styled, Window,
}; };
use i18n::t; use i18n::t;
use nostr_sdk::prelude::*; use nostr_sdk::prelude::*;
@@ -11,9 +11,7 @@ use registry::room::RoomKind;
use registry::Registry; use registry::Registry;
use settings::AppSettings; use settings::AppSettings;
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::actions::{CopyPublicKey, OpenPublicKey};
use ui::avatar::Avatar; use ui::avatar::Avatar;
use ui::context_menu::ContextMenuExt;
use ui::modal::ModalButtonProps; use ui::modal::ModalButtonProps;
use ui::skeleton::Skeleton; use ui::skeleton::Skeleton;
use ui::{h_flex, ContextModal, StyledExt}; use ui::{h_flex, ContextModal, StyledExt};
@@ -26,7 +24,7 @@ pub struct RoomListItem {
room_id: Option<u64>, room_id: Option<u64>,
public_key: Option<PublicKey>, public_key: Option<PublicKey>,
name: Option<SharedString>, name: Option<SharedString>,
avatar: Option<SharedUri>, avatar: Option<SharedString>,
created_at: Option<SharedString>, created_at: Option<SharedString>,
kind: Option<RoomKind>, kind: Option<RoomKind>,
#[allow(clippy::type_complexity)] #[allow(clippy::type_complexity)]
@@ -62,7 +60,7 @@ impl RoomListItem {
self self
} }
pub fn avatar(mut self, avatar: impl Into<SharedUri>) -> Self { pub fn avatar(mut self, avatar: impl Into<SharedString>) -> Self {
self.avatar = Some(avatar.into()); self.avatar = Some(avatar.into());
self self
} }
@@ -168,10 +166,6 @@ impl RenderOnce for RoomListItem {
), ),
) )
.hover(|this| this.bg(cx.theme().elevated_surface_background)) .hover(|this| this.bg(cx.theme().elevated_surface_background))
.context_menu(move |this, _window, _cx| {
this.menu(t!("profile.view"), Box::new(OpenPublicKey(public_key)))
.menu(t!("profile.copy"), Box::new(CopyPublicKey(public_key)))
})
.on_click(move |event, window, cx| { .on_click(move |event, window, cx| {
handler(event, window, cx); handler(event, window, cx);
+53 -106
View File
@@ -4,14 +4,14 @@ use std::time::Duration;
use anyhow::{anyhow, Error}; use anyhow::{anyhow, Error};
use common::debounced_delay::DebouncedDelay; use common::debounced_delay::DebouncedDelay;
use common::display::{RenderedTimestamp, TextUtils}; use common::display::{ReadableTimestamp, TextUtils};
use global::constants::{BOOTSTRAP_RELAYS, SEARCH_RELAYS}; use global::constants::{BOOTSTRAP_RELAYS, SEARCH_RELAYS};
use global::{app_state, nostr_client, UnwrappingStatus}; use global::{css, nostr_client, UnwrappingStatus};
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
use gpui::{ use gpui::{
deferred, div, relative, uniform_list, AnyElement, App, AppContext, Context, Entity, div, uniform_list, AnyElement, App, AppContext, Context, Entity, EventEmitter, FocusHandle,
EventEmitter, FocusHandle, Focusable, InteractiveElement, IntoElement, ParentElement, Render, Focusable, InteractiveElement, IntoElement, ParentElement, Render, RetainAllImageCache,
RetainAllImageCache, SharedString, Styled, Subscription, Task, Window, SharedString, Styled, Subscription, Task, Window,
}; };
use gpui_tokio::Tokio; use gpui_tokio::Tokio;
use i18n::{shared_t, t}; use i18n::{shared_t, t};
@@ -23,7 +23,7 @@ use registry::{Registry, RegistryEvent};
use settings::AppSettings; use settings::AppSettings;
use smallvec::{smallvec, SmallVec}; use smallvec::{smallvec, SmallVec};
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonRounded, ButtonVariants};
use ui::dock_area::panel::{Panel, PanelEvent}; use ui::dock_area::panel::{Panel, PanelEvent};
use ui::input::{InputEvent, InputState, TextInput}; use ui::input::{InputEvent, InputState, TextInput};
use ui::popup_menu::{PopupMenu, PopupMenuExt}; use ui::popup_menu::{PopupMenu, PopupMenuExt};
@@ -56,7 +56,7 @@ pub struct Sidebar {
focus_handle: FocusHandle, focus_handle: FocusHandle,
image_cache: Entity<RetainAllImageCache>, image_cache: Entity<RetainAllImageCache>,
#[allow(dead_code)] #[allow(dead_code)]
subscriptions: SmallVec<[Subscription; 3]>, subscriptions: SmallVec<[Subscription; 2]>,
} }
impl Sidebar { impl Sidebar {
@@ -77,35 +77,28 @@ impl Sidebar {
let registry = Registry::global(cx); let registry = Registry::global(cx);
let mut subscriptions = smallvec![]; let mut subscriptions = smallvec![];
subscriptions.push( subscriptions.push(cx.subscribe_in(
// Clear the image cache when sidebar is closed &registry,
cx.on_release_in(window, move |this, window, cx| { window,
this.image_cache.update(cx, |this, cx| { move |this, _, event, _window, cx| {
this.clear(window, cx);
})
}),
);
subscriptions.push(
// Subscribe for registry new events
cx.subscribe_in(&registry, window, move |this, _, event, _window, cx| {
if let RegistryEvent::NewRequest(kind) = event { if let RegistryEvent::NewRequest(kind) = event {
this.indicator.update(cx, |this, cx| { this.indicator.update(cx, |this, cx| {
*this = Some(kind.to_owned()); *this = Some(kind.to_owned());
cx.notify(); cx.notify();
}); });
} }
}), },
); ));
subscriptions.push( subscriptions.push(cx.subscribe_in(
// Subscribe for find input events &find_input,
cx.subscribe_in(&find_input, window, |this, state, event, window, cx| { window,
|this, _state, event, window, cx| {
match event { match event {
InputEvent::PressEnter { .. } => this.search(window, cx), InputEvent::PressEnter { .. } => this.search(window, cx),
InputEvent::Change => { InputEvent::Change(text) => {
// Clear the result when input is empty // Clear the result when input is empty
if state.read(cx).value().is_empty() { if text.is_empty() {
this.clear_search_results(window, cx); this.clear_search_results(window, cx);
} else { } else {
// Run debounced search // Run debounced search
@@ -119,8 +112,8 @@ impl Sidebar {
} }
_ => {} _ => {}
} }
}), },
); ));
Self { Self {
name: "Sidebar".into(), name: "Sidebar".into(),
@@ -138,8 +131,7 @@ impl Sidebar {
} }
} }
async fn request_metadata(public_key: PublicKey) -> Result<(), Error> { async fn request_metadata(client: &Client, public_key: PublicKey) -> Result<(), Error> {
let client = nostr_client();
let opts = SubscribeAutoCloseOptions::default().exit_policy(ReqExitPolicy::ExitOnEOSE); let opts = SubscribeAutoCloseOptions::default().exit_policy(ReqExitPolicy::ExitOnEOSE);
let kinds = vec![Kind::Metadata, Kind::ContactList, Kind::RelayList]; let kinds = vec![Kind::Metadata, Kind::ContactList, Kind::RelayList];
let filter = Filter::new().author(public_key).kinds(kinds).limit(10); let filter = Filter::new().author(public_key).kinds(kinds).limit(10);
@@ -153,21 +145,23 @@ impl Sidebar {
Ok(()) Ok(())
} }
async fn create_temp_room(receiver: PublicKey) -> Result<Room, Error> { async fn create_temp_room(identity: PublicKey, public_key: PublicKey) -> Result<Room, Error> {
let client = nostr_client();
let keys = Keys::generate();
let builder = EventBuilder::private_msg_rumor(public_key, "");
let event = builder.build(identity).sign(&keys).await?;
// Request to get user's metadata // Request to get user's metadata
Self::request_metadata(receiver).await?; Self::request_metadata(client, public_key).await?;
// Create a temporary room // Create a temporary room
let room = Room::new(None, vec![receiver]).await?; let room = Room::new(&event).rearrange_by(identity);
Ok(room) Ok(room)
} }
async fn nip50(query: &str) -> Result<BTreeSet<Room>, Error> { async fn nip50(identity: PublicKey, query: &str) -> BTreeSet<Room> {
let client = nostr_client(); let client = nostr_client();
let signer = client.signer().await?;
let public_key = signer.get_public_key().await?;
let timeout = Duration::from_secs(2); let timeout = Duration::from_secs(2);
let mut rooms: BTreeSet<Room> = BTreeSet::new(); let mut rooms: BTreeSet<Room> = BTreeSet::new();
@@ -183,18 +177,18 @@ impl Sidebar {
// Process to verify the search results // Process to verify the search results
for event in events.into_iter().unique_by(|event| event.pubkey) { for event in events.into_iter().unique_by(|event| event.pubkey) {
// Skip if author is match current user // Skip if author is match current user
if event.pubkey == public_key { if event.pubkey == identity {
continue; continue;
} }
// Return a temporary room // Return a temporary room
if let Ok(room) = Self::create_temp_room(event.pubkey).await { if let Ok(room) = Self::create_temp_room(identity, event.pubkey).await {
rooms.insert(room); rooms.insert(room);
} }
} }
} }
Ok(rooms) rooms
} }
fn debounced_search(&self, window: &mut Window, cx: &mut Context<Self>) -> Task<()> { fn debounced_search(&self, window: &mut Window, cx: &mut Context<Self>) -> Task<()> {
@@ -213,11 +207,15 @@ impl Sidebar {
window: &mut Window, window: &mut Window,
cx: &mut Context<Self>, cx: &mut Context<Self>,
) { ) {
let identity = Registry::read_global(cx).identity(cx).public_key();
let query = query.to_owned(); let query = query.to_owned();
let query_cloned = query.clone(); let query_cloned = query.clone();
let task = smol::future::or( let task = smol::future::or(
Tokio::spawn(cx, async move { Self::nip50(&query).await.ok() }), Tokio::spawn(cx, async move {
let rooms = Self::nip50(identity, &query).await;
Some(rooms)
}),
Tokio::spawn(cx, async move { Tokio::spawn(cx, async move {
let _ = rx.recv().await.is_ok(); let _ = rx.recv().await.is_ok();
None None
@@ -264,11 +262,12 @@ impl Sidebar {
} }
fn search_by_nip05(&mut self, query: &str, window: &mut Window, cx: &mut Context<Self>) { fn search_by_nip05(&mut self, query: &str, window: &mut Window, cx: &mut Context<Self>) {
let identity = Registry::read_global(cx).identity(cx).public_key();
let address = query.to_owned(); let address = query.to_owned();
let task = Tokio::spawn(cx, async move { let task = Tokio::spawn(cx, async move {
if let Ok(profile) = common::nip05::nip05_profile(&address).await { if let Ok(profile) = common::nip05::nip05_profile(&address).await {
Self::create_temp_room(profile.public_key).await Self::create_temp_room(identity, profile.public_key).await
} else { } else {
Err(anyhow!(t!("sidebar.addr_error"))) Err(anyhow!(t!("sidebar.addr_error")))
} }
@@ -317,9 +316,10 @@ impl Sidebar {
return; return;
}; };
let identity = Registry::read_global(cx).identity(cx).public_key();
let task: Task<Result<Room, Error>> = cx.background_spawn(async move { let task: Task<Result<Room, Error>> = cx.background_spawn(async move {
// Create a gift wrap event to represent as room // Create a gift wrap event to represent as room
Self::create_temp_room(public_key).await Self::create_temp_room(identity, public_key).await
}); });
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
@@ -530,8 +530,8 @@ impl Sidebar {
fn on_manage(&mut self, _ev: &RelayStatus, window: &mut Window, cx: &mut Context<Self>) { fn on_manage(&mut self, _ev: &RelayStatus, window: &mut Window, cx: &mut Context<Self>) {
let task: Task<Result<Vec<Relay>, Error>> = cx.background_spawn(async move { let task: Task<Result<Vec<Relay>, Error>> = cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let app_state = app_state(); let css = css();
let subscription = client.subscription(&app_state.gift_wrap_sub_id).await; let subscription = client.subscription(&css.gift_wrap_sub_id).await;
let mut relays: Vec<Relay> = vec![]; let mut relays: Vec<Relay> = vec![];
for (url, _filter) in subscription.into_iter() { for (url, _filter) in subscription.into_iter() {
@@ -669,7 +669,6 @@ impl Focusable for Sidebar {
impl Render for Sidebar { impl Render for Sidebar {
fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement { fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
let registry = Registry::read_global(cx); let registry = Registry::read_global(cx);
let loading = registry.unwrapping_status.read(cx) != &UnwrappingStatus::Complete;
// Get rooms from either search results or the chat registry // Get rooms from either search results or the chat registry
let rooms = if let Some(results) = self.local_result.read(cx).as_ref() { let rooms = if let Some(results) = self.local_result.read(cx).as_ref() {
@@ -689,7 +688,7 @@ impl Render for Sidebar {
let mut total_rooms = rooms.len(); let mut total_rooms = rooms.len();
// Add 3 dummy rooms to display as skeletons // Add 3 dummy rooms to display as skeletons
if loading { if registry.unwrapping_status.read(cx) != &UnwrappingStatus::Complete {
total_rooms += 3 total_rooms += 3
} }
@@ -715,7 +714,6 @@ impl Render for Sidebar {
.small() .small()
.cleanable() .cleanable()
.appearance(true) .appearance(true)
.text_xs()
.suffix( .suffix(
Button::new("find") Button::new("find")
.icon(IconName::Search) .icon(IconName::Search)
@@ -745,16 +743,16 @@ impl Render for Sidebar {
.tooltip(t!("sidebar.all_conversations_tooltip")) .tooltip(t!("sidebar.all_conversations_tooltip"))
.when_some(self.indicator.read(cx).as_ref(), |this, kind| { .when_some(self.indicator.read(cx).as_ref(), |this, kind| {
this.when(kind == &RoomKind::Ongoing, |this| { this.when(kind == &RoomKind::Ongoing, |this| {
this.child(deferred( this.child(
div().size_1().rounded_full().bg(cx.theme().cursor), div().size_1().rounded_full().bg(cx.theme().cursor),
)) )
}) })
}) })
.small() .small()
.cta() .cta()
.bold() .bold()
.secondary() .secondary()
.rounded() .rounded(ButtonRounded::Full)
.selected(self.filter(&RoomKind::Ongoing, cx)) .selected(self.filter(&RoomKind::Ongoing, cx))
.on_click(cx.listener(|this, _, _, cx| { .on_click(cx.listener(|this, _, _, cx| {
this.set_filter(RoomKind::Ongoing, cx); this.set_filter(RoomKind::Ongoing, cx);
@@ -766,16 +764,16 @@ impl Render for Sidebar {
.tooltip(t!("sidebar.requests_tooltip")) .tooltip(t!("sidebar.requests_tooltip"))
.when_some(self.indicator.read(cx).as_ref(), |this, kind| { .when_some(self.indicator.read(cx).as_ref(), |this, kind| {
this.when(kind != &RoomKind::Ongoing, |this| { this.when(kind != &RoomKind::Ongoing, |this| {
this.child(deferred( this.child(
div().size_1().rounded_full().bg(cx.theme().cursor), div().size_1().rounded_full().bg(cx.theme().cursor),
)) )
}) })
}) })
.small() .small()
.cta() .cta()
.bold() .bold()
.secondary() .secondary()
.rounded() .rounded(ButtonRounded::Full)
.selected(!self.filter(&RoomKind::Ongoing, cx)) .selected(!self.filter(&RoomKind::Ongoing, cx))
.on_click(cx.listener(|this, _, _, cx| { .on_click(cx.listener(|this, _, _, cx| {
this.set_filter(RoomKind::default(), cx); this.set_filter(RoomKind::default(), cx);
@@ -793,7 +791,7 @@ impl Render for Sidebar {
.icon(IconName::Ellipsis) .icon(IconName::Ellipsis)
.xsmall() .xsmall()
.ghost() .ghost()
.rounded() .rounded(ButtonRounded::Full)
.popup_menu(move |this, _window, _cx| { .popup_menu(move |this, _window, _cx| {
this.menu( this.menu(
t!("sidebar.reload_menu"), t!("sidebar.reload_menu"),
@@ -807,57 +805,6 @@ impl Render for Sidebar {
), ),
), ),
) )
.when(!loading && total_rooms == 0, |this| {
this.map(|this| {
if self.filter(&RoomKind::Ongoing, cx) {
this.child(deferred(
v_flex()
.py_2()
.gap_1p5()
.items_center()
.justify_center()
.text_center()
.child(
div()
.text_sm()
.font_semibold()
.line_height(relative(1.25))
.child(shared_t!("sidebar.no_conversations")),
)
.child(
div()
.text_xs()
.text_color(cx.theme().text_muted)
.line_height(relative(1.25))
.child(shared_t!("sidebar.no_conversations_label")),
),
))
} else {
this.child(deferred(
v_flex()
.py_2()
.gap_1p5()
.items_center()
.justify_center()
.text_center()
.child(
div()
.text_sm()
.font_semibold()
.line_height(relative(1.25))
.child(shared_t!("sidebar.no_requests")),
)
.child(
div()
.text_xs()
.text_color(cx.theme().text_muted)
.line_height(relative(1.25))
.child(shared_t!("sidebar.no_requests_label")),
),
))
}
})
})
.child( .child(
uniform_list( uniform_list(
"rooms", "rooms",
+26 -22
View File
@@ -1,6 +1,6 @@
use std::time::Duration; use std::time::Duration;
use common::display::RenderedProfile; use common::display::ReadableProfile;
use common::nip05::nip05_verify; use common::nip05::nip05_verify;
use global::nostr_client; use global::nostr_client;
use gpui::prelude::FluentBuilder; use gpui::prelude::FluentBuilder;
@@ -17,7 +17,7 @@ use smallvec::{smallvec, SmallVec};
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::avatar::Avatar; use ui::avatar::Avatar;
use ui::button::{Button, ButtonVariants}; use ui::button::{Button, ButtonVariants};
use ui::{h_flex, v_flex, Icon, IconName, Sizable, StyledExt}; use ui::{h_flex, v_flex, Disableable, Icon, IconName, Sizable, StyledExt};
pub fn init(public_key: PublicKey, window: &mut Window, cx: &mut App) -> Entity<UserProfile> { pub fn init(public_key: PublicKey, window: &mut Window, cx: &mut App) -> Entity<UserProfile> {
cx.new(|cx| UserProfile::new(public_key, window, cx)) cx.new(|cx| UserProfile::new(public_key, window, cx))
@@ -32,24 +32,27 @@ pub struct UserProfile {
} }
impl UserProfile { impl UserProfile {
pub fn new(target: PublicKey, window: &mut Window, cx: &mut Context<Self>) -> Self { pub fn new(public_key: PublicKey, window: &mut Window, cx: &mut Context<Self>) -> Self {
let registry = Registry::read_global(cx); let registry = Registry::read_global(cx);
let profile = registry.get_person(&target, cx); let identity = registry.identity(cx).public_key();
let profile = registry.get_person(&public_key, cx);
let mut tasks = smallvec![]; let mut tasks = smallvec![];
let check_follow: Task<Result<bool, Error>> = cx.background_spawn(async move { let check_follow: Task<bool> = cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let signer = client.signer().await?; let filter = Filter::new()
let public_key = signer.get_public_key().await?; .kind(Kind::ContactList)
let contact_list = client.database().contacts_public_keys(public_key).await?; .author(identity)
.pubkey(public_key)
.limit(1);
Ok(contact_list.contains(&target)) client.database().count(filter).await.unwrap_or(0) >= 1
}); });
let verify_nip05 = if let Some(address) = profile.metadata().nip05 { let verify_nip05 = if let Some(address) = profile.metadata().nip05 {
Some(Tokio::spawn(cx, async move { Some(Tokio::spawn(cx, async move {
nip05_verify(target, &address).await.unwrap_or(false) nip05_verify(public_key, &address).await.unwrap_or(false)
})) }))
} else { } else {
None None
@@ -58,7 +61,7 @@ impl UserProfile {
tasks.push( tasks.push(
// Load user profile data // Load user profile data
cx.spawn_in(window, async move |this, cx| { cx.spawn_in(window, async move |this, cx| {
let followed = check_follow.await.unwrap_or(false); let followed = check_follow.await;
// Update the followed status // Update the followed status
this.update(cx, |this, cx| { this.update(cx, |this, cx| {
@@ -125,19 +128,19 @@ impl UserProfile {
impl Render for UserProfile { impl Render for UserProfile {
fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement { fn render(&mut self, _window: &mut Window, cx: &mut Context<Self>) -> impl IntoElement {
let proxy = AppSettings::get_proxy_user_avatars(cx); let proxy = AppSettings::get_proxy_user_avatars(cx);
let bech32 = self.profile.public_key().to_bech32().unwrap();
let shared_bech32 = SharedString::from(bech32); let Ok(bech32) = self.profile.public_key().to_bech32();
let shared_bech32 = SharedString::new(bech32);
v_flex() v_flex()
.gap_4() .gap_4()
.text_sm()
.child( .child(
v_flex() v_flex()
.gap_3() .gap_3()
.items_center() .items_center()
.justify_center() .justify_center()
.text_center() .text_center()
.child(Avatar::new(self.profile.avatar(proxy)).size(rems(4.))) .child(Avatar::new(self.profile.avatar_url(proxy)).size(rems(4.)))
.child( .child(
v_flex() v_flex()
.child( .child(
@@ -186,10 +189,12 @@ impl Render for UserProfile {
.child( .child(
v_flex() v_flex()
.gap_1() .gap_1()
.text_sm()
.child( .child(
div() div()
.block()
.text_color(cx.theme().text_muted) .text_color(cx.theme().text_muted)
.child(SharedString::from("Public Key:")), .child("Public Key:"),
) )
.child( .child(
h_flex() h_flex()
@@ -197,13 +202,12 @@ impl Render for UserProfile {
.child( .child(
div() div()
.p_2() .p_2()
.h_7() .h_9()
.rounded_md() .rounded_md()
.bg(cx.theme().elevated_surface_background) .bg(cx.theme().elevated_surface_background)
.truncate() .truncate()
.text_ellipsis() .text_ellipsis()
.line_clamp(1) .line_clamp(1)
.line_height(relative(1.))
.child(shared_bech32), .child(shared_bech32),
) )
.child( .child(
@@ -215,8 +219,8 @@ impl Render for UserProfile {
IconName::Copy IconName::Copy
} }
}) })
.cta() .ghost()
.ghost_alt() .disabled(self.copied)
.on_click(cx.listener(move |this, _e, window, cx| { .on_click(cx.listener(move |this, _e, window, cx| {
this.copy_pubkey(window, cx); this.copy_pubkey(window, cx);
})), })),
@@ -226,6 +230,7 @@ impl Render for UserProfile {
.child( .child(
v_flex() v_flex()
.gap_1() .gap_1()
.text_sm()
.child( .child(
div() div()
.text_color(cx.theme().text_muted) .text_color(cx.theme().text_muted)
@@ -240,8 +245,7 @@ impl Render for UserProfile {
self.profile self.profile
.metadata() .metadata()
.about .about
.map(SharedString::from) .unwrap_or(t!("profile.no_bio").to_string()),
.unwrap_or(shared_t!("profile.no_bio")),
), ),
), ),
) )
+25 -39
View File
@@ -1,13 +1,12 @@
use gpui::{ use gpui::{
div, svg, AnyElement, App, AppContext, Context, Entity, EventEmitter, FocusHandle, Focusable, div, svg, AnyElement, App, AppContext, Context, Entity, EventEmitter, FocusHandle, Focusable,
InteractiveElement, IntoElement, ParentElement, Render, SharedString, IntoElement, ParentElement, Render, SharedString, Styled, Window,
StatefulInteractiveElement, Styled, Window,
}; };
use theme::ActiveTheme; use theme::ActiveTheme;
use ui::button::Button; use ui::button::Button;
use ui::dock_area::panel::{Panel, PanelEvent}; use ui::dock_area::panel::{Panel, PanelEvent};
use ui::popup_menu::PopupMenu; use ui::popup_menu::PopupMenu;
use ui::{v_flex, StyledExt}; use ui::StyledExt;
pub fn init(window: &mut Window, cx: &mut App) -> Entity<Welcome> { pub fn init(window: &mut Window, cx: &mut App) -> Entity<Welcome> {
Welcome::new(window, cx) Welcome::new(window, cx)
@@ -15,7 +14,8 @@ pub fn init(window: &mut Window, cx: &mut App) -> Entity<Welcome> {
pub struct Welcome { pub struct Welcome {
name: SharedString, name: SharedString,
version: SharedString, closable: bool,
zoomable: bool,
focus_handle: FocusHandle, focus_handle: FocusHandle,
} }
@@ -25,11 +25,10 @@ impl Welcome {
} }
fn view(_window: &mut Window, cx: &mut Context<Self>) -> Self { fn view(_window: &mut Window, cx: &mut Context<Self>) -> Self {
let version = SharedString::from(format!("Version: {}", env!("CARGO_PKG_VERSION")));
Self { Self {
version,
name: "Welcome".into(), name: "Welcome".into(),
closable: true,
zoomable: true,
focus_handle: cx.focus_handle(), focus_handle: cx.focus_handle(),
} }
} }
@@ -40,15 +39,16 @@ impl Panel for Welcome {
self.name.clone() self.name.clone()
} }
fn title(&self, cx: &App) -> AnyElement { fn title(&self, _cx: &App) -> AnyElement {
div() "👋".into_any_element()
.child( }
svg()
.path("brand/coop.svg") fn closable(&self, _cx: &App) -> bool {
.size_4() self.closable
.text_color(cx.theme().element_background), }
)
.into_any_element() fn zoomable(&self, _cx: &App) -> bool {
self.zoomable
} }
fn popup_menu(&self, menu: PopupMenu, _cx: &App) -> PopupMenu { fn popup_menu(&self, menu: PopupMenu, _cx: &App) -> PopupMenu {
@@ -76,10 +76,11 @@ impl Render for Welcome {
.items_center() .items_center()
.justify_center() .justify_center()
.child( .child(
v_flex() div()
.gap_2() .flex()
.flex_col()
.items_center() .items_center()
.justify_center() .gap_1()
.child( .child(
svg() svg()
.path("brand/coop.svg") .path("brand/coop.svg")
@@ -87,26 +88,11 @@ impl Render for Welcome {
.text_color(cx.theme().elevated_surface_background), .text_color(cx.theme().elevated_surface_background),
) )
.child( .child(
v_flex() div()
.items_center() .child("coop on nostr")
.justify_center() .text_color(cx.theme().text_placeholder)
.text_center() .font_semibold()
.child( .text_sm(),
div()
.font_semibold()
.text_color(cx.theme().text_muted)
.child(SharedString::from("coop on nostr")),
)
.child(
div()
.id("version")
.text_color(cx.theme().text_placeholder)
.text_xs()
.child(self.version.clone())
.on_click(|_, _window, cx| {
cx.open_url("https://github.com/lumehq/coop/releases");
}),
),
), ),
) )
} }
+44 -103
View File
@@ -57,7 +57,7 @@ pub enum UnwrappingStatus {
/// Signals sent through the global event channel to notify UI /// Signals sent through the global event channel to notify UI
#[derive(Debug)] #[derive(Debug)]
pub enum SignalKind { pub enum Signal {
/// A signal to notify UI that the client's signer has been set /// A signal to notify UI that the client's signer has been set
SignerSet(PublicKey), SignerSet(PublicKey),
@@ -71,54 +71,25 @@ pub enum SignalKind {
ProxyDown, ProxyDown,
/// A signal to notify UI that a new profile has been received /// A signal to notify UI that a new profile has been received
NewProfile(Profile), Metadata(Profile),
/// A signal to notify UI that a new gift wrap event has been received /// A signal to notify UI that a new gift wrap event has been received
NewMessage((EventId, Event)), Message((EventId, Event)),
/// A signal to notify UI that no DM relays for current user was found /// A signal to notify UI that gift wrap process status has changed
RelaysNotFound, GiftWrapProcess(UnwrappingStatus),
/// A signal to notify UI that gift wrap status has changed /// A signal to notify UI that no DM relay for current user was found
GiftWrapStatus(UnwrappingStatus), DmRelayNotFound,
/// A signal to notify UI that there are errors or notices occurred /// A signal to notify UI that there are errors or notices occurred
Notice(Notice), Notice(Notice),
} }
#[derive(Debug)]
pub struct Signal {
rx: Receiver<SignalKind>,
tx: Sender<SignalKind>,
}
impl Default for Signal {
fn default() -> Self {
Self::new()
}
}
impl Signal {
pub fn new() -> Self {
let (tx, rx) = flume::bounded::<SignalKind>(2048);
Self { rx, tx }
}
pub fn receiver(&self) -> &Receiver<SignalKind> {
&self.rx
}
pub async fn send(&self, kind: SignalKind) {
if let Err(e) = self.tx.send_async(kind).await {
log::error!("Failed to send signal: {e}");
}
}
}
#[derive(Debug)] #[derive(Debug)]
pub struct Ingester { pub struct Ingester {
rx: Receiver<PublicKey>, rx: Receiver<Signal>,
tx: Sender<PublicKey>, tx: Sender<Signal>,
} }
impl Default for Ingester { impl Default for Ingester {
@@ -129,87 +100,49 @@ impl Default for Ingester {
impl Ingester { impl Ingester {
pub fn new() -> Self { pub fn new() -> Self {
let (tx, rx) = flume::bounded::<PublicKey>(1024); let (tx, rx) = flume::bounded::<Signal>(2048);
Self { rx, tx } Self { rx, tx }
} }
pub fn receiver(&self) -> &Receiver<PublicKey> { pub fn signals(&self) -> &Receiver<Signal> {
&self.rx &self.rx
} }
pub async fn send(&self, public_key: PublicKey) { pub async fn send(&self, signal: Signal) {
if let Err(e) = self.tx.send_async(public_key).await { if let Err(e) = self.tx.send_async(signal).await {
log::error!("Failed to send public key: {e}"); log::error!("Failed to send signal: {e}");
} }
} }
} }
/// A simple storage to store all states that using across the application. /// A simple storage to store all runtime states that using across the application.
#[derive(Debug)] #[derive(Debug)]
pub struct AppState { pub struct CoopSimpleStorage {
/// The timestamp when the application was initialized.
pub init_at: Timestamp, pub init_at: Timestamp,
/// The timestamp when the application was last used.
pub last_used_at: Option<Timestamp>,
/// Whether this is the first run of the application.
pub is_first_run: AtomicBool,
/// Subscription ID for listening to gift wrap events from relays.
pub gift_wrap_sub_id: SubscriptionId, pub gift_wrap_sub_id: SubscriptionId,
/// Auto-close options for relay subscriptions
pub auto_close_opts: Option<SubscribeAutoCloseOptions>,
/// Whether gift wrap processing is in progress.
pub gift_wrap_processing: AtomicBool, pub gift_wrap_processing: AtomicBool,
pub auto_close_opts: Option<SubscribeAutoCloseOptions>,
/// Tracking events sent by Coop in the current session
pub sent_ids: RwLock<HashSet<EventId>>, pub sent_ids: RwLock<HashSet<EventId>>,
/// Tracking events seen on which relays in the current session
pub seen_on_relays: RwLock<HashMap<EventId, HashSet<RelayUrl>>>,
/// Tracking events that have been resent by Coop in the current session
pub resent_ids: RwLock<Vec<Output<EventId>>>, pub resent_ids: RwLock<Vec<Output<EventId>>>,
/// Temporarily store events that need to be resent later
pub resend_queue: RwLock<HashMap<EventId, RelayUrl>>, pub resend_queue: RwLock<HashMap<EventId, RelayUrl>>,
/// Signal channel for communication between Nostr and GPUI
pub signal: Signal,
/// Ingester channel for processing public keys
pub ingester: Ingester,
} }
impl Default for AppState { impl Default for CoopSimpleStorage {
fn default() -> Self { fn default() -> Self {
Self::new() Self::new()
} }
} }
impl AppState { impl CoopSimpleStorage {
pub fn new() -> Self { pub fn new() -> Self {
let init_at = Timestamp::now();
let first_run = first_run();
let opts = SubscribeAutoCloseOptions::default().exit_policy(ReqExitPolicy::ExitOnEOSE);
let signal = Signal::default();
let ingester = Ingester::default();
Self { Self {
init_at, init_at: Timestamp::now(),
signal,
ingester,
last_used_at: None,
is_first_run: AtomicBool::new(first_run),
gift_wrap_sub_id: SubscriptionId::new("inbox"), gift_wrap_sub_id: SubscriptionId::new("inbox"),
gift_wrap_processing: AtomicBool::new(false), gift_wrap_processing: AtomicBool::new(false),
auto_close_opts: Some(opts), auto_close_opts: Some(
SubscribeAutoCloseOptions::default().exit_policy(ReqExitPolicy::ExitOnEOSE),
),
sent_ids: RwLock::new(HashSet::new()), sent_ids: RwLock::new(HashSet::new()),
seen_on_relays: RwLock::new(HashMap::new()),
resent_ids: RwLock::new(Vec::new()), resent_ids: RwLock::new(Vec::new()),
resend_queue: RwLock::new(HashMap::new()), resend_queue: RwLock::new(HashMap::new()),
} }
@@ -217,7 +150,9 @@ impl AppState {
} }
static NOSTR_CLIENT: OnceLock<Client> = OnceLock::new(); static NOSTR_CLIENT: OnceLock<Client> = OnceLock::new();
static APP_STATE: OnceLock<AppState> = OnceLock::new(); static INGESTER: OnceLock<Ingester> = OnceLock::new();
static COOP_SIMPLE_STORAGE: OnceLock<CoopSimpleStorage> = OnceLock::new();
static FIRST_RUN: OnceLock<bool> = OnceLock::new();
pub fn nostr_client() -> &'static Client { pub fn nostr_client() -> &'static Client {
NOSTR_CLIENT.get_or_init(|| { NOSTR_CLIENT.get_or_init(|| {
@@ -235,26 +170,32 @@ pub fn nostr_client() -> &'static Client {
.automatic_authentication(false) .automatic_authentication(false)
.verify_subscriptions(false) .verify_subscriptions(false)
.sleep_when_idle(SleepWhenIdle::Enabled { .sleep_when_idle(SleepWhenIdle::Enabled {
timeout: Duration::from_secs(600), timeout: Duration::from_secs(30),
}); });
ClientBuilder::default().database(lmdb).opts(opts).build() ClientBuilder::default().database(lmdb).opts(opts).build()
}) })
} }
pub fn app_state() -> &'static AppState { pub fn ingester() -> &'static Ingester {
APP_STATE.get_or_init(AppState::new) INGESTER.get_or_init(Ingester::new)
} }
fn first_run() -> bool { pub fn css() -> &'static CoopSimpleStorage {
let flag = support_dir().join(format!(".{}-first_run", env!("CARGO_PKG_VERSION"))); COOP_SIMPLE_STORAGE.get_or_init(CoopSimpleStorage::new)
}
if !flag.exists() { pub fn first_run() -> &'static bool {
if std::fs::write(&flag, "").is_err() { FIRST_RUN.get_or_init(|| {
return false; let flag = support_dir().join(format!(".{}-first_run", env!("CARGO_PKG_VERSION")));
if !flag.exists() {
if std::fs::write(&flag, "").is_err() {
return false;
}
true // First run
} else {
false // Not first run
} }
true // First run })
} else {
false // Not first run
}
} }
+2 -2
View File
@@ -29,10 +29,10 @@ macro_rules! init {
#[macro_export] #[macro_export]
macro_rules! shared_t { macro_rules! shared_t {
($key:expr) => { ($key:expr) => {
SharedString::from(t!($key)) SharedString::new(t!($key))
}; };
($key:expr, $($param:ident = $value:expr),+) => { ($key:expr, $($param:ident = $value:expr),+) => {
SharedString::from(t!($key, $($param = $value),+)) SharedString::new(t!($key, $($param = $value),+))
}; };
} }
+30 -25
View File
@@ -44,8 +44,8 @@ pub struct Registry {
/// Status of the unwrapping process /// Status of the unwrapping process
pub unwrapping_status: Entity<UnwrappingStatus>, pub unwrapping_status: Entity<UnwrappingStatus>,
/// Public key of the currently activated signer /// Public Key of the current user
signer_pubkey: Option<PublicKey>, pub identity: Option<PublicKey>,
/// Tasks for asynchronous operations /// Tasks for asynchronous operations
_tasks: SmallVec<[Task<()>; 1]>, _tasks: SmallVec<[Task<()>; 1]>,
@@ -106,19 +106,21 @@ impl Registry {
unwrapping_status, unwrapping_status,
rooms: vec![], rooms: vec![],
persons: HashMap::new(), persons: HashMap::new(),
signer_pubkey: None, identity: None,
_tasks: tasks, _tasks: tasks,
} }
} }
/// Returns the public key of the currently activated signer. /// Returns the identity of the user.
pub fn signer_pubkey(&self) -> Option<PublicKey> { ///
self.signer_pubkey /// WARNING: This method will panic if user is not logged in.
pub fn identity(&self, cx: &App) -> Profile {
self.get_person(&self.identity.unwrap(), cx)
} }
/// Update the public key of the currently activated signer. /// Sets the identity of the user.
pub fn set_signer_pubkey(&mut self, public_key: PublicKey, cx: &mut Context<Self>) { pub fn set_identity(&mut self, identity: PublicKey, cx: &mut Context<Self>) {
self.signer_pubkey = Some(public_key); self.identity = Some(identity);
cx.notify(); cx.notify();
} }
@@ -252,7 +254,7 @@ impl Registry {
self.set_unwrapping_status(UnwrappingStatus::default(), cx); self.set_unwrapping_status(UnwrappingStatus::default(), cx);
// Clear the current identity // Clear the current identity
self.signer_pubkey = None; self.identity = None;
// Clear all current rooms // Clear all current rooms
self.rooms.clear(); self.rooms.clear();
@@ -274,7 +276,7 @@ impl Registry {
let contacts = client.database().contacts_public_keys(public_key).await?; let contacts = client.database().contacts_public_keys(public_key).await?;
// Get messages sent by the user // Get messages sent by the user
let sent = Filter::new() let send = Filter::new()
.kind(Kind::PrivateDirectMessage) .kind(Kind::PrivateDirectMessage)
.author(public_key); .author(public_key);
@@ -283,9 +285,9 @@ impl Registry {
.kind(Kind::PrivateDirectMessage) .kind(Kind::PrivateDirectMessage)
.pubkey(public_key); .pubkey(public_key);
let sent_events = client.database().query(sent).await?; let send_events = client.database().query(send).await?;
let recv_events = client.database().query(recv).await?; let recv_events = client.database().query(recv).await?;
let events = sent_events.merge(recv_events); let events = send_events.merge(recv_events);
let mut rooms: HashSet<Room> = HashSet::new(); let mut rooms: HashSet<Room> = HashSet::new();
@@ -295,16 +297,12 @@ impl Registry {
.sorted_by_key(|event| Reverse(event.created_at)) .sorted_by_key(|event| Reverse(event.created_at))
.filter(|ev| ev.tags.public_keys().peekable().peek().is_some()) .filter(|ev| ev.tags.public_keys().peekable().peek().is_some())
{ {
// Parse the room from the nostr event if rooms.iter().any(|room| room.id == event.uniq_id()) {
let room = Room::from(&event);
// Skip if the room is already in the set
if rooms.iter().any(|r| r.id == room.id) {
continue; continue;
} }
// Get all public keys from the event's tags // Get all public keys from the event's tags
let mut public_keys: Vec<PublicKey> = room.members().to_vec(); let mut public_keys = event.all_pubkeys();
public_keys.retain(|pk| pk != &public_key); public_keys.retain(|pk| pk != &public_key);
// Bypass screening flag // Bypass screening flag
@@ -325,6 +323,9 @@ impl Registry {
// If current user has sent a message at least once, mark as ongoing // If current user has sent a message at least once, mark as ongoing
let is_ongoing = client.database().count(filter).await.unwrap_or(1) >= 1; let is_ongoing = client.database().count(filter).await.unwrap_or(1) >= 1;
// Create a new room
let room = Room::new(&event).rearrange_by(public_key);
if is_ongoing || bypassed { if is_ongoing || bypassed {
rooms.insert(room.kind(RoomKind::Ongoing)); rooms.insert(room.kind(RoomKind::Ongoing));
} else { } else {
@@ -418,7 +419,7 @@ impl Registry {
/// Updates room ordering based on the most recent messages. /// Updates room ordering based on the most recent messages.
pub fn event_to_message( pub fn event_to_message(
&mut self, &mut self,
gift_wrap: EventId, gift_wrap_id: EventId,
event: Event, event: Event,
window: &mut Window, window: &mut Window,
cx: &mut Context<Self>, cx: &mut Context<Self>,
@@ -426,7 +427,7 @@ impl Registry {
let id = event.uniq_id(); let id = event.uniq_id();
let author = event.pubkey; let author = event.pubkey;
let Some(public_key) = self.signer_pubkey else { let Some(identity) = self.identity else {
return; return;
}; };
@@ -436,17 +437,17 @@ impl Registry {
// Update room // Update room
room.update(cx, |this, cx| { room.update(cx, |this, cx| {
if is_new_event { if is_new_event {
this.set_created_at(event.created_at, cx); this.created_at(event.created_at, cx);
} }
// Set this room is ongoing if the new message is from current user // Set this room is ongoing if the new message is from current user
if author == public_key { if author == identity {
this.set_ongoing(cx); this.set_ongoing(cx);
} }
// Emit the new message to the room // Emit the new message to the room
cx.defer_in(window, move |this, _window, cx| { cx.defer_in(window, move |this, _window, cx| {
this.emit_message(gift_wrap, event, cx); this.emit_message(gift_wrap_id, event, cx);
}); });
}); });
@@ -457,8 +458,12 @@ impl Registry {
}); });
} }
} else { } else {
let room = Room::new(&event)
.kind(RoomKind::default())
.rearrange_by(identity);
// Push the new room to the front of the list // Push the new room to the front of the list
self.add_room(cx.new(|_| Room::from(&event)), cx); self.add_room(cx.new(|_| room), cx);
// Notify the UI about the new room // Notify the UI about the new room
cx.defer_in(window, move |_this, _window, cx| { cx.defer_in(window, move |_this, _window, cx| {
+12 -24
View File
@@ -5,7 +5,6 @@ use nostr_sdk::prelude::*;
#[derive(Debug, Clone, Hash, PartialEq, Eq)] #[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub enum Message { pub enum Message {
User(RenderedMessage), User(RenderedMessage),
Warning(String, Timestamp),
System(Timestamp), System(Timestamp),
} }
@@ -14,33 +13,18 @@ impl Message {
Self::User(user.into()) Self::User(user.into())
} }
pub fn warning(content: impl Into<String>) -> Self {
Self::Warning(content.into(), Timestamp::now())
}
pub fn system() -> Self { pub fn system() -> Self {
Self::System(Timestamp::default()) Self::System(Timestamp::default())
} }
fn timestamp(&self) -> &Timestamp {
match self {
Message::User(msg) => &msg.created_at,
Message::Warning(_, ts) => ts,
Message::System(ts) => ts,
}
}
} }
impl Ord for Message { impl Ord for Message {
fn cmp(&self, other: &Self) -> std::cmp::Ordering { fn cmp(&self, other: &Self) -> std::cmp::Ordering {
match (self, other) { match (self, other) {
// System always comes first (Message::User(a), Message::User(b)) => a.cmp(b),
(Message::System(_), Message::System(_)) => self.timestamp().cmp(other.timestamp()), (Message::System(a), Message::System(b)) => a.cmp(b),
(Message::System(_), _) => std::cmp::Ordering::Less, (Message::User(a), Message::System(b)) => a.created_at.cmp(b),
(_, Message::System(_)) => std::cmp::Ordering::Greater, (Message::System(a), Message::User(b)) => a.cmp(&b.created_at),
// For non-system messages, compare by timestamp
_ => self.timestamp().cmp(other.timestamp()),
} }
} }
} }
@@ -157,14 +141,18 @@ fn extract_reply_ids(inner: &Tags) -> Vec<EventId> {
let mut replies_to = vec![]; let mut replies_to = vec![];
for tag in inner.filter(TagKind::e()) { for tag in inner.filter(TagKind::e()) {
if let Some(id) = tag.content().and_then(|id| EventId::parse(id).ok()) { if let Some(content) = tag.content() {
replies_to.push(id); if let Ok(id) = EventId::from_hex(content) {
replies_to.push(id);
}
} }
} }
for tag in inner.filter(TagKind::q()) { for tag in inner.filter(TagKind::q()) {
if let Some(id) = tag.content().and_then(|id| EventId::parse(id).ok()) { if let Some(content) = tag.content() {
replies_to.push(id); if let Ok(id) = EventId::from_hex(content) {
replies_to.push(id);
}
} }
} }
+279 -347
View File
@@ -3,12 +3,12 @@ use std::collections::{HashMap, HashSet};
use std::hash::{Hash, Hasher}; use std::hash::{Hash, Hasher};
use std::time::Duration; use std::time::Duration;
use anyhow::{anyhow, Error}; use anyhow::Error;
use common::display::RenderedProfile; use common::display::ReadableProfile;
use common::event::EventUtils; use common::event::EventUtils;
use global::constants::SEND_RETRY; use global::constants::SEND_RETRY;
use global::{app_state, nostr_client}; use global::{css, nostr_client};
use gpui::{App, AppContext, Context, EventEmitter, SharedString, SharedUri, Task}; use gpui::{App, AppContext, Context, EventEmitter, SharedString, Task};
use itertools::Itertools; use itertools::Itertools;
use nostr_sdk::prelude::*; use nostr_sdk::prelude::*;
@@ -17,9 +17,9 @@ use crate::Registry;
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct SendReport { pub struct SendReport {
pub receiver: PublicKey, pub receiver: PublicKey,
pub tags: Option<Vec<Tag>>,
pub status: Option<Output<EventId>>, pub status: Option<Output<EventId>>,
pub error: Option<SharedString>, pub error: Option<SharedString>,
pub on_hold: Option<Event>,
pub relays_not_found: bool, pub relays_not_found: bool,
} }
@@ -29,14 +29,13 @@ impl SendReport {
receiver, receiver,
status: None, status: None,
error: None, error: None,
on_hold: None, tags: None,
relays_not_found: false, relays_not_found: false,
} }
} }
pub fn status(mut self, output: Output<EventId>) -> Self { pub fn not_found(mut self) -> Self {
self.status = Some(output); self.relays_not_found = true;
self.relays_not_found = false;
self self
} }
@@ -46,13 +45,14 @@ impl SendReport {
self self
} }
pub fn on_hold(mut self, event: Event) -> Self { pub fn status(mut self, output: Output<EventId>) -> Self {
self.on_hold = Some(event); self.status = Some(output);
self.relays_not_found = false;
self self
} }
pub fn not_found(mut self) -> Self { pub fn tags(mut self, tags: &Vec<Tag>) -> Self {
self.relays_not_found = true; self.tags = Some(tags.to_owned());
self self
} }
@@ -88,6 +88,8 @@ pub struct Room {
pub created_at: Timestamp, pub created_at: Timestamp,
/// Subject of the room /// Subject of the room
pub subject: Option<String>, pub subject: Option<String>,
/// Picture of the room
pub picture: Option<String>,
/// All members of the room /// All members of the room
pub members: Vec<PublicKey>, pub members: Vec<PublicKey>,
/// Kind /// Kind
@@ -122,97 +124,83 @@ impl Eq for Room {}
impl EventEmitter<RoomSignal> for Room {} impl EventEmitter<RoomSignal> for Room {}
impl From<&Event> for Room {
fn from(val: &Event) -> Self {
let id = val.uniq_id();
let created_at = val.created_at;
// Get the members from the event's tags and event's pubkey
let members = val.all_pubkeys();
// Get subject from tags
let subject = val
.tags
.find(TagKind::Subject)
.and_then(|tag| tag.content().map(|s| s.to_owned()));
Room {
id,
created_at,
subject,
members,
kind: RoomKind::default(),
}
}
}
impl From<&UnsignedEvent> for Room {
fn from(val: &UnsignedEvent) -> Self {
let id = val.uniq_id();
let created_at = val.created_at;
// Get the members from the event's tags and event's pubkey
let members = val.all_pubkeys();
// Get subject from tags
let subject = val
.tags
.find(TagKind::Subject)
.and_then(|tag| tag.content().map(|s| s.to_owned()));
Room {
id,
created_at,
subject,
members,
kind: RoomKind::default(),
}
}
}
impl Room { impl Room {
/// Constructs a new room instance for a private message with the given receiver and tags. pub fn new(event: &Event) -> Self {
pub async fn new(subject: Option<String>, receivers: Vec<PublicKey>) -> Result<Self, Error> { let id = event.uniq_id();
let client = nostr_client(); let created_at = event.created_at;
let signer = client.signer().await?;
let public_key = signer.get_public_key().await?;
if receivers.is_empty() { // Get the members from the event's tags and event's pubkey
return Err(anyhow!("You need to add at least one receiver")); let members = event
.all_pubkeys()
.into_iter()
.unique()
.sorted()
.collect_vec();
// Get the subject from the event's tags
let subject = if let Some(tag) = event.tags.find(TagKind::Subject) {
tag.content().map(|s| s.to_owned())
} else {
None
}; };
// Convert receiver's public keys into tags // Get the picture from the event's tags
let mut tags: Tags = Tags::from_list( let picture = if let Some(tag) = event.tags.find(TagKind::custom("picture")) {
receivers tag.content().map(|s| s.to_owned())
.iter() } else {
.map(|pubkey| Tag::public_key(pubkey.to_owned())) None
.collect(), };
);
// Add subject if it is present Self {
if let Some(subject) = subject { id,
tags.push(Tag::from_standardized_without_cell(TagStandard::Subject( created_at,
subject, subject,
))); picture,
members,
kind: RoomKind::default(),
} }
let mut event = EventBuilder::new(Kind::PrivateDirectMessage, "")
.tags(tags)
.build(public_key);
// Generate event ID
event.ensure_id();
Ok(Room::from(&event))
} }
/// Sets the kind of the room and returns the modified room /// Sets the kind of the room and returns the modified room
///
/// This is a builder-style method that allows chaining room modifications.
///
/// # Arguments
///
/// * `kind` - The RoomKind to set for this room
///
/// # Returns
///
/// The modified Room instance with the new kind
pub fn kind(mut self, kind: RoomKind) -> Self { pub fn kind(mut self, kind: RoomKind) -> Self {
self.kind = kind; self.kind = kind;
self self
} }
/// Sets this room is ongoing conversation /// Sets the rearrange_by field of the room and returns the modified room
///
/// This is a builder-style method that allows chaining room modifications.
///
/// # Arguments
///
/// * `rearrange_by` - The PublicKey to set for rearranging the member list
///
/// # Returns
///
/// The modified Room instance with the new member list after rearrangement
pub fn rearrange_by(mut self, rearrange_by: PublicKey) -> Self {
let (not_match, matches): (Vec<PublicKey>, Vec<PublicKey>) =
self.members.iter().partition(|&key| key != &rearrange_by);
self.members = not_match;
self.members.extend(matches);
self
}
/// Set the room kind to ongoing
///
/// # Arguments
///
/// * `cx` - The context to notify about the update
pub fn set_ongoing(&mut self, cx: &mut Context<Self>) { pub fn set_ongoing(&mut self, cx: &mut Context<Self>) {
if self.kind != RoomKind::Ongoing { if self.kind != RoomKind::Ongoing {
self.kind = RoomKind::Ongoing; self.kind = RoomKind::Ongoing;
@@ -220,78 +208,116 @@ impl Room {
} }
} }
/// Checks if the room is a group chat
///
/// # Returns
///
/// true if the room has more than 2 members, false otherwise
pub fn is_group(&self) -> bool {
self.members.len() > 2
}
/// Updates the creation timestamp of the room /// Updates the creation timestamp of the room
pub fn set_created_at(&mut self, created_at: impl Into<Timestamp>, cx: &mut Context<Self>) { ///
/// # Arguments
///
/// * `created_at` - The new Timestamp to set
/// * `cx` - The context to notify about the update
pub fn created_at(&mut self, created_at: impl Into<Timestamp>, cx: &mut Context<Self>) {
self.created_at = created_at.into(); self.created_at = created_at.into();
cx.notify(); cx.notify();
} }
/// Updates the subject of the room /// Updates the subject of the room
pub fn set_subject(&mut self, subject: String, cx: &mut Context<Self>) { ///
/// # Arguments
///
/// * `subject` - The new subject to set
/// * `cx` - The context to notify about the update
pub fn subject(&mut self, subject: String, cx: &mut Context<Self>) {
self.subject = Some(subject); self.subject = Some(subject);
cx.notify(); cx.notify();
} }
/// Returns the members of the room /// Updates the picture of the room
pub fn members(&self) -> &Vec<PublicKey> { ///
&self.members /// # Arguments
} ///
/// * `picture` - The new subject to set
/// Checks if the room has more than two members (group) /// * `cx` - The context to notify about the update
pub fn is_group(&self) -> bool { pub fn picture(&mut self, picture: String, cx: &mut Context<Self>) {
self.members.len() > 2 self.picture = Some(picture);
cx.notify();
} }
/// Gets the display name for the room /// Gets the display name for the room
pub fn display_name(&self, cx: &App) -> SharedString { ///
/// If the room has a subject set, that will be used as the display name.
/// Otherwise, it will generate a name based on the room members.
///
/// # Arguments
///
/// * `cx` - The application context
///
/// # Returns
///
/// A string containing the display name
pub fn display_name(&self, cx: &App) -> String {
if let Some(subject) = self.subject.clone() { if let Some(subject) = self.subject.clone() {
SharedString::from(subject) subject
} else { } else {
self.merged_name(cx) self.merge_name(cx)
} }
} }
/// Gets the display image for the room /// Gets the display image for the room
pub fn display_image(&self, proxy: bool, cx: &App) -> SharedUri { ///
if !self.is_group() { /// The image is determined by:
self.display_member(cx).avatar(proxy) /// - The room's picture if set
/// - The first member's avatar for 1:1 chats
/// - A default group image for group chats
///
/// # Arguments
///
/// * `proxy` - Whether to use the proxy for the avatar URL
/// * `cx` - The application context
///
/// # Returns
///
/// A string containing the image path or URL
pub fn display_image(&self, proxy: bool, cx: &App) -> String {
if let Some(picture) = self.picture.as_ref() {
picture.clone()
} else if !self.is_group() {
self.first_member(cx).avatar_url(proxy)
} else { } else {
SharedUri::from("brand/group.png") "brand/group.png".into()
} }
} }
/// Get a single member to represent the room /// Get the first member of the room.
/// ///
/// This member is always different from the current user. /// First member is always different from the current user.
fn display_member(&self, cx: &App) -> Profile { pub(crate) fn first_member(&self, cx: &App) -> Profile {
let registry = Registry::read_global(cx); let registry = Registry::read_global(cx);
if let Some(public_key) = registry.signer_pubkey() {
for member in self.members() {
if member != &public_key {
return registry.get_person(member, cx);
}
}
}
registry.get_person(&self.members[0], cx) registry.get_person(&self.members[0], cx)
} }
/// Merge the names of the first two members of the room. /// Merge the names of the first two members of the room.
fn merged_name(&self, cx: &App) -> SharedString { pub(crate) fn merge_name(&self, cx: &App) -> String {
let registry = Registry::read_global(cx); let registry = Registry::read_global(cx);
if self.is_group() { if self.is_group() {
let profiles: Vec<Profile> = self let profiles = self
.members .members
.iter() .iter()
.map(|public_key| registry.get_person(public_key, cx)) .map(|pk| registry.get_person(pk, cx))
.collect(); .collect::<Vec<_>>();
let mut name = profiles let mut name = profiles
.iter() .iter()
.take(2) .take(2)
.map(|p| p.name()) .map(|p| p.display_name())
.collect::<Vec<_>>() .collect::<Vec<_>>()
.join(", "); .join(", ");
@@ -299,128 +325,41 @@ impl Room {
name = format!("{}, +{}", name, profiles.len() - 2); name = format!("{}, +{}", name, profiles.len() - 2);
} }
SharedString::from(name) name
} else { } else {
self.display_member(cx).display_name() self.first_member(cx).display_name()
} }
} }
/// Connects to all members's messaging relays
pub fn connect(&self, cx: &App) -> Task<Result<HashMap<PublicKey, Vec<RelayUrl>>, Error>> {
let members = self.members.clone();
cx.background_spawn(async move {
let client = nostr_client();
let signer = client.signer().await?;
let public_key = signer.get_public_key().await?;
let mut relays = HashMap::new();
let mut processed = HashSet::new();
for member in members.into_iter() {
if member == public_key {
continue;
};
relays.insert(member, vec![]);
let filter = Filter::new()
.kind(Kind::InboxRelays)
.author(member)
.limit(1);
let mut stream = client
.stream_events(filter, Duration::from_secs(10))
.await?;
if let Some(event) = stream.next().await {
if processed.insert(event.id) {
let public_key = event.pubkey;
let urls: Vec<RelayUrl> = nip17::extract_owned_relay_list(event).collect();
// Check if at least one URL exists
if urls.is_empty() {
continue;
}
// Connect to relays
for url in urls.iter() {
client.add_relay(url).await?;
client.connect_relay(url).await?;
}
relays.entry(public_key).and_modify(|v| v.extend(urls));
}
}
}
Ok(relays)
})
}
pub fn disconnect(&self, relays: Vec<RelayUrl>, cx: &App) -> Task<Result<(), Error>> {
cx.background_spawn(async move {
let client = nostr_client();
for relay in relays.into_iter() {
client.disconnect_relay(relay).await?;
}
Ok(())
})
}
/// Loads all messages for this room from the database /// Loads all messages for this room from the database
///
/// # Arguments
///
/// * `cx` - The App context
///
/// # Returns
///
/// A Task that resolves to Result<Vec<Event>, Error> containing all messages for this room
pub fn load_messages(&self, cx: &App) -> Task<Result<Vec<Event>, Error>> { pub fn load_messages(&self, cx: &App) -> Task<Result<Vec<Event>, Error>> {
let members = self.members.clone(); let members = self.members.clone();
cx.background_spawn(async move { cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let signer = client.signer().await?; let public_key = members[members.len() - 1];
let public_key = signer.get_public_key().await?;
let sent_ids = app_state()
.sent_ids
.read()
.await
.iter()
.copied()
.collect_vec();
// Get seen events from database let sent = Filter::new()
let filter = Filter::new()
.kind(Kind::ApplicationSpecificData)
.identifiers(sent_ids);
let seen_events = client.database().query(filter).await?;
// Extract seen event IDs
let seen_ids: Vec<EventId> = seen_events
.into_iter()
.filter_map(|event| event.tags.event_ids().next().copied())
.collect();
// Get events that sent by current user
let filter = Filter::new()
.kind(Kind::PrivateDirectMessage) .kind(Kind::PrivateDirectMessage)
.author(public_key) .author(public_key)
.pubkeys(members.clone()); .pubkeys(members.clone());
let sent_events = client.database().query(filter).await?; let recv = Filter::new()
// Get events that received by current user
let filter = Filter::new()
.kind(Kind::PrivateDirectMessage) .kind(Kind::PrivateDirectMessage)
.authors(members) .authors(members)
.pubkey(public_key); .pubkey(public_key);
let recv_events = client.database().query(filter).await?; let sent_events = client.database().query(sent).await?;
let recv_events = client.database().query(recv).await?;
// Merge events let events: Vec<Event> = sent_events.merge(recv_events).into_iter().collect();
let events: Vec<Event> = sent_events
.merge(recv_events)
.into_iter()
.filter(|event| !seen_ids.contains(&event.id))
.collect();
Ok(events) Ok(events)
}) })
@@ -436,33 +375,24 @@ impl Room {
cx.emit(RoomSignal::Refresh); cx.emit(RoomSignal::Refresh);
} }
/// Create a new message event (unsigned) /// Creates a temporary message for optimistic updates
pub fn create_message(&self, content: &str, replies: &[EventId], cx: &App) -> UnsignedEvent { ///
let public_key = Registry::read_global(cx).signer_pubkey().unwrap(); /// The event must not been published to relays.
let subject = self.subject.clone(); pub fn create_temp_message(
&self,
receiver: PublicKey,
content: &str,
replies: &[EventId],
) -> UnsignedEvent {
let builder = EventBuilder::private_msg_rumor(receiver, content);
let mut tags = vec![]; let mut tags = vec![];
// Add receivers // Add event reference if it's present (replying to another event)
//
// NOTE: current user will be removed from the list of receivers
for member in self.members.iter() {
tags.push(Tag::public_key(member.to_owned()));
}
// Add subject tag if it's present
if let Some(subject) = subject {
tags.push(Tag::from_standardized_without_cell(TagStandard::Subject(
subject,
)));
}
// Add reply/quote tag
if replies.len() == 1 { if replies.len() == 1 {
tags.push(Tag::event(replies[0])) tags.push(Tag::event(replies[0]))
} else { } else {
for id in replies { for id in replies.iter() {
tags.push(Tag::from_standardized_without_cell(TagStandard::Quote { tags.push(Tag::from_standardized(TagStandard::Quote {
event_id: id.to_owned(), event_id: id.to_owned(),
relay_url: None, relay_url: None,
public_key: None, public_key: None,
@@ -470,63 +400,97 @@ impl Room {
} }
} }
// Construct a direct message event let mut event = builder.tags(tags).build(receiver);
// // Ensure event ID is set
// WARNING: never send this event to relays
let mut event = EventBuilder::new(Kind::PrivateDirectMessage, content)
.tags(tags)
.build(public_key);
// Generate event ID
event.ensure_id(); event.ensure_id();
event event
} }
/// Create a task to send a message to all room members /// Create a task to sends a message to all members in the background
pub fn send_message( pub fn send_in_background(
&self, &self,
rumor: UnsignedEvent, content: &str,
replies: Vec<EventId>,
backup: bool, backup: bool,
cx: &App, cx: &App,
) -> Task<Result<Vec<SendReport>, Error>> { ) -> Task<Result<Vec<SendReport>, Error>> {
let mut members = self.members.clone(); let content = content.to_owned();
let subject = self.subject.clone();
let picture = self.picture.clone();
let mut public_keys = self.members.clone();
cx.background_spawn(async move { cx.background_spawn(async move {
let app_state = app_state(); let css = css();
let client = nostr_client(); let client = nostr_client();
let signer = client.signer().await?; let signer = client.signer().await?;
let public_key = signer.get_public_key().await?; let public_key = signer.get_public_key().await?;
// Remove the current user's public key from the list of receivers let mut tags: Vec<Tag> = public_keys
// Current user will be handled separately .iter()
members.retain(|&pk| pk != public_key); .filter_map(|&this| {
if this != public_key {
Some(Tag::public_key(this))
} else {
None
}
})
.collect();
let mut reports: Vec<SendReport> = vec![]; // Add event reference if it's present (replying to another event)
if replies.len() == 1 {
tags.push(Tag::event(replies[0]))
} else {
for id in replies.iter() {
tags.push(Tag::from_standardized(TagStandard::Quote {
event_id: id.to_owned(),
relay_url: None,
public_key: None,
}))
}
}
for receiver in members.into_iter() { // Add subject tag if it's present
let rumor = rumor.clone(); if let Some(subject) = subject {
let event = EventBuilder::gift_wrap(&signer, &receiver, rumor, vec![]).await?; tags.push(Tag::from_standardized(TagStandard::Subject(
subject.to_string(),
)));
}
let Ok(relay_urls) = Self::messaging_relays(receiver).await else { // Add picture tag if it's present
reports.push(SendReport::new(receiver).not_found()); if let Some(picture) = picture {
continue; tags.push(Tag::custom(TagKind::custom("picture"), vec![picture]));
}; }
match client.send_event_to(relay_urls, &event).await { // Remove the current public key from the list of receivers
public_keys.retain(|&pk| pk != public_key);
// Stored all send errors
let mut reports = vec![];
for pubkey in public_keys.into_iter() {
match client
.send_private_msg(pubkey, &content, tags.clone())
.await
{
Ok(output) => { Ok(output) => {
let id = output.id().to_owned(); let id = output.id().to_owned();
let auth_required = output.failed.iter().any(|m| m.1.starts_with("auth-")); let auth_required = output.failed.iter().any(|m| m.1.starts_with("auth-"));
let report = SendReport::new(receiver).status(output); let report = SendReport::new(pubkey).status(output).tags(&tags);
if auth_required { if auth_required {
// Wait for authenticated and resent event successfully // Wait for authenticated and resent event successfully
for attempt in 0..=SEND_RETRY { for attempt in 0..=SEND_RETRY {
let ids = app_state.resent_ids.read().await;
// Check if event was successfully resent // Check if event was successfully resent
if let Some(output) = ids.iter().find(|e| e.id() == &id).cloned() { if let Some(output) = css
let output = SendReport::new(receiver).status(output); .resent_ids
.read()
.await
.iter()
.find(|e| e.id() == &id)
.cloned()
{
let output = SendReport::new(pubkey).status(output).tags(&tags);
reports.push(output); reports.push(output);
break; break;
} }
@@ -544,31 +508,33 @@ impl Room {
} }
} }
Err(e) => { Err(e) => {
reports.push(SendReport::new(receiver).error(e.to_string())); if let nostr_sdk::client::Error::PrivateMsgRelaysNotFound = e {
reports.push(SendReport::new(pubkey).not_found().tags(&tags));
} else {
reports.push(SendReport::new(pubkey).error(e.to_string()).tags(&tags));
}
} }
} }
} }
// Construct a gift wrap to back up to current user's owned messaging relays
let rumor = rumor.clone();
let event = EventBuilder::gift_wrap(&signer, &public_key, rumor, vec![]).await?;
// Only send a backup message to current user if sent successfully to others // Only send a backup message to current user if sent successfully to others
if reports.iter().all(|r| r.is_sent_success()) && backup { if reports.iter().all(|r| r.is_sent_success()) && backup {
if let Ok(relay_urls) = Self::messaging_relays(public_key).await { match client
match client.send_event_to(relay_urls, &event).await { .send_private_msg(public_key, &content, tags.clone())
Ok(output) => { .await
reports.push(SendReport::new(public_key).status(output)); {
} Ok(output) => {
Err(e) => { reports.push(SendReport::new(public_key).status(output).tags(&tags));
reports.push(SendReport::new(public_key).error(e.to_string())); }
Err(e) => {
if let nostr_sdk::client::Error::PrivateMsgRelaysNotFound = e {
reports.push(SendReport::new(public_key).not_found());
} else {
reports
.push(SendReport::new(public_key).error(e.to_string()).tags(&tags));
} }
} }
} else {
reports.push(SendReport::new(public_key).not_found());
} }
} else {
reports.push(SendReport::new(public_key).on_hold(event));
} }
Ok(reports) Ok(reports)
@@ -576,19 +542,19 @@ impl Room {
} }
/// Create a task to resend a failed message /// Create a task to resend a failed message
pub fn resend_message( pub fn resend(
&self, &self,
reports: Vec<SendReport>, reports: Vec<SendReport>,
message: String,
backup: bool,
cx: &App, cx: &App,
) -> Task<Result<Vec<SendReport>, Error>> { ) -> Task<Result<Vec<SendReport>, Error>> {
cx.background_spawn(async move { cx.background_spawn(async move {
let client = nostr_client(); let client = nostr_client();
let mut resend_reports = vec![]; let mut resend_reports = vec![];
let mut resend_tag = vec![];
for report in reports.into_iter() { for report in reports.into_iter() {
let receiver = report.receiver;
// Process failed events
if let Some(output) = report.status { if let Some(output) = report.status {
let id = output.id(); let id = output.id();
let urls: Vec<&RelayUrl> = output.failed.keys().collect(); let urls: Vec<&RelayUrl> = output.failed.keys().collect();
@@ -597,68 +563,34 @@ impl Room {
for url in urls.into_iter() { for url in urls.into_iter() {
let relay = client.pool().relay(url).await?; let relay = client.pool().relay(url).await?;
let id = relay.send_event(&event).await?; let id = relay.send_event(&event).await?;
let resent: Output<EventId> = Output { let resent: Output<EventId> = Output {
val: id, val: id,
success: HashSet::from([url.to_owned()]), success: HashSet::from([url.to_owned()]),
failed: HashMap::new(), failed: HashMap::new(),
}; };
resend_reports.push(SendReport::new(receiver).status(resent)); resend_reports.push(SendReport::new(report.receiver).status(resent));
} }
}
}
// Process the on hold event if it exists if let Some(tags) = report.tags {
if let Some(event) = report.on_hold { resend_tag.extend(tags);
if let Ok(relay_urls) = Self::messaging_relays(receiver).await {
match client.send_event_to(relay_urls, &event).await {
Ok(output) => {
resend_reports.push(SendReport::new(receiver).status(output));
}
Err(e) => {
resend_reports.push(SendReport::new(receiver).error(e.to_string()));
}
} }
} else {
resend_reports.push(SendReport::new(receiver).not_found());
} }
} }
} }
// Only send a backup message to current user if sent successfully to others
if backup && !resend_reports.is_empty() {
let signer = client.signer().await?;
let public_key = signer.get_public_key().await?;
let output = client
.send_private_msg(public_key, message, resend_tag)
.await?;
resend_reports.push(SendReport::new(public_key).status(output));
}
Ok(resend_reports) Ok(resend_reports)
}) })
} }
/// Gets messaging relays for public key
async fn messaging_relays(public_key: PublicKey) -> Result<Vec<RelayUrl>, Error> {
let client = nostr_client();
let mut relay_urls = vec![];
let filter = Filter::new()
.kind(Kind::InboxRelays)
.author(public_key)
.limit(1);
if let Some(event) = client.database().query(filter).await?.first_owned() {
let urls: Vec<RelayUrl> = nip17::extract_owned_relay_list(event).collect();
// Check if at least one URL exists
if urls.is_empty() {
return Err(anyhow!("Not found"));
}
// Connect to relays
for url in urls.iter() {
client.add_relay(url).await?;
client.connect_relay(url).await?;
}
relay_urls.extend(urls.into_iter().take(3).unique());
} else {
return Err(anyhow!("Not found"));
}
Ok(relay_urls)
}
} }
+1 -1
View File
@@ -3,4 +3,4 @@
/// ///
/// Magic number: There is one extra pixel of padding on the left side due to /// Magic number: There is one extra pixel of padding on the left side due to
/// the 1px border around the window on macOS apps. /// the 1px border around the window on macOS apps.
pub const TRAFFIC_LIGHT_PADDING: f32 = 80.; pub const TRAFFIC_LIGHT_PADDING: f32 = 71.;
-3
View File
@@ -28,6 +28,3 @@ uuid = "1.10"
once_cell = "1.19.0" once_cell = "1.19.0"
image = "0.25.1" image = "0.25.1"
linkify = "0.10.0" linkify = "0.10.0"
lsp-types = "0.97.0"
rope = { git = "https://github.com/zed-industries/zed.git" }
sum_tree = { git = "https://github.com/zed-industries/zed.git" }
+3 -8
View File
@@ -2,15 +2,10 @@ use gpui::{actions, Action};
use nostr_sdk::prelude::PublicKey; use nostr_sdk::prelude::PublicKey;
use serde::Deserialize; use serde::Deserialize;
/// Define a open public key action /// Define a open profile action
#[derive(Action, Clone, PartialEq, Eq, Deserialize, Debug)] #[derive(Action, Clone, PartialEq, Eq, Deserialize, Debug)]
#[action(namespace = pubkey, no_json)] #[action(namespace = profile, no_json)]
pub struct OpenPublicKey(pub PublicKey); pub struct OpenProfile(pub PublicKey);
/// Define a copy inline public key action
#[derive(Action, Clone, PartialEq, Eq, Deserialize, Debug)]
#[action(namespace = pubkey, no_json)]
pub struct CopyPublicKey(pub PublicKey);
/// Define a custom confirm action /// Define a custom confirm action
#[derive(Clone, Action, PartialEq, Eq, Deserialize)] #[derive(Clone, Action, PartialEq, Eq, Deserialize)]
+12 -7
View File
@@ -10,6 +10,11 @@ use crate::indicator::Indicator;
use crate::tooltip::Tooltip; use crate::tooltip::Tooltip;
use crate::{h_flex, Disableable, Icon, Selectable, Sizable, Size, StyledExt}; use crate::{h_flex, Disableable, Icon, Selectable, Sizable, Size, StyledExt};
pub enum ButtonRounded {
Normal,
Full,
}
#[derive(Clone, Copy, PartialEq, Eq)] #[derive(Clone, Copy, PartialEq, Eq)]
pub struct ButtonCustomVariant { pub struct ButtonCustomVariant {
color: Hsla, color: Hsla,
@@ -125,7 +130,7 @@ pub struct Button {
children: Vec<AnyElement>, children: Vec<AnyElement>,
variant: ButtonVariant, variant: ButtonVariant,
rounded: bool, rounded: ButtonRounded,
size: Size, size: Size,
disabled: bool, disabled: bool,
@@ -158,7 +163,7 @@ impl Button {
disabled: false, disabled: false,
selected: false, selected: false,
variant: ButtonVariant::default(), variant: ButtonVariant::default(),
rounded: false, rounded: ButtonRounded::Normal,
size: Size::Medium, size: Size::Medium,
tooltip: None, tooltip: None,
on_click: None, on_click: None,
@@ -172,9 +177,9 @@ impl Button {
} }
} }
/// Make the button rounded. /// Set the border radius of the Button.
pub fn rounded(mut self) -> Self { pub fn rounded(mut self, rounded: impl Into<ButtonRounded>) -> Self {
self.rounded = true; self.rounded = rounded.into();
self self
} }
@@ -310,8 +315,8 @@ impl RenderOnce for Button {
.cursor_default() .cursor_default()
.overflow_hidden() .overflow_hidden()
.map(|this| match self.rounded { .map(|this| match self.rounded {
false => this.rounded(cx.theme().radius), ButtonRounded::Normal => this.rounded(cx.theme().radius),
true => this.rounded_full(), ButtonRounded::Full => this.rounded_full(),
}) })
.map(|this| { .map(|this| {
if self.label.is_none() && self.children.is_empty() { if self.label.is_none() && self.children.is_empty() {
+8 -12
View File
@@ -412,15 +412,16 @@ impl TabPanel {
let is_zoomed = self.is_zoomed && state.zoomable; let is_zoomed = self.is_zoomed && state.zoomable;
let view = cx.entity().clone(); let view = cx.entity().clone();
let build_popup_menu = move |this, cx: &App| view.read(cx).popup_menu(this, cx); let build_popup_menu = move |this, cx: &App| view.read(cx).popup_menu(this, cx);
let toolbar = self.toolbar_buttons(window, cx);
let has_toolbar = !toolbar.is_empty();
h_flex() h_flex()
.p_0p5()
.gap_1() .gap_1()
.occlude() .occlude()
.rounded_full() .items_center()
.children(toolbar.into_iter().map(|btn| btn.small().ghost().rounded())) .children(
self.toolbar_buttons(window, cx)
.into_iter()
.map(|btn| btn.small().ghost()),
)
.when(self.is_zoomed, |this| { .when(self.is_zoomed, |this| {
this.child( this.child(
Button::new("zoom") Button::new("zoom")
@@ -433,16 +434,11 @@ impl TabPanel {
})), })),
) )
}) })
.when(has_toolbar, |this| {
this.bg(cx.theme().surface_background)
.child(div().flex_shrink_0().h_4().w_px().bg(cx.theme().border))
})
.child( .child(
Button::new("menu") Button::new("menu")
.icon(IconName::Ellipsis) .icon(IconName::Ellipsis)
.small() .small()
.ghost() .ghost()
.rounded()
.popup_menu({ .popup_menu({
let zoomable = state.zoomable; let zoomable = state.zoomable;
let closable = state.closable; let closable = state.closable;
@@ -651,7 +647,7 @@ impl TabPanel {
.child( .child(
div() div()
.size_full() .size_full()
.rounded_xl() .rounded_lg()
.shadow_sm() .shadow_sm()
.when(cx.theme().mode.is_dark(), |this| this.shadow_lg()) .when(cx.theme().mode.is_dark(), |this| this.shadow_lg())
.bg(cx.theme().panel_background) .bg(cx.theme().panel_background)
@@ -671,7 +667,7 @@ impl TabPanel {
.p_1() .p_1()
.child( .child(
div() div()
.rounded_xl() .rounded_lg()
.border_1() .border_1()
.border_color(cx.theme().element_disabled) .border_color(cx.theme().element_disabled)
.bg(cx.theme().drop_target_background) .bg(cx.theme().drop_target_background)
+1 -1
View File
@@ -22,10 +22,10 @@ pub struct History<I: HistoryItem> {
redos: Vec<I>, redos: Vec<I>,
last_changed_at: Instant, last_changed_at: Instant,
version: usize, version: usize,
pub(crate) ignore: bool,
max_undo: usize, max_undo: usize,
group_interval: Option<Duration>, group_interval: Option<Duration>,
unique: bool, unique: bool,
pub ignore: bool,
} }
impl<I> History<I> impl<I> History<I>
-4
View File
@@ -45,7 +45,6 @@ pub enum IconName {
Plus, Plus,
PlusFill, PlusFill,
PlusCircleFill, PlusCircleFill,
Group,
ResizeCorner, ResizeCorner,
Reply, Reply,
Report, Report,
@@ -53,7 +52,6 @@ pub enum IconName {
Signal, Signal,
Search, Search,
Settings, Settings,
Server,
SortAscending, SortAscending,
SortDescending, SortDescending,
Sun, Sun,
@@ -107,7 +105,6 @@ impl IconName {
Self::Plus => "icons/plus.svg", Self::Plus => "icons/plus.svg",
Self::PlusFill => "icons/plus-fill.svg", Self::PlusFill => "icons/plus-fill.svg",
Self::PlusCircleFill => "icons/plus-circle-fill.svg", Self::PlusCircleFill => "icons/plus-circle-fill.svg",
Self::Group => "icons/group.svg",
Self::ResizeCorner => "icons/resize-corner.svg", Self::ResizeCorner => "icons/resize-corner.svg",
Self::Reply => "icons/reply.svg", Self::Reply => "icons/reply.svg",
Self::Report => "icons/report.svg", Self::Report => "icons/report.svg",
@@ -115,7 +112,6 @@ impl IconName {
Self::Signal => "icons/signal.svg", Self::Signal => "icons/signal.svg",
Self::Search => "icons/search.svg", Self::Search => "icons/search.svg",
Self::Settings => "icons/settings.svg", Self::Settings => "icons/settings.svg",
Self::Server => "icons/server.svg",
Self::SortAscending => "icons/sort-ascending.svg", Self::SortAscending => "icons/sort-ascending.svg",
Self::SortDescending => "icons/sort-descending.svg", Self::SortDescending => "icons/sort-descending.svg",
Self::Sun => "icons/sun.svg", Self::Sun => "icons/sun.svg",
+5 -10
View File
@@ -1,10 +1,9 @@
use std::time::Duration; use std::time::Duration;
use gpui::{px, Context, Pixels, Timer}; use gpui::{Context, Timer};
static INTERVAL: Duration = Duration::from_millis(500); static INTERVAL: Duration = Duration::from_millis(500);
static PAUSE_DELAY: Duration = Duration::from_millis(300); static PAUSE_DELAY: Duration = Duration::from_millis(300);
pub(super) const CURSOR_WIDTH: Pixels = px(1.5);
/// To manage the Input cursor blinking. /// To manage the Input cursor blinking.
/// ///
@@ -12,7 +11,7 @@ pub(super) const CURSOR_WIDTH: Pixels = px(1.5);
/// Every loop will notify the view to update the `visible`, and Input will observe this update to touch repaint. /// Every loop will notify the view to update the `visible`, and Input will observe this update to touch repaint.
/// ///
/// The input painter will check if this in visible state, then it will draw the cursor. /// The input painter will check if this in visible state, then it will draw the cursor.
pub struct BlinkCursor { pub(crate) struct BlinkCursor {
visible: bool, visible: bool,
paused: bool, paused: bool,
epoch: usize, epoch: usize,
@@ -53,8 +52,10 @@ impl BlinkCursor {
// Schedule the next blink // Schedule the next blink
let epoch = self.next_epoch(); let epoch = self.next_epoch();
cx.spawn(async move |this, cx| { cx.spawn(async move |this, cx| {
Timer::after(INTERVAL).await; Timer::after(INTERVAL).await;
if let Some(this) = this.upgrade() { if let Some(this) = this.upgrade() {
this.update(cx, |this, cx| this.blink(epoch, cx)).ok(); this.update(cx, |this, cx| this.blink(epoch, cx)).ok();
} }
@@ -70,11 +71,11 @@ impl BlinkCursor {
/// Pause the blinking, and delay 500ms to resume the blinking. /// Pause the blinking, and delay 500ms to resume the blinking.
pub fn pause(&mut self, cx: &mut Context<Self>) { pub fn pause(&mut self, cx: &mut Context<Self>) {
self.paused = true; self.paused = true;
self.visible = true;
cx.notify(); cx.notify();
// delay 500ms to start the blinking // delay 500ms to start the blinking
let epoch = self.next_epoch(); let epoch = self.next_epoch();
cx.spawn(async move |this, cx| { cx.spawn(async move |this, cx| {
Timer::after(PAUSE_DELAY).await; Timer::after(PAUSE_DELAY).await;
@@ -89,9 +90,3 @@ impl BlinkCursor {
.detach(); .detach();
} }
} }
impl Default for BlinkCursor {
fn default() -> Self {
Self::new()
}
}
+7 -7
View File
@@ -1,28 +1,28 @@
use std::fmt::Debug; use std::fmt::Debug;
use std::ops::Range;
use crate::history::HistoryItem; use crate::history::HistoryItem;
use crate::input::cursor::Selection;
#[derive(Debug, PartialEq, Clone)] #[derive(Debug, PartialEq, Clone)]
pub struct Change { pub struct Change {
pub(crate) old_range: Selection, pub(crate) old_range: Range<usize>,
pub(crate) old_text: String, pub(crate) old_text: String,
pub(crate) new_range: Selection, pub(crate) new_range: Range<usize>,
pub(crate) new_text: String, pub(crate) new_text: String,
version: usize, version: usize,
} }
impl Change { impl Change {
pub fn new( pub fn new(
old_range: impl Into<Selection>, old_range: Range<usize>,
old_text: &str, old_text: &str,
new_range: impl Into<Selection>, new_range: Range<usize>,
new_text: &str, new_text: &str,
) -> Self { ) -> Self {
Self { Self {
old_range: old_range.into(), old_range,
old_text: old_text.to_string(), old_text: old_text.to_string(),
new_range: new_range.into(), new_range,
new_text: new_text.to_string(), new_text: new_text.to_string(),
version: 0, version: 0,
} }
+5 -4
View File
@@ -1,15 +1,16 @@
use gpui::{App, Styled}; use gpui::{App, Styled};
use i18n::t;
use theme::ActiveTheme; use theme::ActiveTheme;
use crate::button::{Button, ButtonVariants}; use crate::button::{Button, ButtonVariants as _};
use crate::{Icon, IconName, Sizable}; use crate::{Icon, IconName, Sizable as _};
#[inline] #[inline]
pub(crate) fn clear_button(cx: &App) -> Button { pub(crate) fn clear_button(cx: &App) -> Button {
Button::new("clean") Button::new("clean")
.icon(Icon::new(IconName::CloseCircle)) .icon(Icon::new(IconName::CloseCircle))
.tooltip("Clear") .tooltip(t!("common.clear"))
.small() .small()
.transparent()
.text_color(cx.theme().text_muted) .text_color(cx.theme().text_muted)
.transparent()
} }
-46
View File
@@ -1,46 +0,0 @@
use std::ops::Range;
/// A selection in the text, represented by start and end byte indices.
#[derive(Debug, Copy, Clone, PartialEq, Eq, Default)]
pub struct Selection {
pub start: usize,
pub end: usize,
}
impl Selection {
pub fn new(start: usize, end: usize) -> Self {
Self { start, end }
}
pub fn len(&self) -> usize {
self.end.saturating_sub(self.start)
}
pub fn is_empty(&self) -> bool {
self.start == self.end
}
/// Clears the selection, setting start and end to 0.
pub fn clear(&mut self) {
self.start = 0;
self.end = 0;
}
/// Checks if the given offset is within the selection range.
pub fn contains(&self, offset: usize) -> bool {
offset >= self.start && offset < self.end
}
}
impl From<Range<usize>> for Selection {
fn from(value: Range<usize>) -> Self {
Self::new(value.start, value.end)
}
}
impl From<Selection> for Range<usize> {
fn from(value: Selection) -> Self {
value.start..value.end
}
}
pub type Position = lsp_types::Position;
+244 -391
View File
@@ -1,34 +1,29 @@
use std::ops::Range; use std::{ops::Range, rc::Rc};
use std::rc::Rc;
use gpui::{ use gpui::{
fill, point, px, relative, size, App, Bounds, Corners, Element, ElementId, ElementInputHandler, fill, point, px, relative, size, App, Bounds, Corners, Element, ElementId, ElementInputHandler,
Entity, GlobalElementId, Half, Hitbox, IntoElement, LayoutId, MouseButton, MouseMoveEvent, Entity, GlobalElementId, IntoElement, LayoutId, MouseButton, MouseMoveEvent, Path, Pixels,
Path, Pixels, Point, ShapedLine, SharedString, Size, Style, TextAlign, TextRun, UnderlineStyle, Point, SharedString, Size, Style, TextAlign, TextRun, UnderlineStyle, Window, WrappedLine,
Window,
}; };
use rope::Rope;
use smallvec::SmallVec; use smallvec::SmallVec;
use theme::ActiveTheme; use theme::ActiveTheme;
use super::blink_cursor::CURSOR_WIDTH; use super::{InputState, LastLayout};
use super::rope_ext::RopeExt;
use super::state::{InputState, LastLayout};
use crate::Root; use crate::Root;
const BOTTOM_MARGIN_ROWS: usize = 3; const CURSOR_THICKNESS: Pixels = px(2.);
pub(super) const RIGHT_MARGIN: Pixels = px(10.); const RIGHT_MARGIN: Pixels = px(5.);
pub(super) const LINE_NUMBER_RIGHT_MARGIN: Pixels = px(10.); const BOTTOM_MARGIN_ROWS: usize = 1;
pub(super) struct TextElement { pub(super) struct TextElement {
pub(crate) state: Entity<InputState>, input: Entity<InputState>,
placeholder: SharedString, placeholder: SharedString,
} }
impl TextElement { impl TextElement {
pub(super) fn new(state: Entity<InputState>) -> Self { pub(super) fn new(input: Entity<InputState>) -> Self {
Self { Self {
state, input,
placeholder: SharedString::default(), placeholder: SharedString::default(),
} }
} }
@@ -41,12 +36,12 @@ impl TextElement {
fn paint_mouse_listeners(&mut self, window: &mut Window, _: &mut App) { fn paint_mouse_listeners(&mut self, window: &mut Window, _: &mut App) {
window.on_mouse_event({ window.on_mouse_event({
let state = self.state.clone(); let input = self.input.clone();
move |event: &MouseMoveEvent, _, window, cx| { move |event: &MouseMoveEvent, _, window, cx| {
if event.pressed_button == Some(MouseButton::Left) { if event.pressed_button == Some(MouseButton::Left) {
state.update(cx, |state, cx| { input.update(cx, |input, cx| {
state.on_drag_move(event, window, cx); input.on_drag_move(event, window, cx);
}); });
} }
} }
@@ -57,44 +52,33 @@ impl TextElement {
/// ///
/// - cursor bounds /// - cursor bounds
/// - scroll offset /// - scroll offset
/// - current row index (No only the visible lines, but all lines) /// - current line index
///
/// This method also will update for track scroll to cursor.
fn layout_cursor( fn layout_cursor(
&self, &self,
last_layout: &LastLayout, lines: &[WrappedLine],
line_height: Pixels,
bounds: &mut Bounds<Pixels>, bounds: &mut Bounds<Pixels>,
_: &mut Window, line_number_width: Pixels,
window: &mut Window,
cx: &mut App, cx: &mut App,
) -> (Option<Bounds<Pixels>>, Point<Pixels>, Option<usize>) { ) -> (Option<Bounds<Pixels>>, Point<Pixels>, Option<usize>) {
let state = self.state.read(cx); let input = self.input.read(cx);
let mut selected_range = input.selected_range.clone();
let line_height = last_layout.line_height; if let Some(marked_range) = &input.marked_range {
let visible_range = &last_layout.visible_range; selected_range = marked_range.end..marked_range.end;
let lines = &last_layout.lines;
let text_wrapper = &state.text_wrapper;
let line_number_width = last_layout.line_number_width;
let mut selected_range = state.selected_range;
if let Some(ime_marked_range) = &state.ime_marked_range {
selected_range = (ime_marked_range.end..ime_marked_range.end).into();
} }
let cursor = state.cursor(); let cursor_offset = input.cursor_offset();
let mut current_row = None; let mut current_line_index = None;
let mut scroll_offset = state.scroll_handle.offset(); let mut scroll_offset = input.scroll_handle.offset();
let mut cursor_bounds = None; let mut cursor_bounds = None;
// If the input has a fixed height (Otherwise is auto-grow), we need to add a bottom margin to the input. // If the input has a fixed height (Otherwise is auto-grow), we need to add a bottom margin to the input.
let top_bottom_margin = if state.mode.is_auto_grow() { let bottom_margin = if input.is_auto_grow() {
#[allow(clippy::if_same_then_else)] px(0.) + line_height
line_height
} else if visible_range.len() < BOTTOM_MARGIN_ROWS * 8 {
line_height
} else { } else {
BOTTOM_MARGIN_ROWS * line_height BOTTOM_MARGIN_ROWS * line_height + line_height
}; };
// The cursor corresponds to the current cursor position in the text no only the line. // The cursor corresponds to the current cursor position in the text no only the line.
let mut cursor_pos = None; let mut cursor_pos = None;
let mut cursor_start = None; let mut cursor_start = None;
@@ -102,98 +86,68 @@ impl TextElement {
let mut prev_lines_offset = 0; let mut prev_lines_offset = 0;
let mut offset_y = px(0.); let mut offset_y = px(0.);
for (line_ix, line) in lines.iter().enumerate() {
for (ix, wrap_line) in text_wrapper.lines.iter().enumerate() {
let row = ix;
let line_origin = point(px(0.), offset_y);
// break loop if all cursor positions are found // break loop if all cursor positions are found
if cursor_pos.is_some() && cursor_start.is_some() && cursor_end.is_some() { if cursor_pos.is_some() && cursor_start.is_some() && cursor_end.is_some() {
break; break;
} }
let in_visible_range = ix >= visible_range.start; let line_origin = point(px(0.), offset_y);
if let Some(line) = in_visible_range if cursor_pos.is_none() {
.then(|| lines.get(ix.saturating_sub(visible_range.start))) let offset = cursor_offset.saturating_sub(prev_lines_offset);
.flatten() if let Some(pos) = line.position_for_index(offset, line_height) {
{ current_line_index = Some(line_ix);
// If in visible range lines cursor_pos = Some(line_origin + pos);
if cursor_pos.is_none() {
let offset = cursor.saturating_sub(prev_lines_offset);
if let Some(pos) = line.position_for_index(offset, line_height) {
current_row = Some(row);
cursor_pos = Some(line_origin + pos);
}
} }
if cursor_start.is_none() {
let offset = selected_range.start.saturating_sub(prev_lines_offset);
if let Some(pos) = line.position_for_index(offset, line_height) {
cursor_start = Some(line_origin + pos);
}
}
if cursor_end.is_none() {
let offset = selected_range.end.saturating_sub(prev_lines_offset);
if let Some(pos) = line.position_for_index(offset, line_height) {
cursor_end = Some(line_origin + pos);
}
}
offset_y += line.size(line_height).height;
// +1 for the last `\n`
prev_lines_offset += line.len() + 1;
} else {
// If not in the visible range.
// Just increase the offset_y and prev_lines_offset.
// This will let the scroll_offset to track the cursor position correctly.
if prev_lines_offset >= cursor && cursor_pos.is_none() {
current_row = Some(row);
cursor_pos = Some(line_origin);
}
if prev_lines_offset >= selected_range.start && cursor_start.is_none() {
cursor_start = Some(line_origin);
}
if prev_lines_offset >= selected_range.end && cursor_end.is_none() {
cursor_end = Some(line_origin);
}
offset_y += wrap_line.height(line_height);
// +1 for the last `\n`
prev_lines_offset += wrap_line.len() + 1;
} }
if cursor_start.is_none() {
let offset = selected_range.start.saturating_sub(prev_lines_offset);
if let Some(pos) = line.position_for_index(offset, line_height) {
cursor_start = Some(line_origin + pos);
}
}
if cursor_end.is_none() {
let offset = selected_range.end.saturating_sub(prev_lines_offset);
if let Some(pos) = line.position_for_index(offset, line_height) {
cursor_end = Some(line_origin + pos);
}
}
offset_y += line.size(line_height).height;
// +1 for skip the last `\n`
prev_lines_offset += line.len() + 1;
} }
if let (Some(cursor_pos), Some(cursor_start), Some(cursor_end)) = if let (Some(cursor_pos), Some(cursor_start), Some(cursor_end)) =
(cursor_pos, cursor_start, cursor_end) (cursor_pos, cursor_start, cursor_end)
{ {
let selection_changed = state.last_selected_range != Some(selected_range); let cursor_moved = input.last_cursor_offset != Some(cursor_offset);
if selection_changed { let selection_changed = input.last_selected_range != Some(selected_range.clone());
scroll_offset.x = if scroll_offset.x + cursor_pos.x
> (bounds.size.width - line_number_width - RIGHT_MARGIN) if cursor_moved || selection_changed {
scroll_offset.x =
if scroll_offset.x + cursor_pos.x > (bounds.size.width - RIGHT_MARGIN) {
// cursor is out of right
bounds.size.width - RIGHT_MARGIN - cursor_pos.x
} else if scroll_offset.x + cursor_pos.x < px(0.) {
// cursor is out of left
scroll_offset.x - cursor_pos.x
} else {
scroll_offset.x
};
scroll_offset.y = if scroll_offset.y + cursor_pos.y + line_height
> bounds.size.height - bottom_margin
{ {
// cursor is out of right // cursor is out of bottom
bounds.size.width - line_number_width - RIGHT_MARGIN - cursor_pos.x bounds.size.height - bottom_margin - cursor_pos.y
} else if scroll_offset.x + cursor_pos.x < px(0.) { } else if scroll_offset.y + cursor_pos.y < px(0.) {
// cursor is out of left // cursor is out of top
scroll_offset.x - cursor_pos.x scroll_offset.y - cursor_pos.y
} else { } else {
scroll_offset.x scroll_offset.y
}; };
// If we change the scroll_offset.y, GPUI will render and trigger the next run loop. if input.selection_reversed {
// So, here we just adjust offset by `line_height` for move smooth.
scroll_offset.y =
if scroll_offset.y + cursor_pos.y > bounds.size.height - top_bottom_margin {
// cursor is out of bottom
scroll_offset.y - line_height
} else if scroll_offset.y + cursor_pos.y < top_bottom_margin {
// cursor is out of top
(scroll_offset.y + line_height).min(px(0.))
} else {
scroll_offset.y
};
if state.selection_reversed {
if scroll_offset.x + cursor_start.x < px(0.) { if scroll_offset.x + cursor_start.x < px(0.) {
// selection start is out of left // selection start is out of left
scroll_offset.x = -cursor_start.x; scroll_offset.x = -cursor_start.x;
@@ -214,55 +168,54 @@ impl TextElement {
} }
} }
// cursor bounds if input.show_cursor(window, cx) {
let cursor_height = line_height; // cursor blink
cursor_bounds = Some(Bounds::new( let cursor_height = line_height;
point( cursor_bounds = Some(Bounds::new(
bounds.left() + cursor_pos.x + line_number_width + scroll_offset.x, point(
bounds.top() + cursor_pos.y + ((line_height - cursor_height) / 2.), bounds.left() + cursor_pos.x + line_number_width + scroll_offset.x,
), bounds.top() + cursor_pos.y + ((line_height - cursor_height) / 2.),
size(CURSOR_WIDTH, cursor_height), ),
)); size(CURSOR_THICKNESS, cursor_height),
} ));
};
if let Some(deferred_scroll_offset) = state.deferred_scroll_offset {
scroll_offset = deferred_scroll_offset;
} }
bounds.origin += scroll_offset; bounds.origin += scroll_offset;
(cursor_bounds, scroll_offset, current_row) (cursor_bounds, scroll_offset, current_line_index)
} }
/// Layout the match range to a Path. fn layout_selections(
pub(crate) fn layout_match_range( &self,
range: Range<usize>, lines: &[WrappedLine],
last_layout: &LastLayout, line_height: Pixels,
bounds: &mut Bounds<Pixels>, bounds: &mut Bounds<Pixels>,
line_number_width: Pixels,
_: &mut Window,
cx: &mut App,
) -> Option<Path<Pixels>> { ) -> Option<Path<Pixels>> {
if range.is_empty() { let input = self.input.read(cx);
let mut selected_range = input.selected_range.clone();
if let Some(marked_range) = &input.marked_range {
if !marked_range.is_empty() {
selected_range = marked_range.end..marked_range.end;
}
}
if selected_range.is_empty() {
return None; return None;
} }
if range.start < last_layout.visible_range_offset.start let (start_ix, end_ix) = if selected_range.start < selected_range.end {
|| range.end > last_layout.visible_range_offset.end (selected_range.start, selected_range.end)
{ } else {
return None; (selected_range.end, selected_range.start)
} };
let line_height = last_layout.line_height; let mut prev_lines_offset = 0;
let visible_top = last_layout.visible_top;
let visible_start_offset = last_layout.visible_range_offset.start;
let lines = &last_layout.lines;
let line_number_width = last_layout.line_number_width;
let start_ix = range.start;
let end_ix = range.end;
let mut prev_lines_offset = visible_start_offset;
let mut offset_y = visible_top;
let mut line_corners = vec![]; let mut line_corners = vec![];
let mut offset_y = px(0.);
for line in lines.iter() { for line in lines.iter() {
let line_size = line.size(line_height); let line_size = line.size(line_height);
let line_wrap_width = line_size.width; let line_wrap_width = line_size.width;
@@ -286,6 +239,7 @@ impl TextElement {
(end.y / line_height).ceil() as usize - (start.y / line_height).ceil() as usize; (end.y / line_height).ceil() as usize - (start.y / line_height).ceil() as usize;
let mut end_x = end.x; let mut end_x = end.x;
if wrapped_lines > 0 { if wrapped_lines > 0 {
end_x = line_wrap_width; end_x = line_wrap_width;
} }
@@ -368,79 +322,39 @@ impl TextElement {
builder.build().ok() builder.build().ok()
} }
fn layout_selections(
&self,
last_layout: &LastLayout,
bounds: &mut Bounds<Pixels>,
cx: &mut App,
) -> Option<Path<Pixels>> {
let state = self.state.read(cx);
let mut selected_range = state.selected_range;
if let Some(ime_marked_range) = &state.ime_marked_range {
if !ime_marked_range.is_empty() {
selected_range = (ime_marked_range.end..ime_marked_range.end).into();
}
}
if selected_range.is_empty() {
return None;
}
let (start_ix, end_ix) = if selected_range.start < selected_range.end {
(selected_range.start, selected_range.end)
} else {
(selected_range.end, selected_range.start)
};
let range = start_ix.max(last_layout.visible_range_offset.start)
..end_ix.min(last_layout.visible_range_offset.end);
Self::layout_match_range(range, last_layout, bounds)
}
/// Calculate the visible range of lines in the viewport. /// Calculate the visible range of lines in the viewport.
/// ///
/// Returns /// The visible range is based on unwrapped lines (Zero based).
///
/// - visible_range: The visible range is based on unwrapped lines (Zero based).
/// - visible_top: The top position of the first visible line in the scroll viewport.
fn calculate_visible_range( fn calculate_visible_range(
&self, &self,
state: &InputState, state: &InputState,
line_height: Pixels, line_height: Pixels,
input_height: Pixels, input_height: Pixels,
) -> (Range<usize>, Pixels) { ) -> Range<usize> {
// Add extra rows to avoid showing empty space when scroll to bottom. if state.is_single_line() {
let extra_rows = 1; return 0..1;
let mut visible_top = px(0.);
if state.mode.is_single_line() {
return (0..1, visible_top);
} }
let total_lines = state.text_wrapper.len(); let scroll_top = -state.scroll_handle.offset().y;
let scroll_top = if let Some(deferred_scroll_offset) = state.deferred_scroll_offset { let total_lines = state.text_wrapper.lines.len();
deferred_scroll_offset.y
} else {
state.scroll_handle.offset().y
};
let mut visible_range = 0..total_lines; let mut visible_range = 0..total_lines;
let mut line_bottom = px(0.); let mut line_top = px(0.);
for (ix, line) in state.text_wrapper.lines.iter().enumerate() {
let wrapped_height = line.height(line_height);
line_bottom += wrapped_height;
if line_bottom < -scroll_top { for (ix, line) in state.text_wrapper.lines.iter().enumerate() {
visible_top = line_bottom - wrapped_height; line_top += line.height(line_height);
if line_top < scroll_top {
visible_range.start = ix; visible_range.start = ix;
} }
if line_bottom + scroll_top >= input_height { if line_top > scroll_top + input_height {
visible_range.end = (ix + extra_rows).min(total_lines); visible_range.end = (ix + 1).min(total_lines);
break; break;
} }
} }
(visible_range, visible_top) visible_range
} }
} }
@@ -448,17 +362,13 @@ pub(super) struct PrepaintState {
/// The lines of entire lines. /// The lines of entire lines.
last_layout: LastLayout, last_layout: LastLayout,
/// The lines only contains the visible lines in the viewport, based on `visible_range`. /// The lines only contains the visible lines in the viewport, based on `visible_range`.
/// line_numbers: Option<Vec<SmallVec<[WrappedLine; 1]>>>,
/// The child is the soft lines. line_number_width: Pixels,
line_numbers: Option<Vec<SmallVec<[ShapedLine; 1]>>>,
/// Size of the scrollable area by entire lines. /// Size of the scrollable area by entire lines.
scroll_size: Size<Pixels>, scroll_size: Size<Pixels>,
cursor_bounds: Option<Bounds<Pixels>>, cursor_bounds: Option<Bounds<Pixels>>,
cursor_scroll_offset: Point<Pixels>, cursor_scroll_offset: Point<Pixels>,
selection_path: Option<Path<Pixels>>, selection_path: Option<Path<Pixels>>,
hover_highlight_path: Option<Path<Pixels>>,
search_match_paths: Vec<(Path<Pixels>, bool)>,
hover_definition_hitbox: Option<Hitbox>,
bounds: Bounds<Pixels>, bounds: Bounds<Pixels>,
} }
@@ -470,9 +380,34 @@ impl IntoElement for TextElement {
} }
} }
/// A debug function to print points as SVG path.
#[allow(unused)]
fn print_points_as_svg_path(line_corners: &Vec<Corners<Point<Pixels>>>, points: &[Point<Pixels>]) {
for corners in line_corners {
println!(
"tl: ({}, {}), tr: ({}, {}), bl: ({}, {}), br: ({}, {})",
corners.top_left.x.0 as i32,
corners.top_left.y.0 as i32,
corners.top_right.x.0 as i32,
corners.top_right.y.0 as i32,
corners.bottom_left.x.0 as i32,
corners.bottom_left.y.0 as i32,
corners.bottom_right.x.0 as i32,
corners.bottom_right.y.0 as i32,
);
}
if !points.is_empty() {
println!("M{},{}", points[0].x.0 as i32, points[0].y.0 as i32);
for p in points.iter().skip(1) {
println!("L{},{}", p.x.0 as i32, p.y.0 as i32);
}
}
}
impl Element for TextElement { impl Element for TextElement {
type PrepaintState = PrepaintState;
type RequestLayoutState = (); type RequestLayoutState = ();
type PrepaintState = PrepaintState;
fn id(&self) -> Option<ElementId> { fn id(&self) -> Option<ElementId> {
None None
@@ -489,20 +424,19 @@ impl Element for TextElement {
window: &mut Window, window: &mut Window,
cx: &mut App, cx: &mut App,
) -> (LayoutId, Self::RequestLayoutState) { ) -> (LayoutId, Self::RequestLayoutState) {
let state = self.state.read(cx); let input = self.input.read(cx);
let line_height = window.line_height(); let line_height = window.line_height();
let mut style = Style::default(); let mut style = Style::default();
style.size.width = relative(1.).into(); style.size.width = relative(1.).into();
if state.mode.is_multi_line() { if self.input.read(cx).is_multi_line() {
style.flex_grow = 1.0; style.flex_grow = 1.0;
style.size.height = relative(1.).into(); if let Some(h) = input.mode.height() {
if state.mode.is_auto_grow() { style.size.height = h.into();
// Auto grow to let height match to rows, but not exceed max rows.
let rows = state.mode.max_rows().min(state.mode.rows());
style.min_size.height = (rows * line_height).into();
} else {
style.min_size.height = line_height.into(); style.min_size.height = line_height.into();
} else {
style.size.height = relative(1.).into();
style.min_size.height = (input.mode.rows() * line_height).into();
} }
} else { } else {
// For single-line inputs, the minimum height should be the line height // For single-line inputs, the minimum height should be the line height
@@ -521,19 +455,11 @@ impl Element for TextElement {
window: &mut Window, window: &mut Window,
cx: &mut App, cx: &mut App,
) -> Self::PrepaintState { ) -> Self::PrepaintState {
let state = self.state.read(cx);
let line_height = window.line_height(); let line_height = window.line_height();
let input = self.input.read(cx);
let (visible_range, visible_top) = let multi_line = input.is_multi_line();
self.calculate_visible_range(state, line_height, bounds.size.height); let visible_range = self.calculate_visible_range(input, line_height, bounds.size.height);
let visible_start_offset = state.text.line_start_offset(visible_range.start); let text = input.text.clone();
let visible_end_offset = state
.text
.line_end_offset(visible_range.end.saturating_sub(1));
let state = self.state.read(cx);
let multi_line = state.mode.is_multi_line();
let text = state.text.clone();
let is_empty = text.is_empty(); let is_empty = text.is_empty();
let placeholder = self.placeholder.clone(); let placeholder = self.placeholder.clone();
let style = window.text_style(); let style = window.text_style();
@@ -541,9 +467,9 @@ impl Element for TextElement {
let mut bounds = bounds; let mut bounds = bounds;
let (display_text, text_color) = if is_empty { let (display_text, text_color) = if is_empty {
(Rope::from(placeholder.as_str()), cx.theme().text_muted) (placeholder, cx.theme().text_muted)
} else if state.masked { } else if input.masked {
(Rope::from("*".repeat(text.chars_count())), cx.theme().text) ("*".repeat(text.chars().count()).into(), cx.theme().text)
} else { } else {
(text.clone(), cx.theme().text) (text.clone(), cx.theme().text)
}; };
@@ -574,20 +500,20 @@ impl Element for TextElement {
let runs = if !is_empty { let runs = if !is_empty {
vec![run] vec![run]
} else if let Some(ime_marked_range) = &state.ime_marked_range { } else if let Some(marked_range) = &input.marked_range {
// IME marked text // IME marked text
vec![ vec![
TextRun { TextRun {
len: ime_marked_range.start, len: marked_range.start,
..run.clone() ..run.clone()
}, },
TextRun { TextRun {
len: ime_marked_range.end - ime_marked_range.start, len: marked_range.end - marked_range.start,
underline: marked_run.underline, underline: marked_run.underline,
..run.clone() ..run.clone()
}, },
TextRun { TextRun {
len: display_text.len() - ime_marked_range.end, len: display_text.len() - marked_range.end,
..run.clone() ..run.clone()
}, },
] ]
@@ -598,76 +524,35 @@ impl Element for TextElement {
vec![run] vec![run]
}; };
let wrap_width = if multi_line && state.soft_wrap { let wrap_width = if multi_line {
Some(bounds.size.width - line_number_width - RIGHT_MARGIN) Some(bounds.size.width - line_number_width - RIGHT_MARGIN)
} else { } else {
None None
}; };
// NOTE: Here 50 lines about 150µs
// let measure = crate::Measure::new("shape_text");
let visible_text = display_text
.slice_rows(visible_range.start as u32..visible_range.end as u32)
.to_string();
let lines = window let lines = window
.text_system() .text_system()
.shape_text(visible_text.into(), font_size, &runs, wrap_width, None) .shape_text(display_text, font_size, &runs, wrap_width, None)
.expect("failed to shape text"); .expect("failed to shape text");
// measure.end();
let mut longest_line_width = wrap_width.unwrap_or(px(0.)); let total_wrapped_lines = lines
if state.mode.is_multi_line() && !state.soft_wrap && lines.len() > 1 { .iter()
let longtest_line: SharedString = state .map(|line| {
.text // +1 is the first line, `wrap_boundaries` is the wrapped lines after the `\n`.
.line(state.text.summary().longest_row as usize) 1 + line.wrap_boundaries.len()
.to_string() })
.into(); .sum::<usize>();
longest_line_width = window
.text_system()
.shape_line(
longtest_line.clone(),
font_size,
&[TextRun {
len: longtest_line.len(),
font: style.font(),
color: gpui::black(),
background_color: None,
underline: None,
strikethrough: None,
}],
wrap_width,
)
.width;
}
let total_wrapped_lines = state.text_wrapper.len(); let max_line_width = lines
let empty_bottom_height = bounds .iter()
.size .map(|line| line.width())
.height .max()
.half() .unwrap_or(bounds.size.width);
.max(BOTTOM_MARGIN_ROWS * line_height);
let scroll_size = size( let scroll_size = size(
if longest_line_width + line_number_width + RIGHT_MARGIN > bounds.size.width { max_line_width + line_number_width + RIGHT_MARGIN,
longest_line_width + line_number_width + RIGHT_MARGIN (total_wrapped_lines as f32 * line_height).max(bounds.size.height),
} else {
longest_line_width
},
(total_wrapped_lines as f32 * line_height + empty_bottom_height)
.max(bounds.size.height),
); );
let mut last_layout = LastLayout {
visible_range,
visible_top,
visible_range_offset: visible_start_offset..visible_end_offset,
line_height,
wrap_width,
line_number_width,
lines: Rc::new(lines),
cursor_bounds: None,
};
// `position_for_index` for example // `position_for_index` for example
// //
// #### text // #### text
@@ -699,27 +584,37 @@ impl Element for TextElement {
// Calculate the scroll offset to keep the cursor in view // Calculate the scroll offset to keep the cursor in view
let (cursor_bounds, cursor_scroll_offset, _) = let (cursor_bounds, cursor_scroll_offset, _) = self.layout_cursor(
self.layout_cursor(&last_layout, &mut bounds, window, cx); &lines,
last_layout.cursor_bounds = cursor_bounds; line_height,
&mut bounds,
line_number_width,
window,
cx,
);
let selection_path = self.layout_selections(&last_layout, &mut bounds, cx); let selection_path = self.layout_selections(
let search_match_paths = vec![]; &lines,
let hover_highlight_path = None; line_height,
let line_numbers = None; &mut bounds,
let hover_definition_hitbox = None; line_number_width,
window,
cx,
);
PrepaintState { PrepaintState {
bounds, bounds,
last_layout, last_layout: LastLayout {
lines: Rc::new(lines),
line_height,
visible_range,
},
scroll_size, scroll_size,
line_numbers, line_numbers: None,
line_number_width,
cursor_bounds, cursor_bounds,
cursor_scroll_offset, cursor_scroll_offset,
selection_path, selection_path,
search_match_paths,
hover_highlight_path,
hover_definition_hitbox,
} }
} }
@@ -733,21 +628,21 @@ impl Element for TextElement {
window: &mut Window, window: &mut Window,
cx: &mut App, cx: &mut App,
) { ) {
let focus_handle = self.state.read(cx).focus_handle.clone(); let focus_handle = self.input.read(cx).focus_handle.clone();
let show_cursor = self.state.read(cx).show_cursor(window, cx);
let focused = focus_handle.is_focused(window); let focused = focus_handle.is_focused(window);
let bounds = prepaint.bounds; let bounds = prepaint.bounds;
let selected_range = self.state.read(cx).selected_range; let selected_range = self.input.read(cx).selected_range.clone();
let visible_range = &prepaint.last_layout.visible_range;
window.handle_input( window.handle_input(
&focus_handle, &focus_handle,
ElementInputHandler::new(bounds, self.state.clone()), ElementInputHandler::new(bounds, self.input.clone()),
cx, cx,
); );
// Set Root focused_input when self is focused // Set Root focused_input when self is focused
if focused { if focused {
let state = self.state.clone(); let state = self.input.clone();
if Root::read(window, cx).focused_input.as_ref() != Some(&state) { if Root::read(window, cx).focused_input.as_ref() != Some(&state) {
Root::update(window, cx, |root, _, cx| { Root::update(window, cx, |root, _, cx| {
root.focused_input = Some(state); root.focused_input = Some(state);
@@ -758,7 +653,7 @@ impl Element for TextElement {
// And reset focused_input when next_frame start // And reset focused_input when next_frame start
window.on_next_frame({ window.on_next_frame({
let state = self.state.clone(); let state = self.input.clone();
move |window, cx| { move |window, cx| {
if !focused && Root::read(window, cx).focused_input.as_ref() == Some(&state) { if !focused && Root::read(window, cx).focused_input.as_ref() == Some(&state) {
Root::update(window, cx, |root, _, cx| { Root::update(window, cx, |root, _, cx| {
@@ -773,10 +668,13 @@ impl Element for TextElement {
let line_height = window.line_height(); let line_height = window.line_height();
let origin = bounds.origin; let origin = bounds.origin;
let invisible_top_padding = prepaint.last_layout.visible_top; let mut invisible_top_padding = px(0.);
for line in prepaint.last_layout.lines.iter().take(visible_range.start) {
invisible_top_padding += line.size(line_height).height;
}
let mut mask_offset_y = px(0.); let mut mask_offset_y = px(0.);
if self.state.read(cx).masked { if self.input.read(cx).masked {
// Move down offset for vertical centering the ***** // Move down offset for vertical centering the *****
if cfg!(target_os = "macos") { if cfg!(target_os = "macos") {
mask_offset_y = px(3.); mask_offset_y = px(3.);
@@ -785,105 +683,60 @@ impl Element for TextElement {
} }
} }
// Paint active line
let mut offset_y = px(0.); let mut offset_y = px(0.);
if let Some(line_numbers) = prepaint.line_numbers.as_ref() { if let Some(line_numbers) = prepaint.line_numbers.as_ref() {
offset_y += invisible_top_padding; offset_y += invisible_top_padding;
// Each item is the normal lines. // Each item is the normal lines.
for lines in line_numbers.iter() { for lines in line_numbers.iter() {
let height = line_height * lines.len() as f32; for line in lines {
offset_y += height; let p = point(origin.x, origin.y + offset_y);
let line_size = line.size(line_height);
_ = line.paint(p, line_height, TextAlign::Left, None, window, cx);
offset_y += line_size.height;
}
} }
} }
// Paint selections // Paint selections
if window.is_window_active() { if let Some(path) = prepaint.selection_path.take() {
let secondary_selection = cx.theme().selection; window.paint_path(path, cx.theme().selection);
for (path, is_active) in prepaint.search_match_paths.iter() {
window.paint_path(path.clone(), secondary_selection);
if *is_active {
window.paint_path(path.clone(), cx.theme().selection);
}
}
if let Some(path) = prepaint.selection_path.take() {
window.paint_path(path, cx.theme().selection);
}
// Paint hover highlight
if let Some(path) = prepaint.hover_highlight_path.take() {
window.paint_path(path, secondary_selection);
}
} }
// Paint text // Paint text
let mut offset_y = mask_offset_y + invisible_top_padding; let mut offset_y = mask_offset_y + invisible_top_padding;
for line in prepaint.last_layout.lines.iter() { for line in prepaint
let p = point( .last_layout
origin.x + prepaint.last_layout.line_number_width, .iter()
origin.y + offset_y, .skip(visible_range.start)
); .take(visible_range.len())
{
let p = point(origin.x + prepaint.line_number_width, origin.y + offset_y);
_ = line.paint(p, line_height, TextAlign::Left, None, window, cx); _ = line.paint(p, line_height, TextAlign::Left, None, window, cx);
offset_y += line.size(line_height).height; offset_y += line.size(line_height).height;
} }
// Paint blinking cursor if focused {
if focused && show_cursor {
if let Some(mut cursor_bounds) = prepaint.cursor_bounds.take() { if let Some(mut cursor_bounds) = prepaint.cursor_bounds.take() {
cursor_bounds.origin.y += prepaint.cursor_scroll_offset.y; cursor_bounds.origin.y += prepaint.cursor_scroll_offset.y;
window.paint_quad(fill(cursor_bounds, cx.theme().cursor)); window.paint_quad(fill(cursor_bounds, cx.theme().cursor));
} }
} }
// Paint line numbers self.input.update(cx, |input, cx| {
let mut offset_y = px(0.); input.last_layout = Some(prepaint.last_layout.clone());
if let Some(line_numbers) = prepaint.line_numbers.as_ref() { input.last_bounds = Some(bounds);
offset_y += invisible_top_padding; input.last_cursor_offset = Some(input.cursor_offset());
input.set_input_bounds(input_bounds, cx);
// Paint line number background input.last_selected_range = Some(selected_range);
window.paint_quad(fill( input.scroll_size = prepaint.scroll_size;
Bounds { input.line_number_width = prepaint.line_number_width;
origin: input_bounds.origin, input
size: size(
prepaint.last_layout.line_number_width - LINE_NUMBER_RIGHT_MARGIN,
input_bounds.size.height,
),
},
cx.theme().background,
));
// Each item is the normal lines.
for lines in line_numbers.iter() {
let p = point(input_bounds.origin.x, origin.y + offset_y);
for line in lines {
_ = line.paint(p, line_height, window, cx);
offset_y += line_height;
}
}
}
self.state.update(cx, |state, cx| {
state.last_layout = Some(prepaint.last_layout.clone());
state.last_bounds = Some(bounds);
state.last_cursor = Some(state.cursor());
state.set_input_bounds(input_bounds, cx);
state.last_selected_range = Some(selected_range);
state.scroll_size = prepaint.scroll_size;
state
.scroll_handle .scroll_handle
.set_offset(prepaint.cursor_scroll_offset); .set_offset(prepaint.cursor_scroll_offset);
state.deferred_scroll_offset = None;
cx.notify(); cx.notify();
}); });
if let Some(hitbox) = prepaint.hover_definition_hitbox.as_ref() {
window.set_cursor_style(gpui::CursorStyle::PointingHand, hitbox);
}
self.paint_mouse_listeners(window, cx); self.paint_mouse_listeners(window, cx);
} }
} }
+5 -37
View File
@@ -2,8 +2,6 @@ use gpui::SharedString;
#[derive(Clone, PartialEq, Debug)] #[derive(Clone, PartialEq, Debug)]
pub enum MaskToken { pub enum MaskToken {
/// 0 Digit, equivalent to `[0]`
// Digit0,
/// Digit, equivalent to `[0-9]` /// Digit, equivalent to `[0-9]`
Digit, Digit,
/// Letter, equivalent to `[a-zA-Z]` /// Letter, equivalent to `[a-zA-Z]`
@@ -202,25 +200,11 @@ impl MaskPattern {
return false; return false;
} }
let sign_positions: Vec<usize> = int_part
.chars()
.enumerate()
.filter_map(|(i, ch)| match is_sign(&ch) {
true => Some(i),
false => None,
})
.collect();
// only one sign is valid
// sign is only valid at the beginning of the string
if sign_positions.len() > 1 || sign_positions.first() > Some(&0) {
return false;
}
// check if the integer part is valid // check if the integer part is valid
if !int_part.chars().enumerate().all(|(i, ch)| { if !int_part
ch.is_ascii_digit() || is_sign(&ch) && i == 0 || Some(ch) == *separator .chars()
}) { .all(|ch| ch.is_ascii_digit() || Some(ch) == *separator)
{
return false; return false;
} }
@@ -302,11 +286,7 @@ impl MaskPattern {
}); });
// Reverse the integer part for easier grouping // Reverse the integer part for easier grouping
let mut chars: Vec<char> = int_part.chars().rev().collect(); let chars: Vec<char> = int_part.chars().rev().collect();
// Removing the sign from formatting to avoid cases such as: -,123
let maybe_signed = chars.iter().position(is_sign).map(|pos| chars.remove(pos));
let mut result = String::new(); let mut result = String::new();
for (i, ch) in chars.iter().enumerate() { for (i, ch) in chars.iter().enumerate() {
if i > 0 && i % 3 == 0 { if i > 0 && i % 3 == 0 {
@@ -325,13 +305,6 @@ impl MaskPattern {
} else { } else {
int_with_sep int_with_sep
}; };
let final_str = if let Some(sign) = maybe_signed {
format!("{sign}{final_str}")
} else {
final_str
};
return final_str.into(); return final_str.into();
} }
@@ -403,8 +376,3 @@ impl MaskPattern {
} }
} }
} }
#[inline]
fn is_sign(ch: &char) -> bool {
matches!(ch, '+' | '-')
}
+1 -3
View File
@@ -1,15 +1,13 @@
mod blink_cursor; mod blink_cursor;
mod change; mod change;
mod cursor;
mod element; mod element;
mod mask_pattern; mod mask_pattern;
mod mode;
mod rope_ext;
mod state; mod state;
mod text_input; mod text_input;
mod text_wrapper; mod text_wrapper;
pub(crate) mod clear_button; pub(crate) mod clear_button;
#[allow(ambiguous_glob_reexports)]
pub use state::*; pub use state::*;
pub use text_input::*; pub use text_input::*;
-129
View File
@@ -1,129 +0,0 @@
use gpui::SharedString;
use super::text_wrapper::TextWrapper;
#[derive(Debug, Copy, Clone)]
pub struct TabSize {
/// Default is 2
pub tab_size: usize,
/// Set true to use `\t` as tab indent, default is false
pub hard_tabs: bool,
}
impl Default for TabSize {
fn default() -> Self {
Self {
tab_size: 2,
hard_tabs: false,
}
}
}
impl TabSize {
pub(super) fn to_string(self) -> SharedString {
if self.hard_tabs {
"\t".into()
} else {
" ".repeat(self.tab_size).into()
}
}
}
#[derive(Default, Clone)]
pub enum InputMode {
#[default]
SingleLine,
MultiLine {
tab: TabSize,
rows: usize,
},
AutoGrow {
rows: usize,
min_rows: usize,
max_rows: usize,
},
}
#[allow(unused)]
impl InputMode {
#[inline]
pub(super) fn is_single_line(&self) -> bool {
matches!(self, InputMode::SingleLine)
}
#[inline]
pub(super) fn is_auto_grow(&self) -> bool {
matches!(self, InputMode::AutoGrow { .. })
}
#[inline]
pub(super) fn is_multi_line(&self) -> bool {
matches!(
self,
InputMode::MultiLine { .. } | InputMode::AutoGrow { .. }
)
}
pub(super) fn set_rows(&mut self, new_rows: usize) {
match self {
InputMode::MultiLine { rows, .. } => {
*rows = new_rows;
}
InputMode::AutoGrow {
rows,
min_rows,
max_rows,
} => {
*rows = new_rows.clamp(*min_rows, *max_rows);
}
_ => {}
}
}
pub(super) fn update_auto_grow(&mut self, text_wrapper: &TextWrapper) {
if self.is_single_line() {
return;
}
let wrapped_lines = text_wrapper.len();
self.set_rows(wrapped_lines);
}
/// At least 1 row be return.
pub(super) fn rows(&self) -> usize {
match self {
InputMode::MultiLine { rows, .. } => *rows,
InputMode::AutoGrow { rows, .. } => *rows,
_ => 1,
}
.max(1)
}
/// At least 1 row be return.
#[allow(unused)]
pub(super) fn min_rows(&self) -> usize {
match self {
InputMode::MultiLine { .. } => 1,
InputMode::AutoGrow { min_rows, .. } => *min_rows,
_ => 1,
}
.max(1)
}
#[allow(unused)]
pub(super) fn max_rows(&self) -> usize {
match self {
InputMode::MultiLine { .. } => usize::MAX,
InputMode::AutoGrow { max_rows, .. } => *max_rows,
_ => 1,
}
}
#[inline]
pub(super) fn tab_size(&self) -> Option<&TabSize> {
match self {
InputMode::MultiLine { tab, .. } => Some(tab),
_ => None,
}
}
}
-207
View File
@@ -1,207 +0,0 @@
use std::ops::Range;
use rope::{Point, Rope};
use super::cursor::Position;
/// An extension trait for `Rope` to provide additional utility methods.
pub trait RopeExt {
/// Get the line at the given row (0-based) index, including the `\r` at the end, but not `\n`.
///
/// Return empty rope if the row (0-based) is out of bounds.
fn line(&self, row: usize) -> Rope;
/// Start offset of the line at the given row (0-based) index.
fn line_start_offset(&self, row: usize) -> usize;
/// Line the end offset (including `\n`) of the line at the given row (0-based) index.
///
/// Return the end of the rope if the row is out of bounds.
fn line_end_offset(&self, row: usize) -> usize;
/// Return the number of lines in the rope.
fn lines_len(&self) -> usize;
/// Return the lines iterator.
///
/// Each line is including the `\r` at the end, but not `\n`.
fn lines(&self) -> RopeLines;
/// Check is equal to another rope.
fn eq(&self, other: &Rope) -> bool;
/// Total number of characters in the rope.
fn chars_count(&self) -> usize;
/// Get char at the given offset (byte).
///
/// If the offset is in the middle of a multi-byte character will panic.
///
/// If the offset is out of bounds, return None.
fn char_at(&self, offset: usize) -> Option<char>;
/// Get the byte offset from the given line, column [`Position`] (0-based).
fn position_to_offset(&self, line_col: &Position) -> usize;
/// Get the line, column [`Position`] (0-based) from the given byte offset.
fn offset_to_position(&self, offset: usize) -> Position;
/// Get the word byte range at the given offset (byte).
fn word_range(&self, offset: usize) -> Option<Range<usize>>;
/// Get word at the given offset (byte).
#[allow(dead_code)]
fn word_at(&self, offset: usize) -> String;
}
/// An iterator over the lines of a `Rope`.
pub struct RopeLines {
row: usize,
end_row: usize,
rope: Rope,
}
impl RopeLines {
/// Create a new `RopeLines` iterator.
pub fn new(rope: Rope) -> Self {
let end_row = rope.lines_len();
Self {
row: 0,
end_row,
rope,
}
}
}
impl Iterator for RopeLines {
type Item = Rope;
#[inline]
fn next(&mut self) -> Option<Self::Item> {
if self.row >= self.end_row {
return None;
}
let line = self.rope.line(self.row);
self.row += 1;
Some(line)
}
#[inline]
fn nth(&mut self, n: usize) -> Option<Self::Item> {
self.row = self.row.saturating_add(n);
self.next()
}
#[inline]
fn size_hint(&self) -> (usize, Option<usize>) {
let len = self.end_row - self.row;
(len, Some(len))
}
}
impl std::iter::ExactSizeIterator for RopeLines {}
impl std::iter::FusedIterator for RopeLines {}
impl RopeExt for Rope {
fn line(&self, row: usize) -> Rope {
let start = self.line_start_offset(row);
let end = start + self.line_len(row as u32) as usize;
self.slice(start..end)
}
fn line_start_offset(&self, row: usize) -> usize {
let row = row as u32;
self.point_to_offset(Point::new(row, 0))
}
fn position_to_offset(&self, pos: &Position) -> usize {
let line = self.line(pos.line as usize);
self.line_start_offset(pos.line as usize)
+ line
.chars()
.take(pos.character as usize)
.map(|c| c.len_utf8())
.sum::<usize>()
}
fn offset_to_position(&self, offset: usize) -> Position {
let point = self.offset_to_point(offset);
let line = self.line(point.row as usize);
let column = line.clip_offset(point.column as usize, sum_tree::Bias::Left);
let character = line.slice(0..column).chars().count();
Position::new(point.row, character as u32)
}
fn line_end_offset(&self, row: usize) -> usize {
if row > self.max_point().row as usize {
return self.len();
}
self.line_start_offset(row) + self.line_len(row as u32) as usize
}
fn lines_len(&self) -> usize {
self.max_point().row as usize + 1
}
fn lines(&self) -> RopeLines {
RopeLines::new(self.clone())
}
fn eq(&self, other: &Rope) -> bool {
self.summary() == other.summary()
}
fn chars_count(&self) -> usize {
self.chars().count()
}
fn char_at(&self, offset: usize) -> Option<char> {
if offset > self.len() {
return None;
}
let offset = self.clip_offset(offset, sum_tree::Bias::Left);
self.slice(offset..self.len()).chars().next()
}
fn word_range(&self, offset: usize) -> Option<Range<usize>> {
if offset >= self.len() {
return None;
}
let offset = self.clip_offset(offset, sum_tree::Bias::Left);
let mut left = String::new();
for c in self.reversed_chars_at(offset) {
if c.is_alphanumeric() || c == '_' {
left.insert(0, c);
} else {
break;
}
}
let start = offset.saturating_sub(left.len());
let right = self
.chars_at(offset)
.take_while(|c| c.is_alphanumeric() || *c == '_')
.collect::<String>();
let end = offset + right.len();
if start == end {
None
} else {
Some(start..end)
}
}
fn word_at(&self, offset: usize) -> String {
if let Some(range) = self.word_range(offset) {
self.slice(range).to_string()
} else {
String::new()
}
}
}
File diff suppressed because it is too large Load Diff
+92 -96
View File
@@ -6,10 +6,11 @@ use gpui::{
}; };
use theme::ActiveTheme; use theme::ActiveTheme;
use super::clear_button::clear_button; use super::InputState;
use super::state::{InputState, CONTEXT}; use crate::button::{Button, ButtonVariants as _};
use crate::button::{Button, ButtonVariants};
use crate::indicator::Indicator; use crate::indicator::Indicator;
use crate::input::clear_button::clear_button;
use crate::scroll::{Scrollbar, ScrollbarAxis};
use crate::{h_flex, IconName, Sizable, Size, StyleSized, StyledExt}; use crate::{h_flex, IconName, Sizable, Size, StyleSized, StyledExt};
#[derive(IntoElement)] #[derive(IntoElement)]
@@ -17,6 +18,7 @@ pub struct TextInput {
state: Entity<InputState>, state: Entity<InputState>,
style: StyleRefinement, style: StyleRefinement,
size: Size, size: Size,
no_gap: bool,
prefix: Option<AnyElement>, prefix: Option<AnyElement>,
suffix: Option<AnyElement>, suffix: Option<AnyElement>,
height: Option<DefiniteLength>, height: Option<DefiniteLength>,
@@ -24,8 +26,6 @@ pub struct TextInput {
cleanable: bool, cleanable: bool,
mask_toggle: bool, mask_toggle: bool,
disabled: bool, disabled: bool,
bordered: bool,
focus_bordered: bool,
} }
impl Sizable for TextInput { impl Sizable for TextInput {
@@ -40,8 +40,9 @@ impl TextInput {
pub fn new(state: &Entity<InputState>) -> Self { pub fn new(state: &Entity<InputState>) -> Self {
Self { Self {
state: state.clone(), state: state.clone(),
size: Size::default(),
style: StyleRefinement::default(), style: StyleRefinement::default(),
size: Size::default(),
no_gap: false,
prefix: None, prefix: None,
suffix: None, suffix: None,
height: None, height: None,
@@ -49,8 +50,6 @@ impl TextInput {
cleanable: false, cleanable: false,
mask_toggle: false, mask_toggle: false,
disabled: false, disabled: false,
bordered: true,
focus_bordered: true,
} }
} }
@@ -76,24 +75,12 @@ impl TextInput {
self self
} }
/// Set the appearance of the input field, if false the input field will no border, background. /// Set the appearance of the input field.
pub fn appearance(mut self, appearance: bool) -> Self { pub fn appearance(mut self, appearance: bool) -> Self {
self.appearance = appearance; self.appearance = appearance;
self self
} }
/// Set the bordered for the input, default: true
pub fn bordered(mut self, bordered: bool) -> Self {
self.bordered = bordered;
self
}
/// Set focus border for the input, default is true.
pub fn focus_bordered(mut self, bordered: bool) -> Self {
self.focus_bordered = bordered;
self
}
/// Set true to show the clear button when the input field is not empty. /// Set true to show the clear button when the input field is not empty.
pub fn cleanable(mut self) -> Self { pub fn cleanable(mut self) -> Self {
self.cleanable = true; self.cleanable = true;
@@ -112,6 +99,15 @@ impl TextInput {
self self
} }
/// Set true to not use gap between input and prefix, suffix, and clear button.
///
/// Default: false
#[allow(dead_code)]
pub(super) fn no_gap(mut self) -> Self {
self.no_gap = true;
self
}
fn render_toggle_mask_button(state: Entity<InputState>) -> impl IntoElement { fn render_toggle_mask_button(state: Entity<InputState>) -> impl IntoElement {
Button::new("toggle-mask") Button::new("toggle-mask")
.icon(IconName::Eye) .icon(IconName::Eye)
@@ -136,51 +132,44 @@ impl TextInput {
} }
} }
impl Styled for TextInput {
fn style(&mut self) -> &mut StyleRefinement {
&mut self.style
}
}
impl RenderOnce for TextInput { impl RenderOnce for TextInput {
fn render(self, window: &mut Window, cx: &mut App) -> impl IntoElement { fn render(self, window: &mut Window, cx: &mut App) -> impl IntoElement {
const LINE_HEIGHT: Rems = Rems(1.25); const LINE_HEIGHT: Rems = Rems(1.25);
let font = window.text_style().font();
let font_size = window.text_style().font_size.to_pixels(window.rem_size());
self.state.update(cx, |state, cx| { self.state.update(cx, |state, _| {
state.text_wrapper.set_font(font, font_size, cx); state.mode.set_height(self.height);
state.disabled = self.disabled; state.disabled = self.disabled;
}); });
let state = self.state.read(cx); let state = self.state.read(cx);
let focused = state.focus_handle.is_focused(window);
let gap_x = match self.size { let mut gap_x = match self.size {
Size::Small => px(4.), Size::Small => px(4.),
Size::Large => px(8.), Size::Large => px(8.),
_ => px(4.), _ => px(4.),
}; };
if self.no_gap {
gap_x = px(0.);
}
let prefix = self.prefix;
let suffix = self.suffix;
let show_clear_button =
self.cleanable && !state.loading && !state.text.is_empty() && state.is_single_line();
let bg = if state.disabled { let bg = if state.disabled {
cx.theme().surface_background cx.theme().surface_background
} else { } else {
cx.theme().elevated_surface_background cx.theme().elevated_surface_background
}; };
let prefix = self.prefix;
let suffix = self.suffix;
let show_clear_button = self.cleanable
&& !state.loading
&& !state.text.is_empty()
&& state.mode.is_single_line();
let has_suffix = suffix.is_some() || state.loading || self.mask_toggle || show_clear_button;
div() div()
.id(("input", self.state.entity_id())) .id(("input", self.state.entity_id()))
.flex() .flex()
.key_context(CONTEXT) .key_context(crate::input::CONTEXT)
.track_focus(&state.focus_handle) .track_focus(&state.focus_handle)
.when(!state.disabled, |this| { .when(!state.disabled, |this| {
this.on_action(window.listener_for(&self.state, InputState::backspace)) this.on_action(window.listener_for(&self.state, InputState::backspace))
@@ -193,31 +182,17 @@ impl RenderOnce for TextInput {
.on_action(window.listener_for(&self.state, InputState::delete_next_word)) .on_action(window.listener_for(&self.state, InputState::delete_next_word))
.on_action(window.listener_for(&self.state, InputState::enter)) .on_action(window.listener_for(&self.state, InputState::enter))
.on_action(window.listener_for(&self.state, InputState::escape)) .on_action(window.listener_for(&self.state, InputState::escape))
.on_action(window.listener_for(&self.state, InputState::paste))
.on_action(window.listener_for(&self.state, InputState::cut))
.on_action(window.listener_for(&self.state, InputState::undo))
.on_action(window.listener_for(&self.state, InputState::redo))
.when(state.mode.is_multi_line(), |this| {
this.on_action(window.listener_for(&self.state, InputState::indent_inline))
.on_action(window.listener_for(&self.state, InputState::outdent_inline))
.on_action(window.listener_for(&self.state, InputState::indent_block))
.on_action(window.listener_for(&self.state, InputState::outdent_block))
.on_action(
window.listener_for(&self.state, InputState::shift_to_new_line),
)
})
}) })
.on_action(window.listener_for(&self.state, InputState::left)) .on_action(window.listener_for(&self.state, InputState::left))
.on_action(window.listener_for(&self.state, InputState::right)) .on_action(window.listener_for(&self.state, InputState::right))
.on_action(window.listener_for(&self.state, InputState::select_left)) .on_action(window.listener_for(&self.state, InputState::select_left))
.on_action(window.listener_for(&self.state, InputState::select_right)) .on_action(window.listener_for(&self.state, InputState::select_right))
.when(state.mode.is_multi_line(), |this| { .when(state.is_multi_line(), |this| {
this.on_action(window.listener_for(&self.state, InputState::up)) this.on_action(window.listener_for(&self.state, InputState::up))
.on_action(window.listener_for(&self.state, InputState::down)) .on_action(window.listener_for(&self.state, InputState::down))
.on_action(window.listener_for(&self.state, InputState::select_up)) .on_action(window.listener_for(&self.state, InputState::select_up))
.on_action(window.listener_for(&self.state, InputState::select_down)) .on_action(window.listener_for(&self.state, InputState::select_down))
.on_action(window.listener_for(&self.state, InputState::page_up)) .on_action(window.listener_for(&self.state, InputState::shift_to_new_line))
.on_action(window.listener_for(&self.state, InputState::page_down))
}) })
.on_action(window.listener_for(&self.state, InputState::select_all)) .on_action(window.listener_for(&self.state, InputState::select_all))
.on_action(window.listener_for(&self.state, InputState::select_to_start_of_line)) .on_action(window.listener_for(&self.state, InputState::select_to_start_of_line))
@@ -234,69 +209,90 @@ impl RenderOnce for TextInput {
.on_action(window.listener_for(&self.state, InputState::select_to_end)) .on_action(window.listener_for(&self.state, InputState::select_to_end))
.on_action(window.listener_for(&self.state, InputState::show_character_palette)) .on_action(window.listener_for(&self.state, InputState::show_character_palette))
.on_action(window.listener_for(&self.state, InputState::copy)) .on_action(window.listener_for(&self.state, InputState::copy))
.on_action(window.listener_for(&self.state, InputState::paste))
.on_action(window.listener_for(&self.state, InputState::cut))
.on_action(window.listener_for(&self.state, InputState::undo))
.on_action(window.listener_for(&self.state, InputState::redo))
.on_key_down(window.listener_for(&self.state, InputState::on_key_down)) .on_key_down(window.listener_for(&self.state, InputState::on_key_down))
.on_mouse_down( .on_mouse_down(
MouseButton::Left, MouseButton::Left,
window.listener_for(&self.state, InputState::on_mouse_down), window.listener_for(&self.state, InputState::on_mouse_down),
) )
.on_mouse_down( .on_mouse_down(
MouseButton::Right, MouseButton::Middle,
window.listener_for(&self.state, InputState::on_mouse_down), window.listener_for(&self.state, InputState::on_mouse_down),
) )
.on_mouse_up( .on_mouse_up(
MouseButton::Left, MouseButton::Left,
window.listener_for(&self.state, InputState::on_mouse_up), window.listener_for(&self.state, InputState::on_mouse_up),
) )
.on_mouse_up(
MouseButton::Right,
window.listener_for(&self.state, InputState::on_mouse_up),
)
.on_scroll_wheel(window.listener_for(&self.state, InputState::on_scroll_wheel)) .on_scroll_wheel(window.listener_for(&self.state, InputState::on_scroll_wheel))
.size_full() .size_full()
.line_height(LINE_HEIGHT) .line_height(LINE_HEIGHT)
.input_px(self.size) .cursor_text()
.input_py(self.size) .input_py(self.size)
.input_h(self.size) .input_h(self.size)
.cursor_text() .when(state.is_multi_line(), |this| {
.text_size(font_size)
.items_center()
.when(state.mode.is_multi_line(), |this| {
this.h_auto() this.h_auto()
.when_some(self.height, |this, height| this.h(height)) .when_some(self.height, |this, height| this.h(height))
}) })
.when(self.appearance, |this| { .when(self.appearance, |this| {
this.bg(bg).rounded(cx.theme().radius) this.bg(bg)
.rounded(cx.theme().radius)
.when(focused, |this| this.border_color(cx.theme().ring))
}) })
.when(prefix.is_none(), |this| this.input_pl(self.size))
.input_pr(self.size)
.items_center() .items_center()
.gap(gap_x) .gap(gap_x)
.refine_style(&self.style)
.children(prefix) .children(prefix)
// TODO: Define height here, and use it in the input element
.child(self.state.clone()) .child(self.state.clone())
.when(has_suffix, |this| { .child(
this.pr_2().child( h_flex()
h_flex() .id("suffix")
.id("suffix") .absolute()
.gap(gap_x) .gap(gap_x)
.when(self.appearance, |this| this.bg(bg)) .when(self.appearance, |this| this.bg(bg))
.items_center() .items_center()
.when(state.loading, |this| { .when(suffix.is_none(), |this| this.pr_1())
this.child(Indicator::new().color(cx.theme().text_muted)) .right_0()
}) .when(state.loading, |this| {
.when(self.mask_toggle, |this| { this.child(Indicator::new().color(cx.theme().text_muted))
this.child(Self::render_toggle_mask_button(self.state.clone())) })
}) .when(self.mask_toggle, |this| {
.when(show_clear_button, |this| { this.child(Self::render_toggle_mask_button(self.state.clone()))
this.child(clear_button(cx).on_click({ })
let state = self.state.clone(); .when(show_clear_button, |this| {
move |_, window, cx| { this.child(clear_button(cx).on_click({
state.update(cx, |state, cx| { let state = self.state.clone();
state.clean(window, cx); move |_, window, cx| {
}) state.update(cx, |state, cx| {
} state.clean(window, cx);
})) })
}) }
.children(suffix), }))
) })
.children(suffix),
)
.when(state.is_multi_line(), |this| {
if state.last_layout.is_some() {
this.relative().child(
div()
.absolute()
.top_0()
.left_0()
.right(px(1.))
.bottom_0()
.child(
Scrollbar::vertical(&state.scrollbar_state, &state.scroll_handle)
.axis(ScrollbarAxis::Vertical),
),
)
} else {
this
}
}) })
.refine_style(&self.style)
} }
} }
+53 -169
View File
@@ -1,215 +1,99 @@
use std::ops::Range; use std::ops::Range;
use gpui::{App, Font, LineFragment, Pixels}; use gpui::{App, Font, LineFragment, Pixels, SharedString};
use rope::Rope;
use super::rope_ext::RopeExt; #[allow(unused)]
pub(super) struct LineWrap {
/// A line with soft wrapped lines info. /// The number of soft wrapped lines of this line (Not include first line.)
#[derive(Clone)] pub(super) wrap_lines: usize,
pub(super) struct LineItem { /// The range of the line text in the entire text.
/// The original line text. pub(super) range: Range<usize>,
line: Rope,
/// The soft wrapped lines relative byte range (0..line.len) of this line (Include first line).
///
/// FIXME: Here in somecase, the `line_wrapper.wrap_line` has returned different
/// like the `window.text_system().shape_text`. So, this value may not equal
/// the actual rendered lines.
wrapped_lines: Vec<Range<usize>>,
} }
impl LineItem { impl LineWrap {
/// Get the bytes length of this line.
#[inline]
pub(super) fn len(&self) -> usize {
self.line.len()
}
/// Get number of soft wrapped lines of this line (include the first line).
#[inline]
pub(super) fn lines_len(&self) -> usize {
self.wrapped_lines.len()
}
/// Get the height of this line item with given line height.
pub(super) fn height(&self, line_height: Pixels) -> Pixels { pub(super) fn height(&self, line_height: Pixels) -> Pixels {
self.lines_len() as f32 * line_height line_height * (self.wrap_lines + 1)
} }
} }
/// Used to prepare the text with soft wrap to be get lines to displayed in the Editor. /// Used to prepare the text with soft_wrap to be get lines to displayed in the TextArea
/// ///
/// After use lines to calculate the scroll size of the Editor. /// After use lines to calculate the scroll size of the TextArea
pub(super) struct TextWrapper { pub(super) struct TextWrapper {
text: Rope, pub(super) text: SharedString,
/// Total wrapped lines (Inlucde the first line), value is start and end index of the line. /// The wrapped lines, value is start and end index of the line (by split \n).
soft_lines: usize, pub(super) wrapped_lines: Vec<Range<usize>>,
font: Font,
font_size: Pixels,
/// If is none, it means the text is not wrapped
wrap_width: Option<Pixels>,
/// The lines by split \n /// The lines by split \n
pub(super) lines: Vec<LineItem>, pub(super) lines: Vec<LineWrap>,
pub(super) font: Font,
pub(super) font_size: Pixels,
/// If is none, it means the text is not wrapped
pub(super) wrap_width: Option<Pixels>,
} }
#[allow(unused)] #[allow(unused)]
impl TextWrapper { impl TextWrapper {
pub(super) fn new(font: Font, font_size: Pixels, wrap_width: Option<Pixels>) -> Self { pub(super) fn new(font: Font, font_size: Pixels, wrap_width: Option<Pixels>) -> Self {
Self { Self {
text: Rope::new(), text: SharedString::default(),
font, font,
font_size, font_size,
wrap_width, wrap_width,
soft_lines: 0, wrapped_lines: Vec::new(),
lines: Vec::new(), lines: Vec::new(),
} }
} }
#[inline]
pub(super) fn set_default_text(&mut self, text: &Rope) {
self.text = text.clone();
}
/// Get the total number of lines including wrapped lines.
#[inline]
pub(super) fn len(&self) -> usize {
self.soft_lines
}
/// Get the line item by row index.
#[inline]
pub(super) fn line(&self, row: usize) -> Option<&LineItem> {
self.lines.get(row)
}
pub(super) fn set_wrap_width(&mut self, wrap_width: Option<Pixels>, cx: &mut App) { pub(super) fn set_wrap_width(&mut self, wrap_width: Option<Pixels>, cx: &mut App) {
if wrap_width == self.wrap_width {
return;
}
self.wrap_width = wrap_width; self.wrap_width = wrap_width;
self.update_all(&self.text.clone(), true, cx); self.update(&self.text.clone(), true, cx);
} }
pub(super) fn set_font(&mut self, font: Font, font_size: Pixels, cx: &mut App) { pub(super) fn set_font(&mut self, font: Font, font_size: Pixels, cx: &mut App) {
if self.font.eq(&font) && self.font_size == font_size { self.font = font;
self.font_size = font_size;
self.update(&self.text.clone(), true, cx);
}
pub(super) fn update(&mut self, text: &SharedString, force: bool, cx: &mut App) {
if &self.text == text && !force {
return; return;
} }
self.font = font; let mut wrapped_lines = vec![];
self.font_size = font_size; let mut lines = vec![];
self.update_all(&self.text.clone(), true, cx); let wrap_width = self.wrap_width.unwrap_or(Pixels::MAX);
}
/// Update the text wrapper and recalculate the wrapped lines.
///
/// If the `text` is the same as the current text, do nothing.
///
/// - `changed_text`: The text [`Rope`] that has changed.
/// - `range`: The `selected_range` before change.
/// - `new_text`: The inserted text.
/// - `force`: Whether to force the update, if false, the update will be skipped if the text is the same.
/// - `cx`: The application context.
pub(super) fn update(
&mut self,
changed_text: &Rope,
range: &Range<usize>,
new_text: &Rope,
force: bool,
cx: &mut App,
) {
let mut line_wrapper = cx let mut line_wrapper = cx
.text_system() .text_system()
.line_wrapper(self.font.clone(), self.font_size); .line_wrapper(self.font.clone(), self.font_size);
self._update(
changed_text,
range,
new_text,
force,
&mut |line_str, wrap_width| {
line_wrapper
.wrap_line(&[LineFragment::text(line_str)], wrap_width)
.collect()
},
);
}
fn _update<F>( let mut prev_line_ix = 0;
&mut self, for line in text.split('\n') {
changed_text: &Rope, let mut line_wraps = vec![];
range: &Range<usize>,
new_text: &Rope,
force: bool,
wrap_line: &mut F,
) where
F: FnMut(&str, Pixels) -> Vec<gpui::Boundary>,
{
if self.text.eq(changed_text) && !force {
return;
}
// Remove the old changed lines.
let start_row = self.text.offset_to_point(range.start).row as usize;
let start_row = start_row.min(self.lines.len().saturating_sub(1));
let end_row = self.text.offset_to_point(range.end).row as usize;
let end_row = end_row.min(self.lines.len().saturating_sub(1));
let rows_range = start_row..=end_row;
// To add the new lines.
let new_start_row = changed_text.offset_to_point(range.start).row as usize;
let new_start_offset = changed_text.line_start_offset(new_start_row);
let new_end_row = changed_text
.offset_to_point(range.start + new_text.len())
.row as usize;
let new_end_offset = changed_text.line_end_offset(new_end_row);
let new_range = new_start_offset..new_end_offset;
let mut new_lines = vec![];
let wrap_width = self.wrap_width;
for line in changed_text.slice(new_range).lines() {
let line_str = line.to_string();
let mut wrapped_lines = vec![];
let mut prev_boundary_ix = 0; let mut prev_boundary_ix = 0;
// If wrap_width is Pixels::MAX, skip wrapping to disable word wrap // Here only have wrapped line, if there is no wrap meet, the `line_wraps` result will empty.
if let Some(wrap_width) = wrap_width { for boundary in line_wrapper.wrap_line(&[LineFragment::text(line)], wrap_width) {
// Here only have wrapped line, if there is no wrap meet, the `line_wraps` result will empty. line_wraps.push(prev_boundary_ix..boundary.ix);
for boundary in wrap_line(&line_str, wrap_width) { prev_boundary_ix = boundary.ix;
wrapped_lines.push(prev_boundary_ix..boundary.ix);
prev_boundary_ix = boundary.ix;
}
} }
// Reset of the line lines.push(LineWrap {
if !line_str[prev_boundary_ix..].is_empty() || prev_boundary_ix == 0 { wrap_lines: line_wraps.len(),
wrapped_lines.push(prev_boundary_ix..line.len()); range: prev_line_ix..prev_line_ix + line.len(),
}
new_lines.push(LineItem {
line: line.clone(),
wrapped_lines,
}); });
wrapped_lines.extend(line_wraps);
// Reset of the line
if !line[prev_boundary_ix..].is_empty() || prev_boundary_ix == 0 {
wrapped_lines.push(prev_line_ix + prev_boundary_ix..prev_line_ix + line.len());
}
prev_line_ix += line.len() + 1;
} }
// dbg!(&new_lines.len()); self.text = text.clone();
// dbg!(self.lines.len()); self.wrapped_lines = wrapped_lines;
if self.lines.is_empty() { self.lines = lines;
self.lines = new_lines;
} else {
self.lines.splice(rows_range, new_lines);
}
// dbg!(self.lines.len());
self.text = changed_text.clone();
self.soft_lines = self.lines.iter().map(|l| l.lines_len()).sum();
}
/// Update the text wrapper and recalculate the wrapped lines.
///
/// If the `text` is the same as the current text, do nothing.
pub(crate) fn update_all(&mut self, text: &Rope, force: bool, cx: &mut App) {
self.update(text, &(0..text.len()), text, force, cx);
} }
} }
+3 -5
View File
@@ -299,16 +299,14 @@ where
fn on_query_input_event( fn on_query_input_event(
&mut self, &mut self,
state: &Entity<InputState>, _: &Entity<InputState>,
event: &InputEvent, event: &InputEvent,
window: &mut Window, window: &mut Window,
cx: &mut Context<Self>, cx: &mut Context<Self>,
) { ) {
match event { match event {
InputEvent::Change => { InputEvent::Change(text) => {
let text = state.read(cx).value();
let text = text.trim().to_string(); let text = text.trim().to_string();
if Some(&text) == self.last_query.as_ref() { if Some(&text) == self.last_query.as_ref() {
return; return;
} }
@@ -349,7 +347,7 @@ where
} }
} }
fn set_querying(&mut self, querying: bool, _window: &mut Window, cx: &mut Context<Self>) { fn set_querying(&mut self, querying: bool, _: &mut Window, cx: &mut Context<Self>) {
self.querying = querying; self.querying = querying;
if let Some(input) = &self.query_input { if let Some(input) = &self.query_input {
input.update(cx, |input, cx| input.set_loading(querying, cx)) input.update(cx, |input, cx| input.set_loading(querying, cx))
+1 -2
View File
@@ -405,14 +405,13 @@ impl Render for ResizablePanel {
return div(); return div();
} }
let view = cx.entity().clone();
let total_size = self let total_size = self
.group .group
.as_ref() .as_ref()
.and_then(|group| group.upgrade()) .and_then(|group| group.upgrade())
.map(|group| group.read(cx).total_size()); .map(|group| group.read(cx).total_size());
let view = cx.entity();
div() div()
.flex() .flex()
.flex_grow() .flex_grow()
+1 -1
View File
@@ -194,7 +194,7 @@ impl Root {
} }
} }
/// Render Notification layer. // Render Notification layer.
pub fn render_notification_layer( pub fn render_notification_layer(
window: &mut Window, window: &mut Window,
cx: &mut App, cx: &mut App,
+3 -3
View File
@@ -1,7 +1,7 @@
use std::ops::Range; use std::ops::Range;
use std::sync::Arc; use std::sync::Arc;
use common::display::RenderedProfile; use common::display::ReadableProfile;
use gpui::{ use gpui::{
AnyElement, AnyView, App, ElementId, HighlightStyle, InteractiveText, IntoElement, AnyElement, AnyView, App, ElementId, HighlightStyle, InteractiveText, IntoElement,
SharedString, StyledText, UnderlineStyle, Window, SharedString, StyledText, UnderlineStyle, Window,
@@ -13,7 +13,7 @@ use regex::Regex;
use registry::Registry; use registry::Registry;
use theme::ActiveTheme; use theme::ActiveTheme;
use crate::actions::OpenPublicKey; use crate::actions::OpenProfile;
static URL_REGEX: Lazy<Regex> = Lazy::new(|| { static URL_REGEX: Lazy<Regex> = Lazy::new(|| {
Regex::new(r"^(?:[a-zA-Z]+://)?([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}(:\d+)?(/.*)?$").unwrap() Regex::new(r"^(?:[a-zA-Z]+://)?([a-zA-Z0-9-]+\.)+[a-zA-Z]{2,}(:\d+)?(/.*)?$").unwrap()
@@ -140,7 +140,7 @@ impl RenderedText {
log::error!("Failed to parse public key from: {clean_url}"); log::error!("Failed to parse public key from: {clean_url}");
return; return;
}; };
window.dispatch_action(Box::new(OpenPublicKey(public_key)), cx); window.dispatch_action(Box::new(OpenProfile(public_key)), cx);
} else if is_url(token) { } else if is_url(token) {
if !token.starts_with("http") { if !token.starts_with("http") {
cx.open_url(&format!("https://{token}")); cx.open_url(&format!("https://{token}"));
+7 -13
View File
@@ -51,8 +51,6 @@ common:
en: "Recommended:" en: "Recommended:"
resend: resend:
en: "Resend" en: "Resend"
seen_on:
en: "Seen on"
auto_update: auto_update:
updating: updating:
@@ -272,11 +270,9 @@ profile:
unknown: unknown:
en: "Unknown contact" en: "Unknown contact"
njump: njump:
en: "View on njump.me" en: "Open in njump.me"
no_bio: no_bio:
en: "No bio." en: "No bio."
copy:
en: "Copy Public Key"
preferences: preferences:
account_header: account_header:
@@ -317,6 +313,10 @@ preferences:
en: "Display" en: "Display"
compose: compose:
placeholder_npub:
en: "npub or nprofile..."
placeholder_title:
en: "Family...(Optional)"
create_dm_button: create_dm_button:
en: "Create DM" en: "Create DM"
creating_dm_button: creating_dm_button:
@@ -331,6 +331,8 @@ compose:
en: "Your recently contacts will appear here." en: "Your recently contacts will appear here."
contact_existed: contact_existed:
en: "Contact already added" en: "Contact already added"
receiver_required:
en: "You need to add at least 1 receiver"
description: description:
en: "Start a conversation with someone using their npub or NIP-05 (like foo@bar.com)." en: "Start a conversation with someone using their npub or NIP-05 (like foo@bar.com)."
subject_label: subject_label:
@@ -397,14 +399,6 @@ sidebar:
en: "Incoming new conversations" en: "Incoming new conversations"
trusted_contacts_tooltip: trusted_contacts_tooltip:
en: "Only show rooms from trusted contacts" en: "Only show rooms from trusted contacts"
no_requests:
en: "No message requests"
no_requests_label:
en: "New message requests from people you don't know will appear here."
no_conversations:
en: "No conversations"
no_conversations_label:
en: "Start a conversation with someone to get started."
loading: loading:
label: label:
-135
View File
@@ -1,135 +0,0 @@
#!/bin/bash
# Script to release a new version of the application
# Usage: ./release <new_version>
set -e # Exit on any error
if [ $# -ne 1 ]; then
echo "Usage: $0 <new_version>"
echo "Example: $0 1.0.0"
exit 1
fi
NEW_VERSION="$1"
WORKSPACE_CARGO="Cargo.toml"
CRATE_CARGO="crates/coop/Cargo.toml"
# Check if both Cargo.toml files exist
if [ ! -f "$WORKSPACE_CARGO" ]; then
echo "Error: $WORKSPACE_CARGO not found in current directory"
exit 1
fi
if [ ! -f "$CRATE_CARGO" ]; then
echo "Error: $CRATE_CARGO not found"
exit 1
fi
# Function to update version in a Cargo.toml file
update_version() {
local file="$1"
local backup="${file}.bak"
# Backup the original file
cp "$file" "$backup"
# Replace the version in Cargo.toml
if sed -i.bak -E "s/^version = \"[0-9]+\.[0-9]+\.[0-9]+\"/version = \"$NEW_VERSION\"/" "$file"; then
echo "✓ Updated version to $NEW_VERSION in $file"
# Remove backup created by sed
if [ -f "${file}.bak" ]; then
rm "${file}.bak"
fi
else
echo "Error: Failed to update version in $file"
# Restore original backup
mv "$backup" "$file"
exit 1
fi
# Remove the initial backup file
rm -f "$backup"
}
# Update both Cargo.toml files
echo "Updating versions..."
update_version "$WORKSPACE_CARGO"
update_version "$CRATE_CARGO"
# Check git status before committing
echo "Checking git status..."
if git status --porcelain | grep -q .; then
echo "Current uncommitted changes:"
git status --short
# Ask user if they want to commit all changes or just version files
echo ""
echo "Do you want to:"
echo "1) Commit all current changes (including the version updates)"
echo "2) Commit only the version file changes"
echo "3) Abort the release"
read -p "Enter choice (1/2/3): " choice
case $choice in
1)
echo "Committing all changes..."
git add .
;;
2)
echo "Committing only version file changes..."
git add "$WORKSPACE_CARGO" "$CRATE_CARGO"
;;
3)
echo "Release aborted by user"
exit 0
;;
*)
echo "Invalid choice. Release aborted."
exit 1
;;
esac
else
# Only version files were modified, add them specifically
echo "Only version files were modified, adding them for commit..."
git add "$WORKSPACE_CARGO" "$CRATE_CARGO"
fi
# Commit the changes
COMMIT_MSG="chore: release version $NEW_VERSION"
if git commit -m "$COMMIT_MSG"; then
echo "✓ Committed version changes"
else
echo "Error: Failed to commit version changes"
exit 1
fi
# Push version changes to origin
echo "Pushing version changes to origin..."
if git push origin master; then
echo "✓ Successfully pushed version changes to origin"
else
echo "Error: Failed to push version changes to origin"
exit 1
fi
# Create git tag
TAG_NAME="v$NEW_VERSION"
if git tag -a "$TAG_NAME" -m "$COMMIT_MSG"; then
echo "✓ Created git tag: $TAG_NAME"
else
echo "Error: Failed to create git tag"
exit 1
fi
# Push tag to origin
echo "Pushing tag to origin..."
if git push origin "$TAG_NAME"; then
echo "✓ Successfully pushed tag to origin"
echo "✓ Release $NEW_VERSION completed successfully!"
else
echo "Error: Failed to push tag to origin"
exit 1
fi