-
Notifications
You must be signed in to change notification settings - Fork 584
Expand file tree
/
Copy pathext.rs
More file actions
114 lines (98 loc) · 3.98 KB
/
ext.rs
File metadata and controls
114 lines (98 loc) · 3.98 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
use crate::StoreKey;
use tauri_plugin_store2::{ScopedStore, Store2PluginExt};
pub trait AppExt<R: tauri::Runtime> {
fn desktop_store(&self) -> Result<ScopedStore<R, crate::StoreKey>, String>;
fn get_onboarding_needed(&self) -> Result<bool, String>;
fn set_onboarding_needed(&self, v: bool) -> Result<(), String>;
fn get_dismissed_toasts(&self) -> Result<Vec<String>, String>;
fn set_dismissed_toasts(&self, v: Vec<String>) -> Result<(), String>;
fn get_tinybase_values(&self) -> Result<Option<String>, String>;
fn set_tinybase_values(&self, v: String) -> Result<(), String>;
fn get_pinned_tabs(&self) -> Result<Option<String>, String>;
fn set_pinned_tabs(&self, v: String) -> Result<(), String>;
fn get_recently_opened_sessions(&self) -> Result<Option<String>, String>;
fn set_recently_opened_sessions(&self, v: String) -> Result<(), String>;
}
impl<R: tauri::Runtime, T: tauri::Manager<R>> AppExt<R> for T {
#[tracing::instrument(skip_all)]
fn desktop_store(&self) -> Result<ScopedStore<R, crate::StoreKey>, String> {
self.store2()
.scoped_store("desktop")
.map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn get_onboarding_needed(&self) -> Result<bool, String> {
let store = self.desktop_store()?;
store
.get(StoreKey::OnboardingNeeded2)
.map(|opt| opt.unwrap_or(true))
.map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn set_onboarding_needed(&self, v: bool) -> Result<(), String> {
let store = self.desktop_store()?;
store
.set(StoreKey::OnboardingNeeded2, v)
.map_err(|e| e.to_string())?;
store.save().map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn get_dismissed_toasts(&self) -> Result<Vec<String>, String> {
let store = self.desktop_store()?;
store
.get(StoreKey::DismissedToasts)
.map(|opt| opt.unwrap_or_default())
.map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn set_dismissed_toasts(&self, v: Vec<String>) -> Result<(), String> {
let store = self.desktop_store()?;
store
.set(StoreKey::DismissedToasts, v)
.map_err(|e| e.to_string())?;
store.save().map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn get_tinybase_values(&self) -> Result<Option<String>, String> {
let store = self.desktop_store()?;
store
.get(StoreKey::TinybaseValues)
.map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn set_tinybase_values(&self, v: String) -> Result<(), String> {
let store = self.desktop_store()?;
store
.set(StoreKey::TinybaseValues, v)
.map_err(|e| e.to_string())?;
store.save().map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn get_pinned_tabs(&self) -> Result<Option<String>, String> {
let store = self.desktop_store()?;
store.get(StoreKey::PinnedTabs).map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn set_pinned_tabs(&self, v: String) -> Result<(), String> {
let store = self.desktop_store()?;
store
.set(StoreKey::PinnedTabs, v)
.map_err(|e| e.to_string())?;
store.save().map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn get_recently_opened_sessions(&self) -> Result<Option<String>, String> {
let store = self.desktop_store()?;
store
.get(StoreKey::RecentlyOpenedSessions)
.map_err(|e| e.to_string())
}
#[tracing::instrument(skip_all)]
fn set_recently_opened_sessions(&self, v: String) -> Result<(), String> {
let store = self.desktop_store()?;
store
.set(StoreKey::RecentlyOpenedSessions, v)
.map_err(|e| e.to_string())?;
store.save().map_err(|e| e.to_string())
}
}