2021-01-20 00:03:47 +11:00
|
|
|
<template>
|
|
|
|
<main>
|
|
|
|
<div class="section column">
|
|
|
|
<div class="box">
|
|
|
|
<h1 class="title">Transaction Log</h1>
|
|
|
|
<b-table
|
|
|
|
:detail-key='"log-" + transactions.id'
|
|
|
|
:data="transactions"
|
|
|
|
:paginated="isPaginated"
|
|
|
|
:per-page="perPage"
|
|
|
|
:current-page.sync="currentPage"
|
|
|
|
:pagination-simple="isPaginationSimple"
|
|
|
|
:pagination-position="paginationPosition"
|
|
|
|
:default-sort-direction="defaultSortDirection"
|
|
|
|
:pagination-rounded="isPaginationRounded"
|
|
|
|
:sort-icon="sortIcon"
|
|
|
|
:opened-detailed="defaultOpenedDetails"
|
|
|
|
:sort-icon-size="sortIconSize"
|
|
|
|
default-sort="user.first_name"
|
|
|
|
aria-next-label="Next page"
|
|
|
|
aria-previous-label="Previous page"
|
|
|
|
aria-page-label="Page"
|
|
|
|
aria-current-label="Current page">
|
|
|
|
|
|
|
|
<b-table-column field="props.row.text" label="Message" sortable v-slot="props">
|
|
|
|
{{ props.row.text }}
|
|
|
|
</b-table-column>
|
|
|
|
|
|
|
|
|
|
|
|
<b-table-column field="props.row.priceOfPurchase" label="Price" sortable v-slot="props">
|
|
|
|
{{ props.row.priceOfPurchase }}
|
|
|
|
</b-table-column>
|
|
|
|
|
|
|
|
<b-table-column field="props.row.createdAt" label="Date" sortable centered v-slot="props">
|
|
|
|
<span class="tag is-success">
|
|
|
|
{{ new Date(props.row.createdAt).toLocaleDateString() }}
|
|
|
|
</span>
|
|
|
|
</b-table-column>
|
|
|
|
</b-table>
|
|
|
|
</div>
|
|
|
|
<NoItems v-if="!transactions.length" type="transactions"></NoItems>
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
</template>
|
|
|
|
<script>
|
2021-04-07 23:08:04 +10:00
|
|
|
import AjaxErrorHandler from '.././assets/js/errorHandler';
|
2021-01-20 00:03:47 +11:00
|
|
|
import NoItems from '../components/NoItems'
|
|
|
|
export default {
|
|
|
|
name: 'Transactions',
|
|
|
|
components: {
|
|
|
|
NoItems
|
|
|
|
},
|
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
search: '',
|
|
|
|
transactions: [],
|
|
|
|
isPaginated: true,
|
|
|
|
isPaginationSimple: false,
|
|
|
|
isPaginationRounded: false,
|
|
|
|
paginationPosition: 'bottom',
|
|
|
|
defaultSortDirection: 'desc',
|
|
|
|
sortIcon: 'arrow-up',
|
|
|
|
sortIconSize: 'is-small',
|
|
|
|
currentPage: 1,
|
|
|
|
perPage: 30,
|
|
|
|
defaultOpenedDetails: [1],
|
|
|
|
showDetailIcon: true,
|
|
|
|
|
|
|
|
loading: true,
|
|
|
|
offset: 0,
|
|
|
|
limit: 15,
|
|
|
|
showTeamTab: 0,
|
|
|
|
tcreateProd: {
|
|
|
|
username: '',
|
|
|
|
name: '',
|
|
|
|
|
|
|
|
loading: false,
|
|
|
|
|
|
|
|
errors: {
|
|
|
|
username: '',
|
|
|
|
name: ''
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
roleOptions: [
|
|
|
|
{ name: 'Admins', value: 'admin' },
|
|
|
|
{ name: 'transactions', value: 'user' }
|
|
|
|
],
|
|
|
|
roleSelected: ['admin', 'user'],
|
|
|
|
|
|
|
|
tableSort: {
|
|
|
|
column: 'username',
|
|
|
|
sort: 'desc'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
fetchData () {
|
|
|
|
if(this.offset === null) return;
|
|
|
|
|
|
|
|
let url = process.env.VUE_APP_APIENDPOINT + process.env.VUE_APP_APIVERSION + `/` + `transactions?
|
|
|
|
sort=${this.tableSort.column}
|
|
|
|
&order=${this.tableSort.sort}
|
|
|
|
&offset=${this.offset}
|
|
|
|
`;
|
|
|
|
if(this.roleSelected.length === 1) {
|
|
|
|
url += '&role=' + this.roleSelected[0];
|
|
|
|
}
|
|
|
|
if(this.search.length) {
|
|
|
|
url += '&search=' + encodeURIComponent(this.search.trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
this.loading = true;
|
|
|
|
this.axios
|
|
|
|
.get(url)
|
|
|
|
.then(res => {
|
|
|
|
this.transactions.push(...res.data);
|
|
|
|
this.loading = /*loading =*/ false;
|
|
|
|
|
|
|
|
//If returned data is less than the limit
|
|
|
|
//then there must be no more pages to paginate
|
|
|
|
if(res.data.length < this.limit) {
|
|
|
|
this.offset = null;
|
|
|
|
} else {
|
|
|
|
this.offset+= this.limit;
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(e => {
|
|
|
|
AjaxErrorHandler(this.$store)(e);
|
|
|
|
this.loading = /*loading =*/ false;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
resetFetchData () {
|
|
|
|
this.offset = 0;
|
|
|
|
this.transactions = [];
|
|
|
|
|
|
|
|
this.fetchData();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
getNewertransactions () {
|
|
|
|
this.loadingNewer = true
|
|
|
|
|
|
|
|
this.axios
|
|
|
|
.get(process.env.VUE_APP_APIENDPOINT + process.env.VUE_APP_APIVERSION + '/' + 'transactions' + '?limit=' + this.newtransactions)
|
|
|
|
.then(res => {
|
|
|
|
this.loadingNewer = false
|
|
|
|
this.newtransactions = 0
|
|
|
|
|
|
|
|
this.threads.unshift(...res.data.Threads)
|
|
|
|
})
|
|
|
|
.catch((e) => {
|
|
|
|
this.loadingNewer = false
|
|
|
|
AjaxErrorHandler(this.$store)(e)
|
|
|
|
})
|
|
|
|
},
|
|
|
|
mounted () {
|
|
|
|
this.fetchData();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|