propagated use of config home path to other systems. file loading now works using rust instead of js
This commit is contained in:
parent
62918416ee
commit
11bd003298
11 changed files with 1007 additions and 1000 deletions
1460
src-tauri/Cargo.lock
generated
1460
src-tauri/Cargo.lock
generated
File diff suppressed because it is too large
Load diff
|
|
@ -21,6 +21,7 @@ tauri-build = { version = "2", features = [] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
tauri = { version = "2", features = ["protocol-asset", "unstable"] }
|
tauri = { version = "2", features = ["protocol-asset", "unstable"] }
|
||||||
|
|
||||||
tauri-plugin-shell = "2"
|
tauri-plugin-shell = "2"
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { version = "1", features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = "1"
|
||||||
|
|
|
||||||
|
|
@ -6,13 +6,17 @@ use std::{
|
||||||
|
|
||||||
use sqlx::{migrate::MigrateDatabase, Sqlite, SqlitePool};
|
use sqlx::{migrate::MigrateDatabase, Sqlite, SqlitePool};
|
||||||
use tauri::{ipc::RuntimeCapability, App, AssetResolver, Manager, Url};
|
use tauri::{ipc::RuntimeCapability, App, AssetResolver, Manager, Url};
|
||||||
|
use crate::get_basepath;
|
||||||
async fn populate_file_db(db: &SqlitePool) {}
|
async fn populate_file_db(db: &SqlitePool) {}
|
||||||
|
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub async fn initialize_database(
|
pub async fn initialize_database(
|
||||||
app_handle: tauri::AppHandle,
|
app_handle: tauri::AppHandle,
|
||||||
basepath: String,
|
basepath: String,
|
||||||
pathtemplate: String,
|
pathtemplate: String,
|
||||||
) {
|
) {
|
||||||
|
|
||||||
|
if let Some(basepath) = get_basepath(app_handle.clone()) {
|
||||||
let db_path = Path::new("Documents")
|
let db_path = Path::new("Documents")
|
||||||
.join(Path::new("Knowledgebase"))
|
.join(Path::new("Knowledgebase"))
|
||||||
.join("db.sqlite");
|
.join("db.sqlite");
|
||||||
|
|
@ -62,6 +66,9 @@ pub async fn initialize_database(
|
||||||
.await
|
.await
|
||||||
.unwrap();
|
.unwrap();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
async fn store_diff(diff: String) {}
|
async fn store_diff(diff: String) {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
||||||
19
src-tauri/src/file_handler.rs
Normal file
19
src-tauri/src/file_handler.rs
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
|
||||||
|
use tauri::{ipc::RuntimeCapability, App, AssetResolver, Manager, Url};
|
||||||
|
use std::fs::{read_to_string};
|
||||||
|
use std::path::Path;
|
||||||
|
use crate::get_basepath;
|
||||||
|
#[tauri::command]
|
||||||
|
pub async fn save(
|
||||||
|
app_handle: tauri::AppHandle,
|
||||||
|
|
||||||
|
path: String, content: String) {}
|
||||||
|
|
||||||
|
|
||||||
|
#[tauri::command]
|
||||||
|
pub async fn load(
|
||||||
|
path: String) -> Result<String, String> {
|
||||||
|
println!("loading file");
|
||||||
|
|
||||||
|
read_to_string(path).map_err(|e| e.to_string())
|
||||||
|
}
|
||||||
|
|
@ -1,3 +1,4 @@
|
||||||
|
use crate::get_basepath;
|
||||||
use html_tag::HtmlTag;
|
use html_tag::HtmlTag;
|
||||||
use shellexpand;
|
use shellexpand;
|
||||||
use std::{
|
use std::{
|
||||||
|
|
@ -5,11 +6,11 @@ use std::{
|
||||||
path::Path,
|
path::Path,
|
||||||
};
|
};
|
||||||
#[tauri::command]
|
#[tauri::command]
|
||||||
pub fn dir_tree_html(basepath: &str, filter: Vec<String>) -> String {
|
pub fn dir_tree_html(app_handle: tauri::AppHandle, filter: Vec<String>) -> String {
|
||||||
match shellexpand::full(basepath) {
|
if let Some(basepath) = get_basepath(app_handle) {
|
||||||
Ok(path) => add_dir_tree_node(&Path::new(&path.into_owned()), &filter).to_html(),
|
add_dir_tree_node(&Path::new(&basepath), &filter).to_html()
|
||||||
|
} else {
|
||||||
Err(_) => String::new(),
|
String::new()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
fn add_dir_tree_node(path: &Path, filter: &Vec<String>) -> HtmlTag {
|
fn add_dir_tree_node(path: &Path, filter: &Vec<String>) -> HtmlTag {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
mod config;
|
mod config;
|
||||||
mod database;
|
mod database;
|
||||||
mod file_access;
|
mod file_access;
|
||||||
|
mod file_handler;
|
||||||
mod file_tree;
|
mod file_tree;
|
||||||
mod markdown_parser;
|
mod markdown_parser;
|
||||||
mod search;
|
mod search;
|
||||||
|
|
@ -14,7 +15,7 @@ use std::env;
|
||||||
use std::sync::Mutex;
|
use std::sync::Mutex;
|
||||||
use tauri::Manager;
|
use tauri::Manager;
|
||||||
use tauri_plugin_fs::FsExt;
|
use tauri_plugin_fs::FsExt;
|
||||||
|
use file_handler::load;
|
||||||
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
#[cfg_attr(mobile, tauri::mobile_entry_point)]
|
||||||
pub fn run() {
|
pub fn run() {
|
||||||
tauri::Builder::default()
|
tauri::Builder::default()
|
||||||
|
|
@ -40,6 +41,7 @@ pub fn run() {
|
||||||
search_files,
|
search_files,
|
||||||
get_basepath,
|
get_basepath,
|
||||||
set_basepath,
|
set_basepath,
|
||||||
|
load
|
||||||
])
|
])
|
||||||
.run(tauri::generate_context!())
|
.run(tauri::generate_context!())
|
||||||
.expect("error while running tauri application");
|
.expect("error while running tauri application");
|
||||||
|
|
|
||||||
|
|
@ -1,2 +0,0 @@
|
||||||
#[tauri::command]
|
|
||||||
pub async fn save(path: String, content: String) {}
|
|
||||||
|
|
@ -2,30 +2,29 @@ const { convertFileSrc, invoke } = window.__TAURI__.core;
|
||||||
|
|
||||||
import { handle_file_select } from "./filesystem.js";
|
import { handle_file_select } from "./filesystem.js";
|
||||||
var search_input = document.getElementById("file-search-dialog-input");
|
var search_input = document.getElementById("file-search-dialog-input");
|
||||||
search_input.addEventListener('input', () => {
|
search_input.addEventListener("input", () => {
|
||||||
search_files();
|
search_files();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
function search_files() {
|
function search_files() {
|
||||||
var text = search_input.innerText;
|
var text = search_input.innerText;
|
||||||
invoke("search_files", { searchstring: text, basepath: "$HOME/Documents/Knowledgebase", filter: ["md"]}).then(
|
invoke("search_files", {
|
||||||
(ret) => {
|
searchstring: text,
|
||||||
var tag_id = document.getElementById('file-search-results');
|
basepath: "$HOME/Documents/Knowledgebase",
|
||||||
|
filter: ["md"],
|
||||||
|
}).then((ret) => {
|
||||||
|
var tag_id = document.getElementById("file-search-results");
|
||||||
var result_div = "";
|
var result_div = "";
|
||||||
console.log(ret);
|
console.log(ret);
|
||||||
ret.forEach(element => {
|
ret.forEach((element) => {
|
||||||
result_div += element;
|
result_div += element;
|
||||||
});
|
});
|
||||||
console.log(result_div);
|
console.log(result_div);
|
||||||
tag_id.innerHTML = result_div;
|
tag_id.innerHTML = result_div;
|
||||||
// tag_id.innerHTML = assetUrl.concat(" ", ' \n <img src="'.concat("", assetUrl).concat("", '" alt="Girl in a jacket" width="500" height="600">'))
|
});
|
||||||
}
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let filetree = document.getElementById("file-search-results");
|
||||||
let filetree = document.getElementById('file-search-results');
|
|
||||||
// Options for the observer (which mutations to observe)
|
// Options for the observer (which mutations to observe)
|
||||||
const config = { attributes: true, childList: true, subtree: true };
|
const config = { attributes: true, childList: true, subtree: true };
|
||||||
|
|
||||||
|
|
@ -38,8 +37,7 @@ const callback = (mutationList, observer) => {
|
||||||
anchor.onclick = function () {
|
anchor.onclick = function () {
|
||||||
handle_file_select(this.parentElement.id);
|
handle_file_select(this.parentElement.id);
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const observer = new MutationObserver(callback);
|
const observer = new MutationObserver(callback);
|
||||||
|
|
|
||||||
|
|
@ -5,14 +5,12 @@ import { render_markdown } from "./main.js";
|
||||||
var selected_file = "";
|
var selected_file = "";
|
||||||
export function handle_file_select(filename) {
|
export function handle_file_select(filename) {
|
||||||
if (filename.endsWith("md")) {
|
if (filename.endsWith("md")) {
|
||||||
readTextFile(convertFileSrc(filename)).then(
|
invoke("load", { path: filename }).then((ret) => {
|
||||||
(ret) => {
|
var tag_id = document.getElementById("markdown_input");
|
||||||
var tag_id = document.getElementById('markdown_input');
|
|
||||||
tag_id.innerHTML = "<pre>".concat("", ret).concat("", "</pre>");
|
tag_id.innerHTML = "<pre>".concat("", ret).concat("", "</pre>");
|
||||||
render_markdown();
|
render_markdown();
|
||||||
selected_file = filename;
|
selected_file = filename;
|
||||||
}
|
});
|
||||||
);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -20,17 +18,15 @@ export function save_file() {
|
||||||
console.log(selected_file);
|
console.log(selected_file);
|
||||||
}
|
}
|
||||||
document.getElementById("save-file").onclick = function () {
|
document.getElementById("save-file").onclick = function () {
|
||||||
|
|
||||||
save_file();
|
save_file();
|
||||||
}
|
};
|
||||||
function dropdown(id) {
|
function dropdown(id) {
|
||||||
var dropdown_element = document.getElementById(id);
|
var dropdown_element = document.getElementById(id);
|
||||||
var dropdown_children = dropdown_element.children;
|
var dropdown_children = dropdown_element.children;
|
||||||
console.log(dropdown_element.getAttribute("expanded"));
|
console.log(dropdown_element.getAttribute("expanded"));
|
||||||
if (dropdown_element.getAttribute("expanded") == "false") {
|
if (dropdown_element.getAttribute("expanded") == "false") {
|
||||||
dropdown_element.setAttribute("expanded", "true");
|
dropdown_element.setAttribute("expanded", "true");
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
dropdown_element.setAttribute("expanded", "false");
|
dropdown_element.setAttribute("expanded", "false");
|
||||||
}
|
}
|
||||||
for (var i = 0; i < dropdown_children.length; i++) {
|
for (var i = 0; i < dropdown_children.length; i++) {
|
||||||
|
|
@ -46,17 +42,17 @@ function dropdown(id) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
window.onload = function () {
|
window.onload = function () {
|
||||||
invoke("dir_tree_html", { basepath: "~/Documents/Knowledgebase", filter: ["*"] }).then(
|
invoke("dir_tree_html", {
|
||||||
(ret) => {
|
basepath: "~/Documents/Knowledgebase",
|
||||||
var tag_id = document.getElementById('filetree');
|
filter: ["*"],
|
||||||
|
}).then((ret) => {
|
||||||
|
var tag_id = document.getElementById("filetree");
|
||||||
tag_id.innerHTML = ret;
|
tag_id.innerHTML = ret;
|
||||||
}
|
});
|
||||||
)
|
};
|
||||||
}
|
let filetree = document.getElementById("filetree");
|
||||||
let filetree = document.getElementById('filetree');
|
|
||||||
// Options for the observer (which mutations to observe)
|
// Options for the observer (which mutations to observe)
|
||||||
const config = { attributes: true, childList: true, subtree: true };
|
const config = { attributes: true, childList: true, subtree: true };
|
||||||
|
|
||||||
|
|
@ -68,15 +64,14 @@ const callback = (mutationList, observer) => {
|
||||||
anchor.onclick = function () {
|
anchor.onclick = function () {
|
||||||
dropdown(this.parentElement.id);
|
dropdown(this.parentElement.id);
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
var anchors = document.getElementsByClassName("filetree-file-button");
|
var anchors = document.getElementsByClassName("filetree-file-button");
|
||||||
for (var i = 0; i < anchors.length; i++) {
|
for (var i = 0; i < anchors.length; i++) {
|
||||||
var anchor = anchors[i];
|
var anchor = anchors[i];
|
||||||
anchor.onclick = function () {
|
anchor.onclick = function () {
|
||||||
handle_file_select(this.parentElement.id);
|
handle_file_select(this.parentElement.id);
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// Create an observer instance linked to the callback function
|
// Create an observer instance linked to the callback function
|
||||||
|
|
@ -84,4 +79,3 @@ const observer = new MutationObserver(callback);
|
||||||
|
|
||||||
// Start observing the target node for configured mutations
|
// Start observing the target node for configured mutations
|
||||||
observer.observe(filetree, config);
|
observer.observe(filetree, config);
|
||||||
|
|
||||||
|
|
|
||||||
39
src/main.js
39
src/main.js
|
|
@ -5,24 +5,21 @@ let text = "";
|
||||||
let placeholder_path = "FILEPATH";
|
let placeholder_path = "FILEPATH";
|
||||||
let path_template = convertFileSrc(placeholder_path);
|
let path_template = convertFileSrc(placeholder_path);
|
||||||
|
|
||||||
let textarea = document.getElementById('markdown_input');
|
let textarea = document.getElementById("markdown_input");
|
||||||
|
|
||||||
// TODO move to place, where the knowledgebase is created...
|
// TODO move to place, where the knowledgebase is created...
|
||||||
invoke("initialize_database", { basepath: "~/Documents/Knowledgebase", pathtemplate: path_template }).then(
|
invoke("initialize_database", {
|
||||||
(ret) => {
|
basepath: "~/Documents/Knowledgebase",
|
||||||
}
|
pathtemplate: path_template,
|
||||||
);
|
}).then((ret) => {});
|
||||||
invoke("get_basepath").then(
|
invoke("get_basepath").then((ret) => {
|
||||||
(ret) => {
|
|
||||||
if (!ret) {
|
if (!ret) {
|
||||||
const setup_dialog = document.getElementById("setup-dialog");
|
const setup_dialog = document.getElementById("setup-dialog");
|
||||||
setup_dialog.show();
|
setup_dialog.show();
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
console.log(ret);
|
console.log(ret);
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
)
|
|
||||||
|
|
||||||
document.getElementById("knowledgebase-button").onclick = async function () {
|
document.getElementById("knowledgebase-button").onclick = async function () {
|
||||||
const file = await open({
|
const file = await open({
|
||||||
|
|
@ -32,33 +29,31 @@ document.getElementById("knowledgebase-button").onclick = async function () {
|
||||||
|
|
||||||
const path_text = document.getElementById("knowledgebase-path");
|
const path_text = document.getElementById("knowledgebase-path");
|
||||||
path_text.innerText = file;
|
path_text.innerText = file;
|
||||||
invoke("set_basepath", {path: file}).then(
|
invoke("set_basepath", { path: file }).then((ret) => {
|
||||||
(ret) => {
|
|
||||||
if (ret) {
|
if (ret) {
|
||||||
const setup_dialog = document.getElementById("setup-dialog");
|
const setup_dialog = document.getElementById("setup-dialog");
|
||||||
console.log("hiding");
|
console.log("hiding");
|
||||||
setup_dialog.close();
|
setup_dialog.close();
|
||||||
|
location.reload();
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
);
|
|
||||||
console.log(file);
|
console.log(file);
|
||||||
};
|
};
|
||||||
//
|
//
|
||||||
export function render_markdown() {
|
export function render_markdown() {
|
||||||
text = textarea.innerText;
|
text = textarea.innerText;
|
||||||
invoke("parse_markdown", { document: text, pathtemplate: path_template, basepath: "$HOME/Documents/Knowledgebase" }).then(
|
invoke("parse_markdown", {
|
||||||
(ret) => {
|
document: text,
|
||||||
var tag_id = document.getElementById('rendered_markdown');
|
pathtemplate: path_template,
|
||||||
|
}).then((ret) => {
|
||||||
|
var tag_id = document.getElementById("rendered_markdown");
|
||||||
tag_id.innerHTML = "<pre>".concat("", ret).concat("", "</pre>");
|
tag_id.innerHTML = "<pre>".concat("", ret).concat("", "</pre>");
|
||||||
// tag_id.innerHTML = assetUrl.concat(" ", ' \n <img src="'.concat("", assetUrl).concat("", '" alt="Girl in a jacket" width="500" height="600">'))
|
});
|
||||||
}
|
}
|
||||||
);
|
textarea.addEventListener("input", () => {
|
||||||
}
|
|
||||||
textarea.addEventListener('input', () => {
|
|
||||||
render_markdown();
|
render_markdown();
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
// Random tree
|
// Random tree
|
||||||
// const N = 300;
|
// const N = 300;
|
||||||
// const gData = {
|
// const gData = {
|
||||||
|
|
|
||||||
|
|
@ -59,7 +59,7 @@
|
||||||
width: 50%;
|
width: 50%;
|
||||||
padding: 0.5em;
|
padding: 0.5em;
|
||||||
/* margin: .1em; */
|
/* margin: .1em; */
|
||||||
margin-left: .1em;
|
margin-left: 0.1em;
|
||||||
border: solid;
|
border: solid;
|
||||||
border-color: var(--highlight-color);
|
border-color: var(--highlight-color);
|
||||||
/* border-radius: .5em; */
|
/* border-radius: .5em; */
|
||||||
|
|
@ -90,7 +90,6 @@
|
||||||
overflow-y: scroll;
|
overflow-y: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
line-height: 18px;
|
line-height: 18px;
|
||||||
|
|
@ -117,7 +116,6 @@ li {
|
||||||
}
|
}
|
||||||
|
|
||||||
.top-bar {
|
.top-bar {
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: row;
|
flex-direction: row;
|
||||||
}
|
}
|
||||||
|
|
@ -138,10 +136,8 @@ li {
|
||||||
color: #f6f6f6;
|
color: #f6f6f6;
|
||||||
background-color: var(--main-bg-color);
|
background-color: var(--main-bg-color);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.main {
|
.main {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 95vh;
|
height: 95vh;
|
||||||
|
|
@ -182,7 +178,6 @@ li {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
text-overflow: ellipsis;
|
text-overflow: ellipsis;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.filetree-node {
|
.filetree-node {
|
||||||
|
|
@ -196,7 +191,6 @@ li {
|
||||||
margin-right: 5px;
|
margin-right: 5px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
.filetree_expand {
|
.filetree_expand {
|
||||||
background-color: transparent;
|
background-color: transparent;
|
||||||
border: none;
|
border: none;
|
||||||
|
|
@ -216,7 +210,10 @@ dialog {
|
||||||
background-color: var(--highlight-color);
|
background-color: var(--highlight-color);
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 10px;
|
border-radius: 10px;
|
||||||
box-shadow: 0 0 #0000, 0 0 #0000, 0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
box-shadow:
|
||||||
|
0 0 #0000,
|
||||||
|
0 0 #0000,
|
||||||
|
0 25px 50px -12px rgba(0, 0, 0, 0.25);
|
||||||
width: 50%;
|
width: 50%;
|
||||||
height: 20%;
|
height: 20%;
|
||||||
margin: auto;
|
margin: auto;
|
||||||
|
|
@ -224,7 +221,7 @@ dialog {
|
||||||
/* flex-direction: column; */
|
/* flex-direction: column; */
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
font-size: .5cm;
|
font-size: 0.5cm;
|
||||||
}
|
}
|
||||||
|
|
||||||
.row {
|
.row {
|
||||||
|
|
@ -246,7 +243,6 @@ dialog {
|
||||||
}
|
}
|
||||||
|
|
||||||
.button:hover {
|
.button:hover {
|
||||||
|
|
||||||
border: solid;
|
border: solid;
|
||||||
border-color: var(--bright-highlight-color);
|
border-color: var(--bright-highlight-color);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue