Files
grim/src/gui/views/wallets/content.rs
T
2026-05-21 00:56:28 +03:00

841 lines
25 KiB
Rust

// Copyright 2023 The Grim Developers
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
use eframe::epaint::RectShape;
use egui::os::OperatingSystem;
use egui::scroll_area::ScrollBarVisibility;
use egui::{
Align, CornerRadius, CursorIcon, Id, Layout, Margin, OpenUrl, RichText, ScrollArea, Sense,
StrokeKind, UiBuilder,
};
use egui_async::Bind;
use std::time::Duration;
use crate::AppConfig;
use crate::gui::Colors;
use crate::gui::icons::{
ARROW_LEFT, BOOKMARKS, CALENDAR_CHECK, CLOUD_ARROW_DOWN, COMPUTER_TOWER, FOLDER_PLUS, GEAR,
GEAR_FINE, GLOBE, GLOBE_SIMPLE, LOCK_KEY, NOTEPAD, PLUS, SIDEBAR_SIMPLE, SUITCASE,
};
use crate::gui::platform::PlatformCallbacks;
use crate::gui::views::settings::SettingsContent;
use crate::gui::views::types::{
ContentContainer, LinePosition, ModalPosition, TitleContentType, TitleType,
};
use crate::gui::views::wallets::WalletContent;
use crate::gui::views::wallets::creation::WalletCreationContent;
use crate::gui::views::wallets::modals::{
AddWalletModal, ChangelogContent, OpenWalletModal, WalletListModal, WalletSettingsModal,
};
use crate::gui::views::wallets::wallet::RecoverySettings;
use crate::gui::views::wallets::wallet::types::{WalletContentContainer, wallet_status_text};
use crate::gui::views::{Content, Modal, TitlePanel, View};
use crate::http::{ReleaseInfo, retrieve_release};
use crate::settings::AppUpdate;
use crate::wallet::types::{ConnectionMethod, WalletTask};
use crate::wallet::{Wallet, WalletList};
/// Wallets content.
pub struct WalletsContent {
/// List of wallets.
wallets: WalletList,
/// Initial wallet creation [`Modal`] content.
add_wallet_modal_content: AddWalletModal,
/// Wallet opening [`Modal`] content.
open_wallet_content: OpenWalletModal,
/// Wallet settings [`Modal`] content.
wallet_settings_content: WalletSettingsModal,
/// Wallet selection [`Modal`] content.
wallet_selection_content: WalletListModal,
/// Selected [`Wallet`] content.
wallet_content: WalletContent,
/// Wallet creation content.
creation_content: Option<WalletCreationContent>,
/// Settings content.
settings_content: Option<SettingsContent>,
/// Result of update check
check_update: Bind<ReleaseInfo, String>,
/// Application update information.
update_info: (bool, Option<AppUpdate>),
/// Update changelog [`Modal`] content.
changelog_content: Option<ChangelogContent>,
}
/// Identifier for [`Modal`] to add the wallet.
const ADD_WALLET_MODAL: &'static str = "wallets_add_modal";
/// Identifier for [`Modal`] to open the wallet.
const OPEN_WALLET_MODAL: &'static str = "wallets_open_wallet";
/// Identifier for wallet settings [`Modal`].
const WALLET_SETTINGS_MODAL: &'static str = "wallets_settings_modal";
/// Identifier for wallet selection [`Modal`].
const SELECT_WALLET_MODAL: &'static str = "wallets_select_modal";
impl Default for WalletsContent {
fn default() -> Self {
Self {
wallets: WalletList::default(),
wallet_selection_content: WalletListModal::new(None, None, true),
open_wallet_content: OpenWalletModal::new(),
add_wallet_modal_content: AddWalletModal::default(),
wallet_settings_content: WalletSettingsModal::new(ConnectionMethod::Integrated),
wallet_content: WalletContent::default(),
creation_content: None,
settings_content: None,
check_update: Bind::new(false),
update_info: (false, None),
changelog_content: None,
}
}
}
impl ContentContainer for WalletsContent {
fn modal_ids(&self) -> Vec<&'static str> {
vec![
ADD_WALLET_MODAL,
OPEN_WALLET_MODAL,
WALLET_SETTINGS_MODAL,
SELECT_WALLET_MODAL,
Self::DELETE_CONFIRMATION_MODAL,
ChangelogContent::MODAL_ID,
]
}
fn modal_ui(&mut self, ui: &mut egui::Ui, modal: &Modal, cb: &dyn PlatformCallbacks) {
match modal.id {
ADD_WALLET_MODAL => {
self.add_wallet_modal_content
.ui(ui, modal, cb, |name, pass| {
self.creation_content =
Some(WalletCreationContent::new(name.clone(), pass.clone()));
});
}
OPEN_WALLET_MODAL => {
self.open_wallet_content.ui(ui, modal, cb, |pass| {
if let Some(w) = self.wallets.selected().as_ref() {
return match w.open(pass) {
Ok(_) => true,
Err(_) => false,
};
}
true
});
}
WALLET_SETTINGS_MODAL => {
self.wallet_settings_content.ui(ui, modal, cb, |conn| {
if let Some(w) = self.wallets.selected().as_ref() {
w.update_connection(&conn);
}
});
}
SELECT_WALLET_MODAL => {
let mut w: Option<Wallet> = None;
let mut d: Option<String> = None;
self.wallet_selection_content
.ui(ui, &mut self.wallets, |wallet, data| {
w = Some(wallet);
d = data;
});
if let Some(wallet) = &w {
if !wallet.is_open() {
self.show_opening_modal(wallet, d, cb);
} else {
self.select_wallet(wallet, d, cb);
}
}
}
Self::DELETE_CONFIRMATION_MODAL => {
if let Some(w) = self.wallets.selected().as_ref() {
RecoverySettings::deletion_modal_ui(ui, w);
}
}
ChangelogContent::MODAL_ID => {
if let Some(c) = self.changelog_content.as_mut() {
c.ui(ui);
}
}
_ => {}
}
}
fn container_ui(&mut self, ui: &mut egui::Ui, cb: &dyn PlatformCallbacks) {
// Small repaint delay is needed for Android back navigation and account list opening.
let is_android = OperatingSystem::from_target_os() == OperatingSystem::Android;
let account_list_showing = self.wallet_content.account_content.show_list;
ui.ctx()
.request_repaint_after(Duration::from_millis(if account_list_showing {
10
} else if is_android {
100
} else {
1000
}));
if let Some(data) = crate::consume_incoming_data() {
if !data.is_empty() {
self.on_data(ui, Some(data), cb);
}
}
let showing_settings = self.showing_settings();
let creating_wallet = self.creating_wallet();
let showing_wallet = self.showing_wallet() && !creating_wallet && !showing_settings;
let dual_panel = is_dual_panel_mode(ui);
let content_width = ui.available_width();
let list_hidden = showing_settings
|| creating_wallet
|| self.wallets.list().is_empty()
|| (showing_wallet && (!dual_panel || !AppConfig::show_wallets_at_dual_panel()));
// Show title panel.
self.title_ui(ui, dual_panel, cb);
egui::SidePanel::right("wallet_panel")
.resizable(false)
.exact_width(if list_hidden {
content_width
} else {
content_width - Content::SIDE_PANEL_WIDTH
})
.frame(egui::Frame {
fill: Colors::fill_deep(),
..Default::default()
})
.show_animated_inside(ui, showing_wallet, |ui| {
// Show selected wallet content.
if let Some(w) = self.wallets.selected().as_ref() {
self.wallet_content.ui(ui, w, cb);
}
});
// Show wallet list tabs.
let side_padding = View::TAB_ITEMS_PADDING + if View::is_desktop() { 0.0 } else { 4.0 };
let tabs_margin = Margin {
left: (View::far_left_inset_margin(ui) + side_padding) as i8,
right: (View::far_right_inset_margin(ui) + side_padding) as i8,
top: View::TAB_ITEMS_PADDING as i8,
bottom: (View::get_bottom_inset() + View::TAB_ITEMS_PADDING) as i8,
};
egui::TopBottomPanel::bottom("wallets_bottom_panel")
.frame(egui::Frame {
inner_margin: tabs_margin,
fill: Colors::fill(),
..Default::default()
})
.resizable(false)
.show_animated_inside(ui, !list_hidden, |ui| {
let rect = ui.available_rect_before_wrap();
// Setup spacing between tabs.
ui.style_mut().spacing.item_spacing = egui::vec2(View::TAB_ITEMS_PADDING, 0.0);
ui.vertical_centered(|ui| {
let pressed = Modal::opened() == Some(ADD_WALLET_MODAL);
View::tab_button(ui, PLUS, None, Some(pressed), |_| {
self.show_add_wallet_modal();
});
});
// Draw content divider line.
let r = {
let mut r = rect.clone();
r.min.y -= tabs_margin.top as f32;
r.min.x -= tabs_margin.left as f32;
r.max.x += tabs_margin.right as f32;
r
};
View::line(ui, LinePosition::TOP, &r, Colors::stroke());
});
egui::SidePanel::left("wallet_list_panel")
.exact_width(if dual_panel && showing_wallet {
Content::SIDE_PANEL_WIDTH
} else {
content_width
})
.resizable(false)
.frame(egui::Frame {
inner_margin: Margin {
left: (View::far_left_inset_margin(ui) + View::content_padding()) as i8,
right: (View::far_right_inset_margin(ui) + View::content_padding()) as i8,
top: 3.0 as i8,
bottom: 4.0 as i8,
},
fill: Colors::fill(),
..Default::default()
})
.show_animated_inside(ui, !list_hidden, |ui| {
// Show wallet list.
self.wallet_list_ui(ui, cb);
});
egui::CentralPanel::default()
.frame(egui::Frame {
inner_margin: if self.showing_settings() {
Margin {
left: (View::far_left_inset_margin(ui) + View::content_padding()) as i8,
right: (View::far_right_inset_margin(ui) + View::content_padding()) as i8,
top: 0,
bottom: 0,
}
} else {
Margin::default()
},
fill: if self.showing_settings() {
Colors::fill_lite()
} else {
Colors::fill_deep()
},
..Default::default()
})
.show_inside(ui, |ui| {
if self.showing_settings() {
if let Some(c) = &mut self.settings_content {
ScrollArea::vertical()
.id_salt("app_settings_wallets")
.scroll_bar_visibility(ScrollBarVisibility::AlwaysHidden)
.auto_shrink([false; 2])
.show(ui, |ui| {
ui.add_space(1.0);
ui.vertical_centered(|ui| {
// Show application settings content.
View::max_width_ui(ui, Content::SIDE_PANEL_WIDTH * 1.3, |ui| {
c.ui(ui, cb);
});
});
});
}
} else if self.creating_wallet() {
// Show wallet creation content.
let mut created_wallet: Option<Wallet> = None;
let creation = self.creation_content.as_mut().unwrap();
let pass = creation.pass.clone();
creation.content_ui(ui, cb, |wallet| {
created_wallet = Some(wallet);
});
if let Some(w) = &created_wallet {
self.creation_content = None;
self.wallets.add(w.clone());
if let Ok(_) = w.open(pass.clone()) {
self.select_wallet(w, None, cb);
}
}
} else if self.wallets.list().is_empty() {
View::center_content(ui, 350.0 + View::get_bottom_inset(), |ui| {
View::app_logo_name_version(ui);
ui.add_space(4.0);
let text = t!("wallets.create_desc");
ui.label(RichText::new(text).size(16.0).color(Colors::gray()));
ui.add_space(8.0);
// Show wallet creation button.
let add_text = format!("{} {}", FOLDER_PLUS, t!("wallets.add"));
View::button(ui, add_text, Colors::white_or_black(false), || {
self.show_add_wallet_modal();
});
});
} else {
return;
}
});
}
}
impl WalletsContent {
/// Identifier for wallet deletion confirmation [`Modal`].
pub const DELETE_CONFIRMATION_MODAL: &'static str = "wallets_delete_confirmation_modal";
/// Called to navigate back, return `true` if action was not consumed.
pub fn on_back(&mut self, cb: &dyn PlatformCallbacks) -> bool {
if self.showing_settings() {
// Close settings.
self.settings_content = None;
return false;
} else if self.creating_wallet() {
// Close wallet creation.
let creation = self.creation_content.as_mut().unwrap();
if creation.on_back() {
self.creation_content = None;
}
return false;
} else if self.showing_wallet() {
// Go back at stack or close wallet.
if self.wallet_content.can_back() {
self.wallet_content.back(cb);
} else {
self.wallets.select(None);
}
return false;
}
true
}
/// Check if opened wallet is showing.
pub fn showing_wallet(&self) -> bool {
if let Some(w) = self.wallets.selected().as_ref() {
return w.is_open()
&& !w.is_deleted()
&& w.get_config().chain_type == AppConfig::chain_type();
}
false
}
/// Check if wallet is creating.
pub fn creating_wallet(&self) -> bool {
self.creation_content.is_some()
}
/// Check if application settings are showing.
pub fn showing_settings(&self) -> bool {
self.settings_content.is_some()
}
/// Handle data from deeplink or opened file.
fn on_data(&mut self, ui: &mut egui::Ui, data: Option<String>, cb: &dyn PlatformCallbacks) {
let wallets_size = self.wallets.list().len();
if wallets_size == 0 {
return;
}
// Close network panel on single panel mode.
if !Content::is_dual_panel_mode(ui.ctx()) && Content::is_network_panel_open() {
Content::toggle_network_panel();
}
// Pass data to single wallet or show wallets selection.
if wallets_size == 1 {
let w = self.wallets.list()[0].clone();
if w.is_open() {
self.select_wallet(&w, data, cb);
} else {
self.show_opening_modal(&w, data, cb);
}
} else {
self.wallet_selection_content = WalletListModal::new(None, data, true);
Modal::new(SELECT_WALLET_MODAL)
.position(ModalPosition::Center)
.title(t!("network_settings.choose_wallet"))
.show();
}
}
/// Show initial wallet creation [`Modal`].
pub fn show_add_wallet_modal(&mut self) {
self.add_wallet_modal_content = AddWalletModal::default();
Modal::new(ADD_WALLET_MODAL)
.position(ModalPosition::CenterTop)
.title(t!("wallets.add"))
.show();
}
/// Draw [`TitlePanel`] content.
fn title_ui(&mut self, ui: &mut egui::Ui, dual_panel: bool, cb: &dyn PlatformCallbacks) {
let showing_settings = self.showing_settings();
let show_wallet = self.showing_wallet();
let show_list = AppConfig::show_wallets_at_dual_panel();
let creating_wallet = self.creating_wallet();
// Setup title.
let title_content = if show_wallet
&& (!dual_panel || (dual_panel && !show_list))
&& !creating_wallet
&& !showing_settings
{
let title = self.wallet_content.title().into();
let subtitle = self.wallets.selected().unwrap().get_config().name;
let wallet_title_content = if self.wallet_content.settings_content.is_some() {
TitleContentType::Title(title)
} else {
TitleContentType::WithSubTitle(title, subtitle, false)
};
TitleType::Single(wallet_title_content)
} else {
let title_text = if showing_settings {
t!("settings")
} else if creating_wallet {
t!("wallets.add")
} else {
t!("wallets.title")
}
.into();
let dual_title = !showing_settings && !creating_wallet && show_wallet && dual_panel;
if dual_title {
let title = self.wallet_content.title().into();
let subtitle = self.wallets.selected().unwrap().get_config().name;
let wallet_title_content = if self.wallet_content.settings_content.is_some() {
TitleContentType::Title(title)
} else {
TitleContentType::WithSubTitle(title, subtitle, false)
};
TitleType::Dual(TitleContentType::Title(title_text), wallet_title_content)
} else {
TitleType::Single(TitleContentType::Title(title_text))
}
};
// Draw title panel.
let mut show_settings = false;
let showing_settings = self.showing_settings();
TitlePanel::new(Id::new("wallets_title_panel")).ui(
title_content,
|ui| {
if self.showing_settings() {
View::title_button_big(ui, ARROW_LEFT, |_| {
self.settings_content = None;
});
} else if show_wallet && !dual_panel {
View::title_button_big(ui, ARROW_LEFT, |_| {
if self.wallet_content.can_back() {
self.wallet_content.back(cb);
} else {
self.wallets.select(None);
}
});
} else if self.creating_wallet() {
let mut close = false;
if let Some(creation) = self.creation_content.as_mut() {
View::title_button_big(ui, ARROW_LEFT, |_| {
if creation.on_back() {
close = true;
}
});
}
if close {
self.creation_content = None;
}
} else if show_wallet && dual_panel {
let list_icon = if show_list { SIDEBAR_SIMPLE } else { SUITCASE };
View::title_button_big(ui, list_icon, |_| {
AppConfig::toggle_show_wallets_at_dual_panel();
});
} else if !Content::is_dual_panel_mode(ui.ctx()) {
View::title_button_big(ui, GLOBE, |_| {
Content::toggle_network_panel();
});
}
},
|ui| {
if !showing_settings {
View::title_button_big(ui, GEAR, |_| {
// Show application settings.
show_settings = true;
});
}
},
ui,
);
if show_settings {
self.wallet_content.back(cb);
self.settings_content = Some(SettingsContent::default());
}
}
/// Draw list of wallets.
fn wallet_list_ui(&mut self, ui: &mut egui::Ui, cb: &dyn PlatformCallbacks) {
ScrollArea::vertical()
.id_salt("wallet_list_scroll")
.scroll_bar_visibility(ScrollBarVisibility::AlwaysHidden)
.auto_shrink([false; 2])
.show(ui, |ui| {
View::max_width_ui(ui, Content::SIDE_PANEL_WIDTH * 1.3, |ui| {
// Show application logo and name.
View::app_logo_name_version(ui);
ui.add_space(15.0);
// Show result of update check.
if AppConfig::check_updates() {
if let Some(res) = self
.check_update
.read_or_request(|| async { retrieve_release().await })
{
let checked = self.update_info.0;
if !checked {
self.update_info.0 = true;
match res {
Ok(info) => {
if info.is_update() {
AppConfig::save_update(Some(info));
} else {
AppConfig::save_update(None);
}
self.update_info.1 = AppConfig::app_update();
}
Err(_) => AppConfig::save_update(None),
}
}
}
// Show update information.
self.update_info_ui(ui);
}
let list = self.wallets.list().clone();
for w in list.iter() {
let id = w.get_config().id;
// Remove deleted.
if w.is_deleted() {
self.wallets.select(None);
self.wallets.remove(id);
ui.ctx().request_repaint();
continue;
}
// Check if wallet reopen is needed.
if w.reopen_needed() && !w.is_open() {
w.set_reopen(false);
self.show_opening_modal(w, None, cb);
}
// Check if wallet is selected.
let current = if let Some(selected) = self.wallets.selected().as_ref() {
selected.get_config().id == id
} else {
false
};
// Unselect wallet when opening or settings modal was closed.
if current && !w.is_open() && Modal::opened().is_none() {
self.wallets.select(None);
}
self.wallet_item_ui(ui, w, current, cb);
ui.add_space(6.0);
}
});
});
}
/// Draw wallet list item.
fn wallet_item_ui(
&mut self,
ui: &mut egui::Ui,
wallet: &Wallet,
current: bool,
cb: &dyn PlatformCallbacks,
) {
let config = wallet.get_config();
let can_open = !wallet.is_open() && !wallet.files_moving();
// Draw round background.
let mut rect = ui.available_rect_before_wrap();
rect.set_height(78.0);
let r = View::item_rounding(0, 1, false);
let bg = if current {
Colors::fill_deep()
} else {
Colors::fill()
};
let mut bg_shape = RectShape::new(rect, r, bg, View::item_stroke(), StrokeKind::Outside);
let bg_idx = ui.painter().add(bg_shape.clone());
let res = ui
.scope_builder(
UiBuilder::new()
.sense(Sense::click())
.layout(Layout::right_to_left(Align::Center))
.max_rect(rect),
|ui| {
if can_open {
if !wallet.is_repairing() {
View::item_button(
ui,
View::item_rounding(0, 1, true),
GEAR_FINE,
None,
|| {
self.select_wallet(wallet, None, cb);
let conn = wallet.get_current_connection();
self.wallet_settings_content = WalletSettingsModal::new(conn);
// Show connection selection modal.
Modal::new(WALLET_SETTINGS_MODAL)
.position(ModalPosition::CenterTop)
.title(t!("wallets.settings"))
.show();
},
);
}
} else if !wallet.is_closing() {
// Show button to close opened wallet.
View::item_button(
ui,
View::item_rounding(0, 1, true),
LOCK_KEY,
None,
|| {
wallet.close();
},
);
}
let layout_size = ui.available_size();
ui.allocate_ui_with_layout(
layout_size,
Layout::left_to_right(Align::Center),
|ui| {
ui.add_space(6.0);
ui.vertical(|ui| {
ui.add_space(3.0);
// Show wallet name text.
let name_color = if current {
Colors::white_or_black(true)
} else {
Colors::title(false)
};
ui.with_layout(Layout::left_to_right(Align::Min), |ui| {
ui.add_space(1.0);
View::ellipsize_text(ui, config.name, 18.0, name_color);
});
// Show wallet status text.
let status_text = wallet_status_text(wallet);
View::ellipsize_text(ui, status_text, 15.0, Colors::text(false));
ui.add_space(1.0);
// Show wallet connection text.
let connection = wallet.get_current_connection();
let conn_text = match connection {
ConnectionMethod::Integrated => {
format!("{} {}", COMPUTER_TOWER, t!("network.node"))
}
ConnectionMethod::External(_, url) => {
format!("{} {}", GLOBE_SIMPLE, url)
}
};
View::ellipsize_text(ui, conn_text, 15.0, Colors::gray());
ui.add_space(3.0);
});
},
);
},
)
.response;
let clicked = res.clicked() || res.long_touched();
// Setup background and cursor.
if res.hovered() && (can_open || !current) {
res.on_hover_cursor(CursorIcon::PointingHand);
bg_shape.fill = Colors::fill_deep();
}
ui.painter().set(bg_idx, bg_shape);
// Handle clicks on layout.
if clicked {
if can_open {
// Show modal to open the wallet.
self.show_opening_modal(wallet, None, cb);
} else if !current {
// Select opened wallet.
self.select_wallet(wallet, None, cb);
}
}
}
/// Draw update information content.
fn update_info_ui(&mut self, ui: &mut egui::Ui) {
if self.update_info.1.is_none() {
return;
}
let update = self.update_info.1.as_ref().unwrap();
ui.add_space(-4.0);
let mut rect = ui.available_rect_before_wrap();
rect.set_height(78.0);
let r = View::item_rounding(0, 1, false);
ui.painter().rect(
rect,
r,
Colors::fill(),
View::item_stroke(),
StrokeKind::Outside,
);
ui.allocate_ui_with_layout(rect.size(), Layout::right_to_left(Align::Center), |ui| {
// Show button to download the update.
let mut link_clicked = false;
View::item_button(
ui,
View::item_rounding(0, 1, true),
CLOUD_ARROW_DOWN,
None,
|| {
link_clicked = true;
},
);
if link_clicked {
ui.ctx().open_url(OpenUrl {
url: update.url.clone(),
new_tab: true,
});
}
// Show button to see update information.
View::item_button(ui, CornerRadius::default(), NOTEPAD, None, || {
self.changelog_content = Some(ChangelogContent::new(update.changelog.clone()));
let title = format!("Grim {}", update.version);
Modal::new(ChangelogContent::MODAL_ID)
.position(ModalPosition::Center)
.title(title)
.show();
});
let layout_size = ui.available_size();
ui.allocate_ui_with_layout(layout_size, Layout::left_to_right(Align::Center), |ui| {
ui.add_space(6.0);
ui.vertical(|ui| {
ui.add_space(3.0);
ui.with_layout(Layout::left_to_right(Align::Min), |ui| {
ui.add_space(1.0);
let update_text = "Update is available!";
View::ellipsize_text(ui, update_text, 18.0, Colors::green());
});
// Show version info.
let ver_text = if let Some(size) = update.size.as_ref() {
format!("{} {} ({} MB)", BOOKMARKS, update.version, size)
} else {
format!("{} {} > {}", BOOKMARKS, crate::VERSION, update.version)
};
View::ellipsize_text(ui, ver_text, 15.0, Colors::text(false));
ui.add_space(1.0);
// Show update date.
let date_text = format!("{} {}", CALENDAR_CHECK, update.date);
View::ellipsize_text(ui, date_text, 15.0, Colors::gray());
ui.add_space(3.0);
});
});
});
ui.add_space(12.0);
View::horizontal_line(ui, Colors::stroke());
ui.add_space(12.0);
}
/// Show [`Modal`] to select and open wallet.
fn show_opening_modal(&mut self, w: &Wallet, data: Option<String>, cb: &dyn PlatformCallbacks) {
self.select_wallet(w, data, cb);
self.open_wallet_content = OpenWalletModal::new();
Modal::new(OPEN_WALLET_MODAL)
.position(ModalPosition::CenterTop)
.title(t!("wallets.open"))
.show();
}
/// Select wallet to make some actions on it.
fn select_wallet(&mut self, w: &Wallet, data: Option<String>, cb: &dyn PlatformCallbacks) {
self.wallet_content.back(cb);
if let Some(data) = data {
w.task(WalletTask::OpenMessage(data));
}
self.wallets.select(Some(w.get_config().id));
}
}
/// Check if it's possible to show [`WalletsContent`] and [`WalletContent`] panels at same time.
fn is_dual_panel_mode(ui: &mut egui::Ui) -> bool {
let dual_panel_root = Content::is_dual_panel_mode(ui.ctx());
let max_width = ui.available_width();
dual_panel_root && max_width >= (Content::SIDE_PANEL_WIDTH * 2.0) + View::get_right_inset()
}