mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-16 09:22:33 +00:00
122 lines
3.1 KiB
Vue
122 lines
3.1 KiB
Vue
<!--
|
|
- Show.vue
|
|
- Copyright (c) 2022 james@firefly-iii.org
|
|
-
|
|
- This file is part of Firefly III (https://github.com/firefly-iii).
|
|
-
|
|
- This program is free software: you can redistribute it and/or modify
|
|
- it under the terms of the GNU Affero General Public License as
|
|
- published by the Free Software Foundation, either version 3 of the
|
|
- License, or (at your option) any later version.
|
|
-
|
|
- This program is distributed in the hope that it will be useful,
|
|
- but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
- GNU Affero General Public License for more details.
|
|
-
|
|
- You should have received a copy of the GNU Affero General Public License
|
|
- along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
-->
|
|
|
|
<template>
|
|
<q-page>
|
|
<div class="row q-mx-md">
|
|
<div class="col-12">
|
|
<!-- Balance chart -->
|
|
<q-card bordered>
|
|
<q-card-section>
|
|
<div class="text-h6">{{ account.name }}</div>
|
|
</q-card-section>
|
|
<q-card-section>
|
|
<div class="row">
|
|
<div class="col-12 q-mb-xs">
|
|
Name: {{ account.name }}<br>
|
|
IBAN: {{ account.iban }}<br>
|
|
</div>
|
|
</div>
|
|
</q-card-section>
|
|
</q-card>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row q-mt-sm">
|
|
<div class="col-12">
|
|
<LargeTable ref="table"
|
|
:loading="loading"
|
|
:page="page"
|
|
:rows="rows"
|
|
:rows-number="rowsNumber"
|
|
:rows-per-page="rowsPerPage"
|
|
title="Transactions"
|
|
v-on:on-request="onRequest"
|
|
>
|
|
</LargeTable>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</q-page>
|
|
</template>
|
|
|
|
<script>
|
|
import Get from "../../api/accounts/get";
|
|
import LargeTable from "../../components/transactions/LargeTable";
|
|
import Parser from "../../api/transactions/parser";
|
|
|
|
export default {
|
|
name: "Show",
|
|
data() {
|
|
return {
|
|
account: {},
|
|
rows: [],
|
|
rowsNumber: 1,
|
|
rowsPerPage: 10,
|
|
page: 1
|
|
}
|
|
},
|
|
created() {
|
|
this.id = parseInt(this.$route.params.id);
|
|
this.getAccount();
|
|
},
|
|
mounted() {
|
|
//this.getAccount();
|
|
},
|
|
components: {LargeTable},
|
|
methods: {
|
|
onRequest: function (payload) {
|
|
this.page = payload.page;
|
|
this.getAccount();
|
|
},
|
|
getAccount: function () {
|
|
let get = new Get;
|
|
get.get(this.id).then((response) => this.parseAccount(response));
|
|
|
|
this.loading = true;
|
|
const parser = new Parser;
|
|
this.rows = [];
|
|
|
|
get.transactions(this.id, this.page).then(
|
|
(response) => {
|
|
let resp = parser.parseResponse(response);
|
|
|
|
this.rowsPerPage = resp.rowsPerPage;
|
|
this.rowsNumber = resp.rowsNumber;
|
|
this.rows = resp.rows;
|
|
this.loading = false;
|
|
}
|
|
);
|
|
},
|
|
parseAccount: function (response) {
|
|
this.account = {
|
|
name: response.data.data.attributes.name,
|
|
iban: response.data.data.attributes.iban
|
|
};
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|