mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
290 lines
10 KiB
Vue
290 lines
10 KiB
Vue
<!--
|
|
- TransactionAccount.vue
|
|
- Copyright (c) 2020 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>
|
|
<div class="form-group">
|
|
<div v-if="visible" class="text-xs d-none d-lg-block d-xl-block">
|
|
<span v-if="0 === this.index">{{ $t('firefly.' + this.direction + '_account') }}</span>
|
|
<span v-if="this.index > 0" class="text-warning">{{ $t('firefly.first_split_overrules_' + this.direction) }}</span><br>
|
|
<span>{{ selectedAccount }}</span>
|
|
</div>
|
|
<div v-if="!visible" class="text-xs d-none d-lg-block d-xl-block">
|
|
|
|
</div>
|
|
<vue-typeahead-bootstrap
|
|
v-if="visible"
|
|
v-model="accountName"
|
|
:data="accounts"
|
|
:inputClass="errors.length > 0 ? 'is-invalid' : ''"
|
|
:inputName="direction + '[]'"
|
|
:minMatchingChars="3"
|
|
:placeholder="$t('firefly.' + direction + '_account')"
|
|
:serializer="item => item.name_with_balance"
|
|
:showOnFocus=true
|
|
aria-autocomplete="none"
|
|
autocomplete="off"
|
|
@hit="userSelectedAccount"
|
|
@input="lookupAccount"
|
|
>
|
|
|
|
<template slot="suggestion" slot-scope="{ data, htmlText }">
|
|
<div :title="data.type" class="d-flex">
|
|
<span v-html="htmlText"></span><br>
|
|
</div>
|
|
</template>
|
|
<template slot="append">
|
|
<div class="input-group-append">
|
|
<button class="btn btn-outline-secondary" tabindex="-1" type="button" v-on:click="clearAccount"><i class="far fa-trash-alt"></i></button>
|
|
</div>
|
|
</template>
|
|
</vue-typeahead-bootstrap>
|
|
<div v-if="!visible" class="form-control-static">
|
|
<span class="small text-muted"><em>{{ $t('firefly.first_split_decides') }}</em></span>
|
|
</div>
|
|
<span v-if="errors.length > 0">
|
|
<span v-for="error in errors" class="text-danger small">{{ error }}<br/></span>
|
|
</span>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import VueTypeaheadBootstrap from 'vue-typeahead-bootstrap';
|
|
import {debounce} from 'lodash';
|
|
|
|
export default {
|
|
name: "TransactionAccount",
|
|
components: {VueTypeaheadBootstrap},
|
|
props: {
|
|
index: {
|
|
type: Number,
|
|
},
|
|
direction: {
|
|
type: String,
|
|
},
|
|
value: {
|
|
type: Object,
|
|
default: () => ({})
|
|
},
|
|
errors: {
|
|
type: Array,
|
|
default: () => ([])
|
|
},
|
|
sourceAllowedTypes: {
|
|
type: Array,
|
|
default: () => ([])
|
|
},
|
|
destinationAllowedTypes: {
|
|
type: Array,
|
|
default: () => ([])
|
|
},
|
|
transactionType: {
|
|
type: String,
|
|
default: 'any'
|
|
},
|
|
},
|
|
data() {
|
|
return {
|
|
query: '',
|
|
accounts: [],
|
|
accountTypes: [],
|
|
initialSet: [],
|
|
selectedAccount: {},
|
|
//account: this.value,
|
|
accountName: '',
|
|
selectedAccountTrigger: false,
|
|
}
|
|
},
|
|
created() {
|
|
//// console.log('TransactionAccount::created()');
|
|
//this.selectedAccountTrigger = true;
|
|
this.accountName = this.value.name ?? '';
|
|
//// console.log('TransactionAccount direction=' + this.direction + ', type=' + this.transactionType + ' , name="' + this.accountName + '"');
|
|
//this.createInitialSet();
|
|
},
|
|
methods: {
|
|
getACURL: function (types, query) {
|
|
//// console.log('TransactionAccount::getACURL()');
|
|
return './api/v1/autocomplete/accounts?types=' + types.join(',') + '&query=' + query;
|
|
},
|
|
userSelectedAccount: function (event) {
|
|
// console.log('userSelectedAccount!');
|
|
// console.log('To prevent invalid propogation, set selectedAccountTrigger = true');
|
|
this.selectedAccountTrigger = true;
|
|
this.selectedAccount = event;
|
|
},
|
|
systemReturnedAccount: function (event) {
|
|
// console.log('userSelectedAccount!');
|
|
// console.log('To prevent invalid propogation, set selectedAccountTrigger = false');
|
|
this.selectedAccountTrigger = false;
|
|
this.selectedAccount = event;
|
|
},
|
|
clearAccount: function () {
|
|
//// console.log('TransactionAccount::clearAccount()');
|
|
this.accounts = this.initialSet;
|
|
//this.account = {name: '', type: 'no_type', id: null, currency_id: null, currency_code: null, currency_symbol: null};
|
|
this.accountName = '';
|
|
},
|
|
lookupAccount: debounce(function () {
|
|
//// console.log('TransactionAccount::lookupAccount()');
|
|
//// console.log('In lookupAccount()');
|
|
if (0 === this.accountTypes.length) {
|
|
// set the types from the default types for this direction:
|
|
this.accountTypes = 'source' === this.direction ? this.sourceAllowedTypes : this.destinationAllowedTypes;
|
|
}
|
|
// // console.log(this.direction + ': Will search for types:');
|
|
// // console.log(this.accountTypes);
|
|
|
|
// update autocomplete URL:
|
|
axios.get(this.getACURL(this.accountTypes, this.accountName))
|
|
.then(response => {
|
|
//// console.log('Got a response!');
|
|
this.accounts = response.data;
|
|
//// console.log(response.data);
|
|
})
|
|
}, 300),
|
|
|
|
createInitialSet: function () {
|
|
//// console.log('TransactionAccount::createInitialSet()');
|
|
let types = this.sourceAllowedTypes;
|
|
if ('destination' === this.direction) {
|
|
types = this.destinationAllowedTypes;
|
|
}
|
|
// // console.log('createInitialSet() direction=' + this.direction + ' resets to these types:');
|
|
// // console.log(types);
|
|
|
|
axios.get(this.getACURL(types, ''))
|
|
.then(response => {
|
|
this.accounts = response.data;
|
|
this.initialSet = response.data;
|
|
});
|
|
}
|
|
},
|
|
watch: {
|
|
sourceAllowedTypes: function (value) {
|
|
//// console.log('TransactionAccount::sourceAllowedTypes()');
|
|
// // console.log(this.direction + ' account noticed change in sourceAllowedTypes');
|
|
// // console.log(value);
|
|
this.createInitialSet();
|
|
},
|
|
destinationAllowedTypes: function (value) {
|
|
//// console.log('TransactionAccount::destinationAllowedTypes()');
|
|
// // console.log(this.direction + ' account noticed change in destinationAllowedTypes');
|
|
// // console.log(value);
|
|
this.createInitialSet();
|
|
},
|
|
/**
|
|
* Triggered when the user selects an account from the auto-complete.
|
|
*
|
|
* @param value
|
|
*/
|
|
selectedAccount: function (value) {
|
|
// console.log('TransactionAccount::watch selectedAccount()');
|
|
// console.log(value);
|
|
if (true === this.selectedAccountTrigger) {
|
|
// console.log('$emit alles!');
|
|
this.$emit('set-account',
|
|
{
|
|
index: this.index,
|
|
direction: this.direction,
|
|
id: value.id,
|
|
type: value.type,
|
|
name: value.name,
|
|
currency_id: value.currency_id,
|
|
currency_code: value.currency_code,
|
|
currency_symbol: value.currency_symbol,
|
|
}
|
|
);
|
|
// console.log('watch::selectedAccount() will now set accountName because selectedAccountTrigger = true');
|
|
this.accountName = value.name;
|
|
}
|
|
},
|
|
accountName: function (value) {
|
|
// console.log('now at watch accountName("' + value + '")');
|
|
// console.log(this.selectedAccountTrigger);
|
|
if (true === this.selectedAccountTrigger) {
|
|
// console.log('Do nothing because selectedAccountTrigger = true');
|
|
}
|
|
if (false === this.selectedAccountTrigger) {
|
|
// console.log('$emit name from watch::accountName() because selectedAccountTrigger = false');
|
|
this.$emit('set-account',
|
|
{
|
|
index: this.index,
|
|
direction: this.direction,
|
|
id: null,
|
|
type: null,
|
|
name: value,
|
|
currency_id: null,
|
|
currency_code: null,
|
|
currency_symbol: null,
|
|
}
|
|
);
|
|
// this.account = {name: value, type: null, id: null, currency_id: null, currency_code: null, currency_symbol: null};
|
|
}
|
|
// console.log('set selectedAccountTrigger to be FALSE');
|
|
this.selectedAccountTrigger = false;
|
|
// this.selectedAccountTrigger = false;
|
|
},
|
|
value: function (value) {
|
|
// console.log('TransactionAccount::watch value(' + JSON.stringify(value) + ')');
|
|
this.systemReturnedAccount(value);
|
|
|
|
// // console.log('Index ' + this.index + ' nwAct: ', value);
|
|
// // console.log(this.direction + ' account overruled by external forces.');
|
|
// // console.log(value);
|
|
//this.account = value;
|
|
//this.selectedAccountTrigger = true;
|
|
// this.accountName = value.name ?? '';
|
|
// if(null !== value.id) {
|
|
// return;
|
|
// }
|
|
// this.selectedAccountTrigger = true;
|
|
//
|
|
// // console.log('Set selectedAccountTrigger = true');
|
|
// this.selectedAccount = value;
|
|
}
|
|
},
|
|
computed: {
|
|
accountKey: {
|
|
get() {
|
|
return 'source' === this.direction ? 'source_account' : 'destination_account';
|
|
}
|
|
},
|
|
visible: {
|
|
get() {
|
|
// index 0 is always visible:
|
|
if (0 === this.index) {
|
|
return true;
|
|
}
|
|
// // console.log('Direction of account ' + this.index + ' is ' + this.direction + '(' + this.transactionType + ')');
|
|
// // console.log(this.transactionType);
|
|
if ('source' === this.direction) {
|
|
return 'any' === this.transactionType || 'Deposit' === this.transactionType || typeof this.transactionType === 'undefined';
|
|
}
|
|
if ('destination' === this.direction) {
|
|
return 'any' === this.transactionType || 'Withdrawal' === this.transactionType || typeof this.transactionType === 'undefined';
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|