Files
InvoiceShelf/resources/scripts/components/base/InvoiceInformationCard.vue
Darko Gjorgjijoski f3ab0f22fc chore(frontend): fix ESLint, add Pint+ESLint pre-commit hook, centralize v-html
Fix the broken ESLint setup: add vue-eslint-parser and @typescript-eslint/parser
and wire the TS parser into eslint.config.mjs so .ts and <script lang=ts> parse
(was failing outright). Clear the resulting backlog to a clean 0/0 baseline —
fix genuine issues, relax two intentional-pattern rules (multi-word-component-names,
no-required-prop-with-default).

Add a committed .githooks/pre-commit (enabled via core.hooksPath, auto-set by the
prepare script) that runs Pint on staged PHP and ESLint --max-warnings 0 on staged
resources/scripts JS/TS/Vue, blocking on failure. Add composer/npm lint scripts and
document the gate in CLAUDE.md.

Replace every scattered v-html with a single audited BaseSanitizedHtml component
that DOMPurify-sanitizes its input (new utils/markdown.ts sanitizeHtml), so
server/registry-provided HTML is actually sanitized and vue/no-v-html stays enabled
everywhere but one reviewed sink.
2026-06-11 11:11:12 +02:00

90 lines
3.0 KiB
Vue

<script setup lang="ts">
import type { Invoice } from '@/scripts/types/domain'
import type { Currency } from '@/scripts/types/domain'
import type { Company } from '@/scripts/types/domain'
import type { Customer } from '@/scripts/types/domain'
interface InvoiceInfo {
paid_status: string
total: number
formatted_notes?: string | null
currency?: Currency
company?: Pick<Company, 'name'>
customer?: Pick<Customer, 'name'>
}
interface Props {
invoice: InvoiceInfo | null
}
defineProps<Props>()
</script>
<template>
<div class="bg-surface shadow overflow-hidden rounded-lg mt-6">
<div class="px-4 py-5 sm:px-6">
<h3 class="text-lg leading-6 font-medium text-heading">
{{ $t('invoices.invoice_information') }}
</h3>
</div>
<div v-if="invoice" class="border-t border-line-default px-4 py-5 sm:p-0">
<dl class="sm:divide-y sm:divide-line-default">
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-muted">
{{ $t('general.from') }}
</dt>
<dd class="mt-1 text-sm text-heading sm:mt-0 sm:col-span-2">
{{ invoice.company?.name }}
</dd>
</div>
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-muted">
{{ $t('general.to') }}
</dt>
<dd class="mt-1 text-sm text-heading sm:mt-0 sm:col-span-2">
{{ invoice.customer?.name }}
</dd>
</div>
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-muted capitalize">
{{ $t('invoices.paid_status').toLowerCase() }}
</dt>
<dd class="mt-1 text-sm text-heading sm:mt-0 sm:col-span-2">
<BaseInvoiceStatusBadge
:status="invoice.paid_status"
class="px-3 py-1"
>
<BaseInvoiceStatusLabel :status="invoice.paid_status" />
</BaseInvoiceStatusBadge>
</dd>
</div>
<div class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6">
<dt class="text-sm font-medium text-muted">
{{ $t('invoices.total') }}
</dt>
<dd class="mt-1 text-sm text-heading sm:mt-0 sm:col-span-2">
<BaseFormatMoney
:currency="invoice.currency"
:amount="invoice.total"
/>
</dd>
</div>
<div
v-if="invoice.formatted_notes"
class="py-4 sm:py-5 sm:grid sm:grid-cols-3 sm:gap-4 sm:px-6"
>
<dt class="text-sm font-medium text-muted">
{{ $t('invoices.notes') }}
</dt>
<dd class="mt-1 text-sm text-heading sm:mt-0 sm:col-span-2">
<BaseSanitizedHtml :html="invoice.formatted_notes" />
</dd>
</div>
</dl>
</div>
<div v-else class="w-full flex items-center justify-center p-5">
<BaseSpinner class="text-primary-500 h-10 w-10" />
</div>
</div>
</template>