forked from mirrors/homebox
bd06fdafaf
* make login case insensitive * expand query to support by Field and By AID search * type generation * new API callers * rework search to support field queries * improve unnecessary data fetches * clear stores on logout * change verbage * add labels
390 lines
11 KiB
Vue
390 lines
11 KiB
Vue
<script setup lang="ts">
|
|
import { ItemSummary, LabelSummary, LocationOutCount } from "~~/lib/api/types/data-contracts";
|
|
import { useLabelStore } from "~~/stores/labels";
|
|
import { useLocationStore } from "~~/stores/locations";
|
|
|
|
definePageMeta({
|
|
middleware: ["auth"],
|
|
});
|
|
|
|
useHead({
|
|
title: "Homebox | Items",
|
|
});
|
|
|
|
const searchLocked = ref(false);
|
|
const queryParamsInitialized = ref(false);
|
|
const initialSearch = ref(true);
|
|
|
|
const api = useUserApi();
|
|
const loading = useMinLoader(2000);
|
|
const items = ref<ItemSummary[]>([]);
|
|
const total = ref(0);
|
|
|
|
const page1 = useRouteQuery("page", 1);
|
|
|
|
const page = computed({
|
|
get: () => page1.value,
|
|
set: value => {
|
|
page1.value = value;
|
|
},
|
|
});
|
|
|
|
const pageSize = useRouteQuery("pageSize", 21);
|
|
const query = useRouteQuery("q", "");
|
|
const advanced = useRouteQuery("advanced", false);
|
|
const includeArchived = useRouteQuery("archived", false);
|
|
|
|
const totalPages = computed(() => Math.ceil(total.value / pageSize.value));
|
|
const hasNext = computed(() => page.value * pageSize.value < total.value);
|
|
const hasPrev = computed(() => page.value > 1);
|
|
|
|
function prev() {
|
|
page.value = Math.max(1, page.value - 1);
|
|
}
|
|
|
|
function next() {
|
|
page.value = Math.min(Math.ceil(total.value / pageSize.value), page.value + 1);
|
|
}
|
|
|
|
const route = useRoute();
|
|
const router = useRouter();
|
|
|
|
onMounted(async () => {
|
|
loading.value = true;
|
|
// Wait until locations and labels are loaded
|
|
let maxRetry = 10;
|
|
while (!labels.value || !locations.value) {
|
|
await new Promise(resolve => setTimeout(resolve, 100));
|
|
if (maxRetry-- < 0) {
|
|
break;
|
|
}
|
|
}
|
|
searchLocked.value = true;
|
|
const qLoc = route.query.loc as string[];
|
|
if (qLoc) {
|
|
selectedLocations.value = locations.value.filter(l => qLoc.includes(l.id));
|
|
}
|
|
|
|
const qLab = route.query.lab as string[];
|
|
if (qLab) {
|
|
selectedLabels.value = labels.value.filter(l => qLab.includes(l.id));
|
|
}
|
|
|
|
queryParamsInitialized.value = true;
|
|
searchLocked.value = false;
|
|
|
|
const qFields = route.query.fields as string[];
|
|
if (qFields) {
|
|
fieldTuples.value = qFields.map(f => f.split("=") as [string, string]);
|
|
|
|
for (const t of fieldTuples.value) {
|
|
if (t[0] && t[1]) {
|
|
await fetchValues(t[0]);
|
|
}
|
|
}
|
|
}
|
|
|
|
// trigger search if no changes
|
|
if (!qLab && !qLoc) {
|
|
search();
|
|
}
|
|
|
|
loading.value = false;
|
|
window.scroll({
|
|
top: 0,
|
|
left: 0,
|
|
behavior: "smooth",
|
|
});
|
|
});
|
|
|
|
const locationsStore = useLocationStore();
|
|
const locations = computed(() => locationsStore.allLocations);
|
|
|
|
const labelStore = useLabelStore();
|
|
const labels = computed(() => labelStore.labels);
|
|
|
|
const selectedLocations = ref<LocationOutCount[]>([]);
|
|
const selectedLabels = ref<LabelSummary[]>([]);
|
|
|
|
const locIDs = computed(() => selectedLocations.value.map(l => l.id));
|
|
const labIDs = computed(() => selectedLabels.value.map(l => l.id));
|
|
|
|
function parseAssetIDString(d: string) {
|
|
d = d.replace(/"/g, "").replace(/-/g, "");
|
|
|
|
const aidInt = parseInt(d);
|
|
if (isNaN(aidInt)) {
|
|
return [-1, false];
|
|
}
|
|
|
|
return [aidInt, true];
|
|
}
|
|
|
|
const byAssetId = computed(() => query.value?.startsWith("#") || false);
|
|
const parsedAssetId = computed(() => {
|
|
if (!byAssetId.value) {
|
|
return "";
|
|
} else {
|
|
const [aid, valid] = parseAssetIDString(query.value.replace("#", ""));
|
|
if (!valid) {
|
|
return "Invalid Asset ID";
|
|
} else {
|
|
return aid;
|
|
}
|
|
}
|
|
});
|
|
|
|
const fieldTuples = ref<[string, string][]>([]);
|
|
const fieldValuesCache = ref<Record<string, string[]>>({});
|
|
|
|
const { data: allFields } = useAsyncData(async () => {
|
|
const { data, error } = await api.items.fields.getAll();
|
|
|
|
if (error) {
|
|
return [];
|
|
}
|
|
|
|
return data;
|
|
});
|
|
|
|
async function fetchValues(field: string): Promise<string[]> {
|
|
if (fieldValuesCache.value[field]) {
|
|
return fieldValuesCache.value[field];
|
|
}
|
|
|
|
const { data, error } = await api.items.fields.getAllValues(field);
|
|
|
|
if (error) {
|
|
return [];
|
|
}
|
|
|
|
fieldValuesCache.value[field] = data;
|
|
|
|
return data;
|
|
}
|
|
|
|
watch(advanced, (v, lv) => {
|
|
if (v === false && lv === true) {
|
|
selectedLocations.value = [];
|
|
selectedLabels.value = [];
|
|
fieldTuples.value = [];
|
|
|
|
console.log("advanced", advanced.value);
|
|
|
|
router.push({
|
|
query: {
|
|
advanced: route.query.advanced,
|
|
q: query.value,
|
|
page: page.value,
|
|
pageSize: pageSize.value,
|
|
includeArchived: includeArchived.value ? "true" : "false",
|
|
},
|
|
});
|
|
}
|
|
});
|
|
|
|
async function search() {
|
|
if (searchLocked.value) {
|
|
return;
|
|
}
|
|
|
|
loading.value = true;
|
|
|
|
const fields = [];
|
|
|
|
for (const t of fieldTuples.value) {
|
|
if (t[0] && t[1]) {
|
|
fields.push(`${t[0]}=${t[1]}`);
|
|
}
|
|
}
|
|
|
|
const { data, error } = await api.items.getAll({
|
|
q: query.value || "",
|
|
locations: locIDs.value,
|
|
labels: labIDs.value,
|
|
includeArchived: includeArchived.value,
|
|
page: page.value,
|
|
pageSize: pageSize.value,
|
|
fields,
|
|
});
|
|
|
|
if (error) {
|
|
page.value = Math.max(1, page.value - 1);
|
|
loading.value = false;
|
|
return;
|
|
}
|
|
|
|
if (!data.items || data.items.length === 0) {
|
|
page.value = Math.max(1, page.value - 1);
|
|
loading.value = false;
|
|
return;
|
|
}
|
|
|
|
total.value = data.total;
|
|
items.value = data.items;
|
|
|
|
loading.value = false;
|
|
initialSearch.value = false;
|
|
}
|
|
|
|
watchDebounced([page, pageSize, query, advanced], search, { debounce: 250, maxWait: 1000 });
|
|
|
|
async function submit() {
|
|
// Set URL Params
|
|
const fields = [];
|
|
for (const t of fieldTuples.value) {
|
|
if (t[0] && t[1]) {
|
|
fields.push(`${t[0]}=${t[1]}`);
|
|
}
|
|
}
|
|
|
|
// Push non-reactive query fields
|
|
await router.push({
|
|
query: {
|
|
// Reactive
|
|
advanced: "true",
|
|
includeArchived: includeArchived.value ? "true" : "false",
|
|
pageSize: pageSize.value,
|
|
page: page.value,
|
|
q: query.value,
|
|
|
|
// Non-reactive
|
|
loc: locIDs.value,
|
|
lab: labIDs.value,
|
|
fields,
|
|
},
|
|
});
|
|
|
|
// Reset Pagination
|
|
page.value = 1;
|
|
|
|
// Perform Search
|
|
await search();
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<BaseContainer class="mb-16">
|
|
<FormTextField v-model="query" placeholder="Search" />
|
|
<div class="text-sm pl-2 pt-2">
|
|
<p v-if="byAssetId">Querying Asset ID Number: {{ parsedAssetId }}</p>
|
|
</div>
|
|
<div class="flex mt-1">
|
|
<label class="ml-auto label cursor-pointer">
|
|
<input v-model="advanced" type="checkbox" class="toggle toggle-primary" />
|
|
<span class="label-text text-base-content ml-2"> Advanced Search </span>
|
|
</label>
|
|
</div>
|
|
<BaseCard v-if="advanced" class="my-1 overflow-visible">
|
|
<template #title> Search Tips </template>
|
|
<template #subtitle>
|
|
<ul class="mt-1 list-disc pl-6">
|
|
<li>
|
|
Location and label filters use the 'OR' operation. If more than one is selected only one will be required
|
|
for a match.
|
|
</li>
|
|
<li>Searches prefixed with '#'' will query for a asset ID (example '#000-001')</li>
|
|
<li>
|
|
Field filters use the 'OR' operation. If more than one is selected only one will be required for a match.
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
<form class="px-4 pb-4">
|
|
<div class="flex pb-2 pt-5">
|
|
<label class="label cursor-pointer mr-auto">
|
|
<input v-model="includeArchived" type="checkbox" class="toggle toggle-primary" />
|
|
<span class="label-text ml-4"> Include Archived Items </span>
|
|
</label>
|
|
<Spacer />
|
|
</div>
|
|
<FormMultiselect v-model="selectedLabels" label="Labels" :items="labels ?? []" />
|
|
<FormMultiselect v-model="selectedLocations" label="Locations" :items="locations ?? []" />
|
|
<div class="py-4 space-y-2">
|
|
<p>Custom Fields</p>
|
|
<div v-for="(f, idx) in fieldTuples" :key="idx" class="flex flex-wrap gap-2">
|
|
<div class="form-control w-full max-w-xs">
|
|
<label class="label">
|
|
<span class="label-text">Field</span>
|
|
</label>
|
|
<select
|
|
v-model="fieldTuples[idx][0]"
|
|
class="select-bordered select"
|
|
:items="allFields ?? []"
|
|
@change="fetchValues(f[0])"
|
|
>
|
|
<option v-for="fv in allFields" :key="fv" :value="fv">{{ fv }}</option>
|
|
</select>
|
|
</div>
|
|
<div class="form-control w-full max-w-xs">
|
|
<label class="label">
|
|
<span class="label-text">Field Value</span>
|
|
</label>
|
|
<select v-model="fieldTuples[idx][1]" class="select-bordered select" :items="fieldValuesCache[f[0]]">
|
|
<option v-for="v in fieldValuesCache[f[0]]" :key="v" :value="v">{{ v }}</option>
|
|
</select>
|
|
</div>
|
|
<button
|
|
type="button"
|
|
class="btn btn-square btn-sm md:ml-0 ml-auto mt-auto mb-2"
|
|
@click="fieldTuples.splice(idx, 1)"
|
|
>
|
|
<Icon name="mdi-trash" class="w-5 h-5" />
|
|
</button>
|
|
</div>
|
|
<BaseButton type="button" class="btn-sm mt-2" @click="() => fieldTuples.push(['', ''])"> Add</BaseButton>
|
|
</div>
|
|
<div class="flex justify-end gap-2">
|
|
<BaseButton @click.prevent="submit">Search</BaseButton>
|
|
</div>
|
|
</form>
|
|
</BaseCard>
|
|
<section class="mt-10">
|
|
<BaseSectionHeader ref="itemsTitle"> Items </BaseSectionHeader>
|
|
<p class="text-base font-medium flex items-center">
|
|
{{ total }} Results
|
|
<span class="text-base ml-auto"> Page {{ page }} of {{ totalPages }}</span>
|
|
</p>
|
|
|
|
<div ref="cardgrid" class="grid mt-4 grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-4">
|
|
<ItemCard v-for="item in items" :key="item.id" :item="item" />
|
|
|
|
<div class="hidden first:inline text-xl">No Items Found</div>
|
|
</div>
|
|
<div v-if="items.length > 0 && (hasNext || hasPrev)" class="mt-10 flex gap-2 flex-col items-center">
|
|
<div class="flex">
|
|
<div class="btn-group">
|
|
<button :disabled="!hasPrev" class="btn text-no-transform" @click="prev">
|
|
<Icon class="mr-1 h-6 w-6" name="mdi-chevron-left" />
|
|
Prev
|
|
</button>
|
|
<button v-if="hasPrev" class="btn text-no-transform" @click="page = 1">First</button>
|
|
<button v-if="hasNext" class="btn text-no-transform" @click="page = totalPages">Last</button>
|
|
<button :disabled="!hasNext" class="btn text-no-transform" @click="next">
|
|
Next
|
|
<Icon class="ml-1 h-6 w-6" name="mdi-chevron-right" />
|
|
</button>
|
|
</div>
|
|
</div>
|
|
<p class="text-sm font-bold">Page {{ page }} of {{ totalPages }}</p>
|
|
</div>
|
|
</section>
|
|
</BaseContainer>
|
|
</template>
|
|
|
|
<style lang="css">
|
|
.list-move,
|
|
.list-enter-active,
|
|
.list-leave-active {
|
|
transition: all 0.25s ease;
|
|
}
|
|
|
|
.list-enter-from,
|
|
.list-leave-to {
|
|
opacity: 0;
|
|
transform: translateY(30px);
|
|
}
|
|
|
|
.list-leave-active {
|
|
position: absolute;
|
|
}
|
|
</style>
|