2024-04-07 21:31:08 +02:00
|
|
|
// Prevents additional console window on Windows in release, DO NOT REMOVE!!
|
|
|
|
#![cfg_attr(not(debug_assertions), windows_subsystem = "windows")]
|
|
|
|
|
|
|
|
use libsnotes::show_notes;
|
|
|
|
|
|
|
|
// Learn more about Tauri commands at https://tauri.app/v1/guides/features/command
|
|
|
|
#[tauri::command]
|
|
|
|
fn greet(name: &str) -> String {
|
|
|
|
format!("Hello, {}! You've been greeted from Rust!", name)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[tauri::command]
|
|
|
|
fn get_notes_list() -> String {
|
|
|
|
let notes = show_notes(false, &String::new()).unwrap();
|
|
|
|
format!("{}", notes)
|
|
|
|
}
|
|
|
|
|
2024-04-09 19:54:49 +02:00
|
|
|
#[tauri::command]
|
|
|
|
fn create_note(content: &str, tag: &str) -> bool {
|
|
|
|
println!("reached");
|
|
|
|
libsnotes::create_note(&content.to_string(), &tag.to_string()).unwrap();
|
|
|
|
|
|
|
|
true
|
|
|
|
}
|
|
|
|
|
2024-04-07 21:31:08 +02:00
|
|
|
fn main() {
|
|
|
|
tauri::Builder::default()
|
2024-04-09 19:54:49 +02:00
|
|
|
.invoke_handler(tauri::generate_handler![greet, get_notes_list, create_note])
|
2024-04-07 21:31:08 +02:00
|
|
|
.run(tauri::generate_context!())
|
|
|
|
.expect("error while running tauri application");
|
|
|
|
}
|