nav: nav to accounts view for actions that require key

Fixes: https://github.com/damus-io/notedeck/issues/936
Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin
2025-07-10 16:16:10 -07:00
parent 605f6f4711
commit 26d027f03e
5 changed files with 42 additions and 48 deletions

View File

@@ -57,6 +57,7 @@ fn execute_note_action(
) -> NoteActionResponse { ) -> NoteActionResponse {
let mut timeline_res = None; let mut timeline_res = None;
let mut router_action = None; let mut router_action = None;
let can_post = accounts.get_selected_account().key.secret_key.is_some();
match action { match action {
NoteAction::Scroll(ref scroll_info) => { NoteAction::Scroll(ref scroll_info) => {
@@ -64,7 +65,11 @@ fn execute_note_action(
} }
NoteAction::Reply(note_id) => { NoteAction::Reply(note_id) => {
router_action = Some(RouterAction::route_to(Route::reply(note_id))); if can_post {
router_action = Some(RouterAction::route_to(Route::reply(note_id)));
} else {
router_action = Some(RouterAction::route_to(Route::accounts()));
}
} }
NoteAction::Profile(pubkey) => { NoteAction::Profile(pubkey) => {
let kind = TimelineKind::Profile(pubkey); let kind = TimelineKind::Profile(pubkey);
@@ -99,7 +104,11 @@ fn execute_note_action(
.map(NotesOpenResult::Timeline); .map(NotesOpenResult::Timeline);
} }
NoteAction::Quote(note_id) => { NoteAction::Quote(note_id) => {
router_action = Some(RouterAction::route_to(Route::quote(note_id))); if can_post {
router_action = Some(RouterAction::route_to(Route::quote(note_id)));
} else {
router_action = Some(RouterAction::route_to(Route::accounts()));
}
} }
NoteAction::Zap(zap_action) => { NoteAction::Zap(zap_action) => {
let cur_acc = accounts.get_selected_account(); let cur_acc = accounts.get_selected_account();
@@ -336,7 +345,10 @@ pub fn process_thread_notes(
let note = if let Ok(note) = ndb.get_note_by_key(txn, *key) { let note = if let Ok(note) = ndb.get_note_by_key(txn, *key) {
note note
} else { } else {
tracing::error!("hit race condition in poll_notes_into_view: https://github.com/damus-io/nostrdb/issues/35 note {:?} was not added to timeline", key); tracing::error!(
"hit race condition in poll_notes_into_view: https://github.com/damus-io/nostrdb/issues/35 note {:?} was not added to timeline",
key
);
continue; continue;
}; };

View File

@@ -9,7 +9,7 @@ use crate::{
subscriptions::{SubKind, Subscriptions}, subscriptions::{SubKind, Subscriptions},
support::Support, support::Support,
timeline::{self, kind::ListKind, thread::Threads, TimelineCache, TimelineKind}, timeline::{self, kind::ListKind, thread::Threads, TimelineCache, TimelineKind},
ui::{self, DesktopSidePanel}, ui::{self, DesktopSidePanel, SidePanelAction},
view_state::ViewState, view_state::ViewState,
Result, Result,
}; };
@@ -573,30 +573,21 @@ fn render_damus_mobile(
rect.min.x = rect.max.x - if is_narrow(ui.ctx()) { 60.0 } else { 100.0 }; rect.min.x = rect.max.x - if is_narrow(ui.ctx()) { 60.0 } else { 100.0 };
rect.min.y = rect.max.y - 100.0; rect.min.y = rect.max.y - 100.0;
let is_interactive = app_ctx
.accounts
.get_selected_account()
.key
.secret_key
.is_some();
let darkmode = ui.ctx().style().visuals.dark_mode; let darkmode = ui.ctx().style().visuals.dark_mode;
// only show the compose button on profile pages and on home // only show the compose button on profile pages and on home
if should_show_compose_button(&app.decks_cache, app_ctx.accounts) { if should_show_compose_button(&app.decks_cache, app_ctx.accounts) {
let compose_resp = ui.put( let compose_resp = ui.put(rect, ui::post::compose_note_button(darkmode));
rect, if compose_resp.hovered() {
ui::post::compose_note_button(is_interactive, darkmode), notedeck_ui::show_pointer(ui);
); }
if compose_resp.clicked() && !app.columns(app_ctx.accounts).columns().is_empty() { if compose_resp.clicked() && !app.columns(app_ctx.accounts).columns().is_empty() {
let router = app // just use the some side panel logic as the desktop
.columns_mut(app_ctx.accounts) DesktopSidePanel::perform_action(
.selected_mut() &mut app.decks_cache,
.router_mut(); app_ctx.accounts,
if router.top() == &Route::ComposeNote { SidePanelAction::ComposeNote,
router.go_back(); );
} else {
router.route_to(Route::ComposeNote);
}
} }
} }

View File

@@ -4,7 +4,7 @@ use notedeck_ui::anim::AnimationHelper;
static ICON_WIDTH: f32 = 40.0; static ICON_WIDTH: f32 = 40.0;
static ICON_EXPANSION_MULTIPLE: f32 = 1.2; static ICON_EXPANSION_MULTIPLE: f32 = 1.2;
pub fn compose_note_button(interactive: bool, dark_mode: bool) -> impl Widget { pub fn compose_note_button(dark_mode: bool) -> impl Widget {
move |ui: &mut egui::Ui| -> egui::Response { move |ui: &mut egui::Ui| -> egui::Response {
let max_size = ICON_WIDTH * ICON_EXPANSION_MULTIPLE; // max size of the widget let max_size = ICON_WIDTH * ICON_EXPANSION_MULTIPLE; // max size of the widget
@@ -12,11 +12,7 @@ pub fn compose_note_button(interactive: bool, dark_mode: bool) -> impl Widget {
let min_plus_sign_size = 14.0; // length of the plus sign let min_plus_sign_size = 14.0; // length of the plus sign
let min_line_width = 2.25; // width of the plus sign let min_line_width = 2.25; // width of the plus sign
let helper = if interactive { let helper = AnimationHelper::new(ui, "note-compose-button", vec2(max_size, max_size));
AnimationHelper::new(ui, "note-compose-button", vec2(max_size, max_size))
} else {
AnimationHelper::no_animation(ui, vec2(max_size, max_size))
};
let painter = ui.painter_at(helper.get_animation_rect()); let painter = ui.painter_at(helper.get_animation_rect());
@@ -24,11 +20,8 @@ pub fn compose_note_button(interactive: bool, dark_mode: bool) -> impl Widget {
let use_line_width = helper.scale_1d_pos(min_line_width); let use_line_width = helper.scale_1d_pos(min_line_width);
let use_edge_circle_radius = helper.scale_radius(min_line_width); let use_edge_circle_radius = helper.scale_radius(min_line_width);
let fill_color = if interactive { // TODO: theme!?
notedeck_ui::colors::PINK let fill_color = notedeck_ui::colors::PINK;
} else {
ui.visuals().noninteractive().bg_fill
};
painter.circle_filled(helper.center(), use_background_radius, fill_color); painter.circle_filled(helper.center(), use_background_radius, fill_color);
@@ -38,7 +31,7 @@ pub fn compose_note_button(interactive: bool, dark_mode: bool) -> impl Widget {
let west_edge = helper.scale_from_center(-min_half_plus_sign_size, 0.0); let west_edge = helper.scale_from_center(-min_half_plus_sign_size, 0.0);
let east_edge = helper.scale_from_center(min_half_plus_sign_size, 0.0); let east_edge = helper.scale_from_center(min_half_plus_sign_size, 0.0);
let icon_color = if !dark_mode && !interactive { let icon_color = if !dark_mode {
Color32::BLACK Color32::BLACK
} else { } else {
Color32::WHITE Color32::WHITE

View File

@@ -92,16 +92,7 @@ impl<'a> DesktopSidePanel<'a> {
// ui.add_space(24.0); // ui.add_space(24.0);
//} //}
let is_interactive = self.selected_account.key.secret_key.is_some(); let compose_resp = ui.add(crate::ui::post::compose_note_button(dark_mode));
let compose_resp = ui.add(crate::ui::post::compose_note_button(
is_interactive,
dark_mode,
));
let compose_resp = if is_interactive {
compose_resp
} else {
compose_resp.on_hover_cursor(egui::CursorIcon::NotAllowed)
};
let search_resp = ui.add(search_button()); let search_resp = ui.add(search_button());
let column_resp = ui.add(add_column_button()); let column_resp = ui.add(add_column_button());
@@ -135,6 +126,9 @@ impl<'a> DesktopSidePanel<'a> {
SidePanelAction::ComposeNote, SidePanelAction::ComposeNote,
compose_resp, compose_resp,
)) ))
} else if compose_resp.hovered() {
notedeck_ui::show_pointer(ui);
None
} else if search_resp.clicked() { } else if search_resp.clicked() {
Some(InnerResponse::new(SidePanelAction::Search, search_resp)) Some(InnerResponse::new(SidePanelAction::Search, search_resp))
} else if column_resp.clicked() { } else if column_resp.clicked() {
@@ -226,7 +220,11 @@ impl<'a> DesktopSidePanel<'a> {
} }
} }
SidePanelAction::ComposeNote => { SidePanelAction::ComposeNote => {
if router.routes().iter().any(|r| r == &Route::ComposeNote) { let can_post = accounts.get_selected_account().key.secret_key.is_some();
if !can_post {
router.route_to(Route::accounts());
} else if router.routes().iter().any(|r| r == &Route::ComposeNote) {
router.go_back(); router.go_back();
} else { } else {
router.route_to(Route::ComposeNote); router.route_to(Route::ComposeNote);

View File

@@ -60,8 +60,8 @@ impl AnimationHelper {
} }
} }
pub fn no_animation(ui: &mut egui::Ui, size: egui::Vec2) -> Self { pub fn no_animation(ui: &mut egui::Ui, size: egui::Vec2, sense: Sense) -> Self {
let (rect, response) = ui.allocate_exact_size(size, Sense::hover()); let (rect, response) = ui.allocate_exact_size(size, sense);
Self { Self {
rect, rect,