mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-04-15 17:24:10 +00:00
Create BaseCustomTag (dynamic tag render), BaseFormatMoney, BaseHeading, BaseScrollPane, BaseDescriptionList/Item, BaseLabel, BaseCustomerSelectInput, BaseSpinner, BaseRating, and status label components. Register all renamed v2 components under their old Base* names (BaseInputGroup->FormGroup, BasePage->Page, BaseTable->DataTable, etc.) so templates resolve correctly. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
36 lines
774 B
Vue
36 lines
774 B
Vue
<script setup lang="ts">
|
|
import { computed } from 'vue'
|
|
import { useI18n } from 'vue-i18n'
|
|
import { RecurringInvoiceStatus } from '@v2/types/domain'
|
|
|
|
interface Props {
|
|
status?: string
|
|
}
|
|
|
|
const props = withDefaults(defineProps<Props>(), {
|
|
status: '',
|
|
})
|
|
|
|
const { t } = useI18n()
|
|
|
|
const labelStatus = computed<string>(() => {
|
|
switch (props.status) {
|
|
case RecurringInvoiceStatus.COMPLETED:
|
|
case 'COMPLETED':
|
|
return t('recurring_invoices.complete')
|
|
case RecurringInvoiceStatus.ON_HOLD:
|
|
case 'ON_HOLD':
|
|
return t('recurring_invoices.on_hold')
|
|
case RecurringInvoiceStatus.ACTIVE:
|
|
case 'ACTIVE':
|
|
return t('recurring_invoices.active')
|
|
default:
|
|
return props.status
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
{{ labelStatus }}
|
|
</template>
|