mirror of
https://github.com/zaphar/kitchen.git
synced 2025-07-24 19:59:50 -04:00
250 lines
8.7 KiB
Rust
250 lines
8.7 KiB
Rust
// Copyright 2022 Jeremy Wall
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
use std::collections::{BTreeMap, BTreeSet};
|
|
|
|
use crate::{console_debug, console_error, console_log};
|
|
|
|
use reqwasm::http;
|
|
use sycamore::prelude::*;
|
|
use web_sys::{window, Storage};
|
|
|
|
use recipes::{parse, Ingredient, IngredientAccumulator, Recipe};
|
|
|
|
#[derive(Clone)]
|
|
pub struct AppService {
|
|
recipes: Signal<Vec<(usize, Signal<Recipe>)>>,
|
|
staples: Signal<Option<Recipe>>,
|
|
category_map: Signal<BTreeMap<String, String>>,
|
|
menu_list: Signal<BTreeMap<usize, usize>>,
|
|
}
|
|
|
|
impl AppService {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
recipes: Signal::new(Vec::new()),
|
|
staples: Signal::new(None),
|
|
category_map: Signal::new(BTreeMap::new()),
|
|
menu_list: Signal::new(BTreeMap::new()),
|
|
}
|
|
}
|
|
|
|
fn get_storage() -> Result<Option<Storage>, String> {
|
|
window()
|
|
.unwrap()
|
|
.local_storage()
|
|
.map_err(|e| format!("{:?}", e))
|
|
}
|
|
|
|
async fn fetch_recipes_http() -> Result<String, String> {
|
|
let resp = match http::Request::get("/api/v1/recipes").send().await {
|
|
Ok(resp) => resp,
|
|
Err(e) => return Err(format!("Error: {}", e)),
|
|
};
|
|
if resp.status() != 200 {
|
|
return Err(format!("Status: {}", resp.status()));
|
|
} else {
|
|
console_debug!("We got a valid response back!");
|
|
return Ok(resp.text().await.map_err(|e| format!("{}", e))?);
|
|
}
|
|
}
|
|
|
|
async fn fetch_categories_http() -> Result<Option<String>, String> {
|
|
let resp = match http::Request::get("/api/v1/categories").send().await {
|
|
Ok(resp) => resp,
|
|
Err(e) => return Err(format!("Error: {}", e)),
|
|
};
|
|
if resp.status() == 404 {
|
|
console_debug!("Categories returned 404");
|
|
return Ok(None);
|
|
} else if resp.status() != 200 {
|
|
return Err(format!("Status: {}", resp.status()));
|
|
} else {
|
|
console_debug!("We got a valid response back!");
|
|
return Ok(Some(resp.text().await.map_err(|e| format!("{}", e))?));
|
|
}
|
|
}
|
|
|
|
async fn synchronize() -> Result<(), String> {
|
|
console_log!("Synchronizing Recipes");
|
|
let storage = Self::get_storage()?.unwrap();
|
|
let recipes = Self::fetch_recipes_http().await?;
|
|
storage
|
|
.set_item("recipes", &recipes)
|
|
.map_err(|e| format!("{:?}", e))?;
|
|
console_log!("Synchronizing categories");
|
|
match Self::fetch_categories_http().await {
|
|
Ok(Some(categories_content)) => {
|
|
console_debug!("categories: {}", categories_content);
|
|
storage
|
|
.set_item("categories", &categories_content)
|
|
.map_err(|e| format!("{:?}", e))?;
|
|
}
|
|
Ok(None) => {
|
|
console_error!("There is no category file");
|
|
}
|
|
Err(e) => {
|
|
console_error!("{}", e);
|
|
}
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn fetch_categories_from_storage() -> Result<Option<BTreeMap<String, String>>, String> {
|
|
let storage = Self::get_storage()?.unwrap();
|
|
match storage
|
|
.get_item("categories")
|
|
.map_err(|e| format!("{:?}", e))?
|
|
{
|
|
Some(s) => {
|
|
let parsed = serde_json::from_str::<String>(&s).map_err(|e| format!("{}", e))?;
|
|
match parse::as_categories(&parsed) {
|
|
Ok(categories) => Ok(Some(categories)),
|
|
Err(e) => {
|
|
console_debug!("Error parsing categories {}", e);
|
|
Err(format!("Error parsing categories {}", e))
|
|
}
|
|
}
|
|
}
|
|
None => Ok(None),
|
|
}
|
|
}
|
|
|
|
pub fn fetch_recipes_from_storage(
|
|
) -> Result<(Option<Recipe>, Option<Vec<(usize, Recipe)>>), String> {
|
|
let storage = Self::get_storage()?.unwrap();
|
|
let mut staples = None;
|
|
match storage
|
|
.get_item("recipes")
|
|
.map_err(|e| format!("{:?}", e))?
|
|
{
|
|
Some(s) => {
|
|
let parsed =
|
|
serde_json::from_str::<Vec<String>>(&s).map_err(|e| format!("{}", e))?;
|
|
let mut parsed_list = Vec::new();
|
|
for r in parsed {
|
|
let recipe = match parse::as_recipe(&r) {
|
|
Ok(r) => r,
|
|
Err(e) => {
|
|
console_error!("Error parsing recipe {}", e);
|
|
continue;
|
|
}
|
|
};
|
|
//console_debug!("We parsed a recipe {}", recipe.title);
|
|
if recipe.title == "Staples" {
|
|
staples = Some(recipe);
|
|
} else {
|
|
parsed_list.push(recipe);
|
|
}
|
|
}
|
|
Ok((staples, Some(parsed_list.drain(0..).enumerate().collect())))
|
|
}
|
|
None => Ok((None, None)),
|
|
}
|
|
}
|
|
|
|
async fn fetch_recipes() -> Result<(Option<Recipe>, Option<Vec<(usize, Recipe)>>), String> {
|
|
Ok(Self::fetch_recipes_from_storage()?)
|
|
}
|
|
|
|
async fn fetch_categories() -> Result<Option<BTreeMap<String, String>>, String> {
|
|
Ok(Self::fetch_categories_from_storage()?)
|
|
}
|
|
|
|
pub async fn refresh(&mut self) -> Result<(), String> {
|
|
Self::synchronize().await?;
|
|
console_debug!("refreshing recipes");
|
|
if let (staples, Some(r)) = Self::fetch_recipes().await? {
|
|
self.set_recipes(r);
|
|
self.staples.set(staples);
|
|
}
|
|
console_debug!("refreshing categories");
|
|
if let Some(categories) = Self::fetch_categories().await? {
|
|
self.set_categories(categories);
|
|
}
|
|
Ok(())
|
|
}
|
|
|
|
pub fn get_recipe_by_index(&self, idx: usize) -> Option<Signal<Recipe>> {
|
|
self.recipes.get().get(idx).map(|(_, r)| r.clone())
|
|
}
|
|
|
|
pub fn get_shopping_list(&self) -> BTreeMap<String, Vec<(Ingredient, BTreeSet<String>)>> {
|
|
let mut acc = IngredientAccumulator::new();
|
|
let recipe_counts = self.menu_list.get();
|
|
for (idx, count) in recipe_counts.iter() {
|
|
for _ in 0..*count {
|
|
acc.accumulate_from(self.get_recipe_by_index(*idx).unwrap().get().as_ref());
|
|
}
|
|
}
|
|
if let Some(staples) = self.staples.get().as_ref() {
|
|
acc.accumulate_from(staples);
|
|
}
|
|
let mut ingredients = acc.ingredients();
|
|
let mut groups = BTreeMap::new();
|
|
let cat_map = self.category_map.get().clone();
|
|
for (_, (i, recipes)) in ingredients.iter_mut() {
|
|
let category = if let Some(cat) = cat_map.get(&i.name) {
|
|
cat.clone()
|
|
} else {
|
|
"other".to_owned()
|
|
};
|
|
i.category = category.clone();
|
|
groups
|
|
.entry(category)
|
|
.or_insert(vec![])
|
|
.push((i.clone(), recipes.clone()));
|
|
}
|
|
console_debug!("Category map {:?}", self.category_map);
|
|
// FIXM(jwall): Sort by categories and names.
|
|
groups
|
|
}
|
|
|
|
pub fn set_recipe_count_by_index(&mut self, i: usize, count: usize) {
|
|
let mut v = (*self.menu_list.get()).clone();
|
|
v.insert(i, count);
|
|
self.menu_list.set(v);
|
|
}
|
|
|
|
pub fn get_recipe_count_by_index(&self, i: usize) -> usize {
|
|
self.menu_list.get().get(&i).map(|i| *i).unwrap_or_default()
|
|
}
|
|
|
|
pub fn get_recipes(&self) -> Signal<Vec<(usize, Signal<Recipe>)>> {
|
|
self.recipes.clone()
|
|
}
|
|
|
|
pub fn get_menu_list(&self) -> Vec<(usize, usize)> {
|
|
self.menu_list
|
|
.get()
|
|
.iter()
|
|
// We exclude recipes in the menu_list with count 0
|
|
.filter(|&(_, count)| *count != 0)
|
|
.map(|(idx, count)| (*idx, *count))
|
|
.collect()
|
|
}
|
|
|
|
pub fn set_recipes(&mut self, mut recipes: Vec<(usize, Recipe)>) {
|
|
self.recipes.set(
|
|
recipes
|
|
.drain(0..)
|
|
.map(|(i, r)| (i, Signal::new(r)))
|
|
.collect(),
|
|
);
|
|
}
|
|
|
|
pub fn set_categories(&mut self, categories: BTreeMap<String, String>) {
|
|
self.category_map.set(categories);
|
|
}
|
|
}
|