Files
firefly-iii/frontend/src/components/transactions/TransactionListSmall.vue

50 lines
1.6 KiB
Vue
Raw Normal View History

2020-06-22 18:03:57 +02:00
<template>
<table class="table table-striped">
2020-06-27 17:33:18 +02:00
<caption>A table containing transactions.</caption>
<thead>
<tr>
<th>TODO</th>
<th>TODO</th>
</tr>
</thead>
<tbody>
2020-06-22 18:03:57 +02:00
<tr v-for="transaction in transactions">
<td>
<a href="#">
<span v-if="transaction.attributes.transactions.length > 1">{{ transaction.attributes.group_title }}</span>
<span v-if="1===transaction.attributes.transactions.length">{{ transaction.attributes.transactions[0].description }}</span>
</a>
</td>
<td style="text-align:right;">
<span v-for="tr in transaction.attributes.transactions">
<span v-if="'withdrawal' === tr.type" class="text-danger">
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount * -1)}}<br>
</span>
<span v-if="'deposit' === tr.type" class="text-success">
{{ Intl.NumberFormat('en-US', {style: 'currency', currency: tr.currency_code}).format(tr.amount)}}<br>
</span>
</span>
</td>
</tr>
2020-06-27 17:33:18 +02:00
</tbody>
2020-06-22 18:03:57 +02:00
</table>
</template>
<script>
export default {
name: "TransactionListSmall",
props: {
transactions: {
type: Array,
default: function () {
return [];
}
},
}
}
</script>
<style scoped>
</style>