Add api to manage sorting presets
Signed-off-by: trivernis <trivernis@protonmail.com>pull/12/head
parent
78a5780ff1
commit
d22c7499f7
@ -0,0 +1,54 @@
|
||||
use std::time::Duration;
|
||||
use bromine::prelude::*;
|
||||
use crate::client_api::error::ApiResult;
|
||||
use crate::types::filtering::{SortingPreset, SortKey};
|
||||
use super::IPCApi;
|
||||
|
||||
#[derive(Clone)]
|
||||
pub struct PresetApi {
|
||||
ctx: PooledContext,
|
||||
}
|
||||
|
||||
impl IPCApi for PresetApi {
|
||||
fn namespace() -> &'static str {
|
||||
"presets"
|
||||
}
|
||||
|
||||
fn ctx(&self) -> PoolGuard<Context> {
|
||||
self.ctx.acquire()
|
||||
}
|
||||
}
|
||||
|
||||
impl PresetApi {
|
||||
pub fn new(ctx: PooledContext) -> Self {
|
||||
Self { ctx }
|
||||
}
|
||||
|
||||
/// Returns all sorting presets of the repository
|
||||
#[tracing::instrument(level = "debug", skip(self))]
|
||||
pub async fn all_sorting_presets(&self) -> ApiResult<Vec<SortingPreset>> {
|
||||
self.emit_and_get(
|
||||
"sorting_presets",
|
||||
(),
|
||||
Some(Duration::from_secs(1))
|
||||
)
|
||||
.await
|
||||
}
|
||||
|
||||
/// Adds a new sorting preset with the given keys
|
||||
#[tracing::instrument(level = "debug", skip(self))]
|
||||
pub async fn add_sorting_preset(&self, keys: Vec<SortKey>) -> ApiResult<SortingPreset> {
|
||||
self.emit_and_get(
|
||||
"add_sorting_preset",
|
||||
keys,
|
||||
Some(Duration::from_secs(1))
|
||||
)
|
||||
.await
|
||||
}
|
||||
|
||||
/// Deletes a given sorting preset by id
|
||||
#[tracing::instrument(level = "debug", skip(self))]
|
||||
pub async fn delete_sorting_preset(&self, id: i32) -> ApiResult<()> {
|
||||
self.emit_and_get("delete_sorting_preset", id, Some(Duration::from_secs(1))).await
|
||||
}
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
use crate::tauri_plugin::commands::ApiAccess;
|
||||
use crate::tauri_plugin::error::PluginResult;
|
||||
use crate::types::filtering::{SortingPreset, SortKey};
|
||||
|
||||
#[tauri::command]
|
||||
pub async fn all_sorting_presets(api_state: ApiAccess<'_>) -> PluginResult<Vec<SortingPreset>> {
|
||||
let api = api_state.api().await?;
|
||||
let presets = api.preset.all_sorting_presets().await?;
|
||||
|
||||
Ok(presets)
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
pub async fn add_sorting_preset(api_state: ApiAccess<'_>, sort_keys: Vec<SortKey>) -> PluginResult<SortingPreset> {
|
||||
let api = api_state.api().await?;
|
||||
let preset = api.preset.add_sorting_preset(sort_keys).await?;
|
||||
|
||||
Ok(preset)
|
||||
}
|
||||
|
||||
#[tauri::command]
|
||||
pub async fn delete_sorting_preset(api_state: ApiAccess<'_>, id: i32) -> PluginResult<()> {
|
||||
let api = api_state.api().await?;
|
||||
api.preset.delete_sorting_preset(id).await?;
|
||||
|
||||
Ok(())
|
||||
}
|
Loading…
Reference in New Issue