88 lines
3.0 KiB
Vue
88 lines
3.0 KiB
Vue
<script setup lang="ts">
|
|
import { Link } from '@inertiajs/vue3'
|
|
|
|
const { props } = defineProps<{ computer: any }>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="max-w-4xl mx-auto p-4 md:p-8 bg-white shadow-lg rounded-lg">
|
|
<h1 class="text-xl md:text-2xl font-semibold mb-4 md:mb-8 text-gray-800">
|
|
{{ computer.title }}
|
|
</h1>
|
|
|
|
<div class="mt-2">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">Components</label>
|
|
<div class="overflow-x-auto">
|
|
<table class="w-full border-collapse">
|
|
<thead class="bg-gray-200">
|
|
<tr>
|
|
<th class="border px-4 py-2 text-left">Name</th>
|
|
<th class="border px-4 py-2 text-left">Type</th>
|
|
<th class="border px-4 py-2 text-right">Price</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr
|
|
v-for="component in computer.components"
|
|
:key="component.id"
|
|
class="hover:bg-gray-50"
|
|
>
|
|
<td class="border px-4 py-2">{{ component.name }}</td>
|
|
<td class="border px-4 py-2">{{ component.type?.name }}</td>
|
|
<td class="border px-4 py-2 text-right">${{ component.price }}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-6 flex flex-wrap gap-4">
|
|
<div class="flex-1 min-w-[100px]">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">GPU Score</label>
|
|
<p class="w-full border-gray-200 px-3 py-2 border rounded text-gray-700">
|
|
{{ computer.gpuScore }}
|
|
</p>
|
|
</div>
|
|
<div class="flex-1 min-w-[100px]">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">CPU Score</label>
|
|
<p class="w-full border-gray-200 px-3 py-2 border rounded text-gray-700">
|
|
{{ computer.cpuScore }}
|
|
</p>
|
|
</div>
|
|
<div class="flex-1 min-w-[100px]">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">Global Score</label>
|
|
<p class="w-full border-gray-200 px-3 py-2 border rounded text-gray-700">
|
|
{{ computer.globalScore }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="mt-4 grid grid-cols-1 md:grid-cols-3 gap-4 mb-6">
|
|
<div class="pt-2">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">State</label>
|
|
<p class="w-full mt-2 border-gray-200 px-3 py-2.5 border rounded text-gray-700">
|
|
{{ computer.state.name }}
|
|
</p>
|
|
</div>
|
|
<div></div>
|
|
<div class="mt-2">
|
|
<label class="block text-gray-700 text-sm font-bold mb-2">Sell Price</label>
|
|
<p class="w-full mt-2 border-gray-200 px-3 py-2 border rounded text-gray-700">
|
|
${{ computer.sellPrice.toFixed(2) }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
|
|
<Link
|
|
:href="`/computers/${computer.id}/edit`"
|
|
type="button"
|
|
as="button"
|
|
class="w-full md:w-auto px-4 py-2 bg-indigo-600 text-white rounded hover:bg-blue-700 transition"
|
|
>
|
|
Edit
|
|
</Link>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|