mirror of
https://github.com/Drop-OSS/drop.git
synced 2025-11-11 21:12:09 +10:00
143 lines
4.6 KiB
Vue
143 lines
4.6 KiB
Vue
<template>
|
|
<div
|
|
v-if="libraryState.unimportedGames.length > 0"
|
|
class="rounded-md bg-blue-600/10 p-4 mb-4"
|
|
>
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<InformationCircleIcon
|
|
class="h-5 w-5 text-blue-400"
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
<div class="ml-3 flex-1 md:flex md:justify-between">
|
|
<p class="text-sm text-blue-400">
|
|
Drop has detected you have new games to import.
|
|
</p>
|
|
<p class="mt-3 text-sm md:ml-6 md:mt-0">
|
|
<NuxtLink
|
|
href="/admin/library/import"
|
|
class="whitespace-nowrap font-medium text-blue-400 hover:text-blue-500"
|
|
>
|
|
Import
|
|
<span aria-hidden="true"> →</span>
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<ul
|
|
role="list"
|
|
class="grid grid-cols-1 gap-6 sm:grid-cols-2 md:grid-cols-3 xl:grid-cols-4"
|
|
>
|
|
<li
|
|
v-for="game in libraryNotifications"
|
|
:key="game.id"
|
|
class="col-span-1 flex flex-col justify-center divide-y divide-zinc-700 rounded-lg bg-zinc-950/20 text-left shadow"
|
|
>
|
|
<div class="flex flex-1 flex-row p-4 gap-x-4">
|
|
<img
|
|
class="mx-auto h-16 w-16 flex-shrink-0 rounded-md"
|
|
:src="useObject(game.mIconId)"
|
|
alt=""
|
|
/>
|
|
<div class="flex flex-col">
|
|
<h3 class="text-sm font-medium text-zinc-100 font-display">
|
|
{{ game.mName }}
|
|
<span
|
|
class="ml-2 inline-flex items-center rounded-full bg-blue-600/10 px-2 py-1 text-xs font-medium text-blue-600 ring-1 ring-inset ring-blue-600/20"
|
|
>{{ game.metadataSource }}</span
|
|
>
|
|
</h3>
|
|
<dl class="mt-1 flex flex-col justify-between">
|
|
<dt class="sr-only">Short Description</dt>
|
|
<dd class="text-sm text-zinc-400">{{ game.mShortDescription }}</dd>
|
|
<dt class="sr-only">Metadata provider</dt>
|
|
</dl>
|
|
<NuxtLink
|
|
:href="`/admin/library/${game.id}`"
|
|
class="mt-2 w-fit rounded-md bg-blue-600 px-2.5 py-1.5 text-sm font-semibold text-white shadow-sm hover:bg-blue-500 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-blue-600"
|
|
>
|
|
Edit →
|
|
</NuxtLink>
|
|
</div>
|
|
</div>
|
|
<div v-if="game.hasNotifications" class="flex flex-col gap-y-2 p-2">
|
|
<div
|
|
v-if="game.notifications.toImport"
|
|
class="rounded-md bg-blue-600/10 p-4"
|
|
>
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<InformationCircleIcon
|
|
class="h-5 w-5 text-blue-400"
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
<div class="ml-3 flex-1 md:flex md:justify-between">
|
|
<p class="text-sm text-blue-400">
|
|
Drop has detected you have new verions of this game to import.
|
|
</p>
|
|
<p class="mt-3 text-sm md:ml-6 md:mt-0">
|
|
<NuxtLink
|
|
:href="`/admin/library/${game.id}/import`"
|
|
class="whitespace-nowrap font-medium text-blue-400 hover:text-blue-500"
|
|
>
|
|
Import
|
|
<span aria-hidden="true"> →</span>
|
|
</NuxtLink>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div
|
|
v-if="game.notifications.noVersions"
|
|
class="rounded-md bg-yellow-600/10 p-4"
|
|
>
|
|
<div class="flex">
|
|
<div class="flex-shrink-0">
|
|
<ExclamationTriangleIcon
|
|
class="h-5 w-5 text-yellow-600"
|
|
aria-hidden="true"
|
|
/>
|
|
</div>
|
|
<div class="ml-3">
|
|
<h3 class="text-sm font-medium text-yellow-600">
|
|
You have no versions of this game available.
|
|
</h3>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ExclamationTriangleIcon } from "@heroicons/vue/16/solid";
|
|
import { InformationCircleIcon } from "@heroicons/vue/20/solid";
|
|
definePageMeta({
|
|
layout: "admin",
|
|
});
|
|
|
|
useHead({
|
|
title: "Libraries",
|
|
});
|
|
|
|
const headers = useRequestHeaders(["cookie"]);
|
|
const libraryState = await $fetch("/api/v1/admin/library", { headers });
|
|
const libraryNotifications = libraryState.games.map((e) => {
|
|
const noVersions = e.status.noVersions;
|
|
const toImport = e.status.unimportedVersions.length > 0;
|
|
|
|
return {
|
|
...e.game,
|
|
notifications: {
|
|
noVersions,
|
|
toImport,
|
|
},
|
|
hasNotifications: noVersions || toImport,
|
|
};
|
|
});
|
|
</script>
|