mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-03-31 16:45:27 +00:00
187 lines
5 KiB
Rust
187 lines
5 KiB
Rust
mod content;
|
|
mod database;
|
|
mod error;
|
|
mod input;
|
|
mod navigation;
|
|
mod search;
|
|
mod widget;
|
|
|
|
use super::{Action as ItemAction, BrowserAction, Profile, TabAction, WindowAction};
|
|
use content::Content;
|
|
use error::Error;
|
|
use input::Input;
|
|
use navigation::Navigation;
|
|
use search::Search;
|
|
use sqlite::Transaction;
|
|
use std::rc::Rc;
|
|
use widget::Widget;
|
|
|
|
pub struct Page {
|
|
pub profile: Rc<Profile>,
|
|
// Actions
|
|
pub browser_action: Rc<BrowserAction>,
|
|
pub item_action: Rc<ItemAction>,
|
|
pub window_action: Rc<WindowAction>,
|
|
// Components
|
|
pub content: Rc<Content>,
|
|
pub search: Rc<Search>,
|
|
pub input: Rc<Input>,
|
|
pub navigation: Rc<Navigation>,
|
|
pub widget: Rc<Widget>,
|
|
}
|
|
|
|
impl Page {
|
|
// Constructors
|
|
|
|
pub fn build(
|
|
profile: &Rc<Profile>,
|
|
(browser_action, window_action, tab_action, item_action): (
|
|
&Rc<BrowserAction>,
|
|
&Rc<WindowAction>,
|
|
&Rc<TabAction>,
|
|
&Rc<ItemAction>,
|
|
),
|
|
) -> Self {
|
|
// Init components
|
|
let content = Rc::new(Content::build((window_action, item_action)));
|
|
|
|
let search = Rc::new(Search::new());
|
|
|
|
let navigation = Rc::new(Navigation::build(
|
|
profile,
|
|
(window_action, tab_action, item_action),
|
|
));
|
|
|
|
let input = Rc::new(Input::new());
|
|
|
|
let widget = Rc::new(Widget::build(
|
|
&navigation.g_box,
|
|
&content.g_box,
|
|
&search.g_box,
|
|
&input.clamp,
|
|
));
|
|
|
|
// Done
|
|
Self {
|
|
profile: profile.clone(),
|
|
// Actions
|
|
browser_action: browser_action.clone(),
|
|
item_action: item_action.clone(),
|
|
window_action: window_action.clone(),
|
|
// Components
|
|
content,
|
|
search,
|
|
input,
|
|
navigation,
|
|
widget,
|
|
}
|
|
}
|
|
|
|
// Actions
|
|
|
|
/// Toggle bookmark for current `profile` by navigation request value
|
|
/// * return `true` on bookmark created, `false` on deleted
|
|
pub fn bookmark(&self) -> Result<bool, Error> {
|
|
let result = match self
|
|
.profile
|
|
.bookmark
|
|
.toggle(self.navigation.request().as_str())
|
|
{
|
|
Ok(result) => Ok(result),
|
|
Err(_) => Err(Error::Bookmark), // @TODO
|
|
};
|
|
result
|
|
}
|
|
|
|
/// Request `Escape` action for all page components
|
|
pub fn escape(&self) {
|
|
self.search.hide()
|
|
}
|
|
|
|
/// Toggle `Find` widget
|
|
pub fn find(&self) {
|
|
self.search.show()
|
|
}
|
|
|
|
/// Cleanup session for `Self`
|
|
pub fn clean(
|
|
&self,
|
|
transaction: &Transaction,
|
|
app_browser_window_tab_item_id: i64,
|
|
) -> Result<(), String> {
|
|
match database::select(transaction, app_browser_window_tab_item_id) {
|
|
Ok(records) => {
|
|
for record in records {
|
|
match database::delete(transaction, record.id) {
|
|
Ok(_) => {
|
|
// Delegate clean action to the item childs
|
|
self.navigation.clean(transaction, &record.id)?;
|
|
}
|
|
Err(e) => return Err(e.to_string()),
|
|
}
|
|
}
|
|
}
|
|
Err(e) => return Err(e.to_string()),
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// Restore `Self` session from database
|
|
pub fn restore(
|
|
&self,
|
|
transaction: &Transaction,
|
|
app_browser_window_tab_item_id: i64,
|
|
) -> Result<(), String> {
|
|
// Begin page restore
|
|
match database::select(transaction, app_browser_window_tab_item_id) {
|
|
Ok(records) => {
|
|
for record in records {
|
|
// Restore self by last record
|
|
// Delegate restore action to the item childs
|
|
self.navigation.restore(transaction, &record.id)?;
|
|
// Make initial page history snap using `navigation` values restored
|
|
// * just to have back/forward navigation ability
|
|
if let Some(uri) = self.navigation.uri() {
|
|
self.profile.history.memory.request.set(uri);
|
|
}
|
|
}
|
|
}
|
|
Err(e) => return Err(e.to_string()),
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
/// Save `Self` session to database
|
|
pub fn save(
|
|
&self,
|
|
transaction: &Transaction,
|
|
app_browser_window_tab_item_id: i64,
|
|
) -> Result<(), String> {
|
|
match database::insert(transaction, app_browser_window_tab_item_id) {
|
|
Ok(_) => {
|
|
let id = database::last_insert_id(transaction);
|
|
|
|
// Delegate save action to childs
|
|
self.navigation.save(transaction, &id)?;
|
|
}
|
|
Err(e) => return Err(e.to_string()),
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
// Tools
|
|
|
|
pub fn migrate(tx: &Transaction) -> Result<(), String> {
|
|
// Migrate self components
|
|
if let Err(e) = database::init(tx) {
|
|
return Err(e.to_string());
|
|
}
|
|
|
|
// Delegate migration to childs
|
|
navigation::migrate(tx)?;
|
|
|
|
// Success
|
|
Ok(())
|
|
}
|