mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28:29 +08:00
15 lines
413 B
TypeScript
15 lines
413 B
TypeScript
![]() |
import { getItems } from "../data/loading/items";
|
||
|
import { itemStore } from "../stores/ItemStore";
|
||
|
import { action } from "mobx";
|
||
|
import { memoize } from "lodash";
|
||
|
import { Item } from "../domain";
|
||
|
|
||
|
export const loadItems = memoize(
|
||
|
async (server: string) => {
|
||
|
setItems(await getItems(server));
|
||
|
}
|
||
|
);
|
||
|
|
||
|
const setItems = action('setItems', (items: Item[]) => {
|
||
|
itemStore.items.replace(items);
|
||
|
});
|