From e3c47d73c9674d17661f66d0eb46cb6584200fb1 Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 11 Jun 2019 13:13:54 +0200 Subject: [PATCH] Store wanted items in localStorage. --- src/stores/HuntOptimizerStore.ts | 58 +++++++++++++++++++++++++++++--- 1 file changed, 54 insertions(+), 4 deletions(-) diff --git a/src/stores/HuntOptimizerStore.ts b/src/stores/HuntOptimizerStore.ts index 3d6644da..24843eed 100644 --- a/src/stores/HuntOptimizerStore.ts +++ b/src/stores/HuntOptimizerStore.ts @@ -1,8 +1,10 @@ import solver from 'javascript-lp-solver'; -import { IObservableArray, observable, runInAction } from "mobx"; -import { Difficulties, Difficulty, Item, NpcType, SectionId, SectionIds, KONDRIEU_PROB, RARE_ENEMY_PROB, HuntMethod } from "../domain"; +import { autorun, IObservableArray, observable, runInAction } from "mobx"; +import { Difficulties, Difficulty, HuntMethod, Item, KONDRIEU_PROB, NpcType, RARE_ENEMY_PROB, SectionId, SectionIds } from "../domain"; +import { applicationStore } from './ApplicationStore'; import { huntMethodStore } from "./HuntMethodStore"; import { itemDropStore } from './ItemDropStore'; +import { itemStore } from './ItemStore'; export class WantedItem { @observable readonly item: Item; @@ -31,15 +33,63 @@ export class OptimizationResult { // TODO: Prefer methods that don't split pan arms over methods that do. // For some reason this doesn't actually seem to be a problem, should probably investigate. -// TODO: save state in url for easy sharing (supporting custom methods will be hard though). // TODO: group similar methods (e.g. same difficulty, same quest and similar ID). // This way people can choose their preferred section ID. // TODO: order of items in results table should match order in wanted table. // TODO: boxes. class HuntOptimizerStore { - @observable readonly wantedItems: Array = []; + @observable readonly wantedItems: IObservableArray = observable.array(); @observable readonly results: IObservableArray = observable.array(); + constructor() { + this.initialize(); + } + + initialize = async () => { + await this.loadFromLocalStorage(); + autorun(this.storeInLocalStorage); + } + + loadFromLocalStorage = async () => { + try { + const wantedItemsJson = localStorage.getItem( + `HuntOptimizerStore.wantedItems.${applicationStore.currentServer}` + ); + + if (wantedItemsJson) { + const items = await itemStore.items.current.promise; + const wi = JSON.parse(wantedItemsJson); + + const wantedItems: WantedItem[] = []; + + for (const { itemName, amount } of wi) { + const item = items.find(item => item.name === itemName); + + if (item) { + wantedItems.push(new WantedItem(item, amount)); + } + } + + this.wantedItems.replace(wantedItems); + } + } catch (e) { + console.error(e); + } + } + + storeInLocalStorage = () => { + try { + localStorage.setItem( + `HuntOptimizerStore.wantedItems.${applicationStore.currentServer}`, + JSON.stringify( + this.wantedItems.map(({ item, amount }) => ({ itemName: item.name, amount })) + ) + ); + } catch (e) { + console.error(e); + } + } + optimize = async () => { if (!this.wantedItems.length) { this.results.splice(0);