mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-16 01:34:08 +00:00
Now that the legacy v1 frontend (commit 064bdf53) is gone, the v2 directory is the only frontend and the v2 suffix is just noise. Renames resources/scripts-v2 to resources/scripts via git mv (so git records the move as renames, preserving blame and log --follow), then bulk-rewrites the 152 files that imported via @v2/... to use @/scripts/... instead. The existing @ alias (resources/) covers the new path with no extra config needed.
Drops the now-unused @v2 alias from vite.config.js and points the laravel-vite-plugin entry at resources/scripts/main.ts. Updates the only blade reference (resources/views/app.blade.php) to match. The package.json test script (eslint ./resources/scripts) automatically targets the right place after the rename without any edit.
Verified: npm run build exits clean and the Vite warning lines now reference resources/scripts/plugins/i18n.ts, confirming every import resolved through the new path. git log --follow on any moved file walks back through its scripts-v2 history.
84 lines
2.3 KiB
Vue
84 lines
2.3 KiB
Vue
<template>
|
|
<div
|
|
class="relative shadow-md border-2 border-line-default/60 rounded-lg cursor-pointer overflow-hidden h-100"
|
|
@click="$router.push(`/admin/modules/${data.slug}`)"
|
|
>
|
|
<div
|
|
v-if="data.purchased"
|
|
class="absolute mt-5 px-6 w-full flex justify-end"
|
|
>
|
|
<label
|
|
v-if="data.purchased"
|
|
class="bg-white/75 text-xs px-3 py-1 font-semibold tracking-wide rounded"
|
|
>
|
|
{{ $t('modules.purchased') }}
|
|
</label>
|
|
<label
|
|
v-if="data.installed"
|
|
class="ml-2 bg-white/75 text-xs px-3 py-1 font-semibold tracking-wide rounded"
|
|
>
|
|
<span v-if="data.update_available">
|
|
{{ $t('modules.update_available') }}
|
|
</span>
|
|
<span v-else>
|
|
{{ $t('modules.installed') }}
|
|
</span>
|
|
</label>
|
|
</div>
|
|
|
|
<img
|
|
class="lg:h-64 md:h-48 w-full object-cover object-center"
|
|
:src="data.cover ?? ''"
|
|
alt="cover"
|
|
/>
|
|
|
|
<div class="px-6 py-5 flex flex-col bg-surface-secondary flex-1 justify-between">
|
|
<span class="text-lg sm:text-2xl font-medium whitespace-nowrap truncate text-primary-500">
|
|
{{ data.name }}
|
|
</span>
|
|
|
|
<div v-if="data.author_avatar" class="flex items-center mt-2">
|
|
<img
|
|
class="hidden h-10 w-10 rounded-full sm:inline-block mr-2"
|
|
:src="data.author_avatar"
|
|
alt=""
|
|
/>
|
|
<span>by</span>
|
|
<span class="ml-2 text-base font-semibold truncate">
|
|
{{ data.author_name }}
|
|
</span>
|
|
</div>
|
|
|
|
<base-text
|
|
:text="data.short_description ?? ''"
|
|
class="pt-4 text-muted h-16 line-clamp-2"
|
|
/>
|
|
|
|
<div class="flex justify-between mt-4 flex-col space-y-2 sm:space-y-0 sm:flex-row">
|
|
<div>
|
|
<BaseRating :rating="averageRating" />
|
|
</div>
|
|
<div class="text-xl md:text-2xl font-semibold whitespace-nowrap text-primary-500">
|
|
$
|
|
{{ data.monthly_price ? data.monthly_price / 100 : (data.yearly_price ?? 0) / 100 }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import type { Module } from '../../../../types/domain/module'
|
|
|
|
interface Props {
|
|
data: Module
|
|
}
|
|
|
|
const props = defineProps<Props>()
|
|
|
|
const averageRating = computed<number>(() => {
|
|
return parseInt(String(props.data.average_rating ?? 0), 10)
|
|
})
|
|
</script>
|