note: cleanup wide/standard implementation

Since this function was getting too big
This commit is contained in:
William Casarin
2025-06-03 08:09:07 -07:00
parent 5ef77efebb
commit 7d916805bc

View File

@@ -20,7 +20,7 @@ pub use reply_description::reply_desc;
use egui::emath::{pos2, Vec2};
use egui::{Id, Label, Pos2, Rect, Response, RichText, Sense};
use enostr::{KeypairUnowned, NoteId, Pubkey};
use nostrdb::{Ndb, Note, NoteKey, Transaction};
use nostrdb::{Ndb, Note, NoteKey, ProfileRecord, Transaction};
use notedeck::{
name::get_display_name,
note::{NoteAction, NoteContext, ZapAction},
@@ -387,29 +387,21 @@ impl<'a, 'd> NoteView<'a, 'd> {
});
}
#[profiling::function]
fn show_standard(&mut self, ui: &mut egui::Ui) -> NoteResponse {
let note_key = self.note.key().expect("todo: support non-db notes");
let txn = self.note.txn().expect("todo: support non-db notes");
let mut note_action: Option<NoteAction> = None;
let hitbox_id = note_hitbox_id(note_key, self.options(), self.parent);
let profile = self
.note_context
.ndb
.get_profile_by_pubkey(txn, self.note.pubkey());
let maybe_hitbox = maybe_note_hitbox(ui, hitbox_id);
// wide design
let response = if self.options().has_wide() {
ui.vertical(|ui| {
fn wide_ui(
&mut self,
ui: &mut egui::Ui,
txn: &Transaction,
note_key: NoteKey,
profile: &Result<ProfileRecord, nostrdb::Error>,
note_action: &mut Option<NoteAction>,
) -> Response {
ui.with_layout(egui::Layout::top_down(egui::Align::LEFT), |ui| {
ui.horizontal(|ui| {
let (pfp_resp, action) = self.pfp(note_key, &profile, ui);
let (pfp_resp, action) = self.pfp(note_key, profile, ui);
if pfp_resp.clicked() {
note_action = Some(NoteAction::Profile(Pubkey::new(*self.note.pubkey())));
*note_action = Some(NoteAction::Profile(Pubkey::new(*self.note.pubkey())));
} else if let Some(action) = action {
note_action = Some(NoteAction::Media(action));
*note_action = Some(NoteAction::Media(action));
};
let size = ui.available_size();
@@ -422,7 +414,7 @@ impl<'a, 'd> NoteView<'a, 'd> {
ui,
self.note_context.note_cache,
self.note,
&profile,
profile,
);
})
.response
@@ -452,7 +444,7 @@ impl<'a, 'd> NoteView<'a, 'd> {
.inner;
if action.is_some() {
note_action = action;
*note_action = action;
}
}
});
@@ -470,7 +462,7 @@ impl<'a, 'd> NoteView<'a, 'd> {
ui.add(&mut contents);
if let Some(action) = contents.action {
note_action = Some(action);
*note_action = Some(action);
}
if self.options().has_actionbar() {
@@ -486,23 +478,32 @@ impl<'a, 'd> NoteView<'a, 'd> {
)
.inner
{
note_action = Some(action);
*note_action = Some(action);
}
}
})
.response
} else {
}
fn standard_ui(
&mut self,
ui: &mut egui::Ui,
txn: &Transaction,
note_key: NoteKey,
profile: &Result<ProfileRecord, nostrdb::Error>,
note_action: &mut Option<NoteAction>,
) -> Response {
// main design
ui.with_layout(egui::Layout::left_to_right(egui::Align::TOP), |ui| {
let (pfp_resp, action) = self.pfp(note_key, &profile, ui);
let (pfp_resp, action) = self.pfp(note_key, profile, ui);
if pfp_resp.clicked() {
note_action = Some(NoteAction::Profile(Pubkey::new(*self.note.pubkey())));
*note_action = Some(NoteAction::Profile(Pubkey::new(*self.note.pubkey())));
} else if let Some(action) = action {
note_action = Some(NoteAction::Media(action));
*note_action = Some(NoteAction::Media(action));
};
ui.with_layout(egui::Layout::top_down(egui::Align::LEFT), |ui| {
NoteView::note_header(ui, self.note_context.note_cache, self.note, &profile);
NoteView::note_header(ui, self.note_context.note_cache, self.note, profile);
ui.horizontal(|ui| {
ui.spacing_mut().item_spacing.x = 2.0;
@@ -525,7 +526,7 @@ impl<'a, 'd> NoteView<'a, 'd> {
);
if action.is_some() {
note_action = action;
*note_action = action;
}
}
});
@@ -541,7 +542,7 @@ impl<'a, 'd> NoteView<'a, 'd> {
ui.add(&mut contents);
if let Some(action) = contents.action {
note_action = Some(action);
*note_action = Some(action);
}
if self.options().has_actionbar() {
@@ -557,12 +558,31 @@ impl<'a, 'd> NoteView<'a, 'd> {
)
.inner
{
note_action = Some(action);
*note_action = Some(action);
}
}
});
})
.response
}
#[profiling::function]
fn show_standard(&mut self, ui: &mut egui::Ui) -> NoteResponse {
let note_key = self.note.key().expect("todo: support non-db notes");
let txn = self.note.txn().expect("todo: support non-db notes");
let mut note_action: Option<NoteAction> = None;
let profile = self
.note_context
.ndb
.get_profile_by_pubkey(txn, self.note.pubkey());
// wide design
let response = if self.options().has_wide() {
self.wide_ui(ui, txn, note_key, &profile, &mut note_action)
} else {
self.standard_ui(ui, txn, note_key, &profile, &mut note_action)
};
if self.options().has_options_button() {
@@ -579,6 +599,8 @@ impl<'a, 'd> NoteView<'a, 'd> {
}
}
let hitbox_id = note_hitbox_id(note_key, self.options(), self.parent);
let maybe_hitbox = maybe_note_hitbox(ui, hitbox_id);
let note_action = if note_hitbox_clicked(ui, hitbox_id, &response.rect, maybe_hitbox) {
Some(NoteAction::Note(NoteId::new(*self.note.id())))
} else {