Compare commits

..

No commits in common. "7939c9e7b68d5a3ed437d179cfc4d2d7b5cb2eaf" and "1a5c245250ed0e9c3c54b879853d0ee74abb403a" have entirely different histories.

2 changed files with 6 additions and 29 deletions

View file

@ -8,7 +8,9 @@ use crate::models::item::Item;
use std::collections::HashMap;
use std::sync::Arc;
use wasm_bindgen::JsCast;
use web_sys::window;
use urlencoding::encode;
use gloo_net::http::Request;
use serde_json::Value;
#[derive(Deserialize, Clone, Debug)]
struct WikidataSuggestion {
@ -50,16 +52,8 @@ pub fn ItemsList(
// Signal to store the fetched property labels
let (property_labels, set_property_labels) = create_signal(HashMap::<String, String>::new());
fn get_current_url() -> String {
window()
.and_then(|win| win.location().href().ok())
.unwrap_or_else(|| "".to_string())
}
let current_url = get_current_url();
spawn_local(async move {
match load_items_from_db(&current_url).await {
match load_items_from_db().await {
Ok(loaded_items) => {
// Set the loaded items
if loaded_items.is_empty() {
@ -178,8 +172,8 @@ pub fn ItemsList(
}
//function to load items from database
async fn load_items_from_db(url: &str) -> Result<Vec<Item>, String> {
let response = gloo_net::http::Request::get("/api/items?url={}")
async fn load_items_from_db() -> Result<Vec<Item>, String> {
let response = gloo_net::http::Request::get("/api/items")
.send()
.await
.map_err(|err| format!("Failed to fetch items: {:?}", err))?;

View file

@ -1,6 +1,4 @@
#[cfg(feature = "ssr")]
use actix_web::{web, HttpResponse};
#[actix_web::main]
async fn main() -> std::io::Result<()> {
use actix_files::Files;
@ -57,26 +55,11 @@ async fn main() -> std::io::Result<()> {
//.wrap(middleware::Compress::default())
// Pass the database as shared state
.app_data(web::Data::new(db))
// Register URL routing
.service(web::resource("/").route(web::get().to(index)))
.service(web::resource("/{url}").route(web::get().to(url_handler)))
})
.bind(&addr)?
.run()
.await
}
#[cfg(feature = "ssr")]
// Define the index handler
async fn index() -> HttpResponse {
HttpResponse::Ok().body("Welcome to CompareWare!")
}
#[cfg(feature = "ssr")]
// Define the URL handler
async fn url_handler(url: web::Path<String>) -> HttpResponse {
let url = url.into_inner();
// TO DO: Implement URL-based content storage and editing functionality
HttpResponse::Ok().body(format!("You are viewing the content at {}", url))
}
#[cfg(feature = "ssr")]
#[actix_web::get("favicon.ico")]