vue-psa-architecture/src/app/lists/ListsSelect/store.ts

36 lines
881 B
TypeScript

import { useLoader } from "@/shared/lib/composables/loader";
import { validInject } from "@/shared/lib/di";
import { computed, reactive } from "vue";
import { useListsStore } from "../store";
import type { ListsSelectApiPort } from "./ports";
export const LISTS_SELECT_API_PROVIDE_KEY = Symbol("ListsTableApi");
export function useListsSelectStore() {
const api = validInject<ListsSelectApiPort>(
LISTS_SELECT_API_PROVIDE_KEY,
"ListsSelectApiPort"
);
const listsStore = useListsStore();
const selectItems = computed(() =>
listsStore.lists.map((l) => ({
value: l.id,
label: l.displayName,
}))
);
const loader = useLoader();
async function fetchMany() {
const lists = await loader.wait(api.fetchMany({}));
listsStore.setLists(lists);
}
return reactive({
loading: loader.loading,
selectItems,
fetchMany,
});
}