2020-12-29 08:33:46 +01:00
|
|
|
<!--
|
|
|
|
|
- TransactionDate.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 class="text-xs d-none d-lg-block d-xl-block">
|
|
|
|
|
{{ $t('firefly.date_and_time') }}
|
|
|
|
|
</div>
|
|
|
|
|
<div class="input-group">
|
|
|
|
|
<input
|
2021-01-31 07:26:52 +01:00
|
|
|
:class="errors.length > 0 ? 'form-control is-invalid' : 'form-control'"
|
2020-12-29 08:33:46 +01:00
|
|
|
type="date"
|
|
|
|
|
ref="date"
|
|
|
|
|
:title="$t('firefly.date')"
|
2021-01-17 19:52:53 +01:00
|
|
|
v-model="localDate"
|
2020-12-29 08:33:46 +01:00
|
|
|
:disabled="index > 0"
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
name="date[]"
|
2021-01-17 19:52:53 +01:00
|
|
|
:placeholder="localDate"
|
2020-12-29 08:33:46 +01:00
|
|
|
>
|
|
|
|
|
<input
|
2021-01-31 07:26:52 +01:00
|
|
|
:class="errors.length > 0 ? 'form-control is-invalid' : 'form-control'"
|
2020-12-29 08:33:46 +01:00
|
|
|
type="time"
|
|
|
|
|
ref="time"
|
|
|
|
|
:title="$t('firefly.time')"
|
2021-01-17 19:52:53 +01:00
|
|
|
v-model="localTime"
|
2020-12-29 08:33:46 +01:00
|
|
|
:disabled="index > 0"
|
|
|
|
|
autocomplete="off"
|
|
|
|
|
name="time[]"
|
2021-01-17 19:52:53 +01:00
|
|
|
:placeholder="localTime"
|
2020-12-29 08:33:46 +01:00
|
|
|
>
|
|
|
|
|
</div>
|
2021-01-31 07:26:52 +01:00
|
|
|
<span v-if="errors.length > 0">
|
|
|
|
|
<span v-for="error in errors" class="text-danger small">{{ error }}<br/></span>
|
|
|
|
|
</span>
|
2020-12-29 08:33:46 +01:00
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
|
|
import {createNamespacedHelpers} from "vuex";
|
|
|
|
|
|
|
|
|
|
const {mapState, mapGetters, mapActions, mapMutations} = createNamespacedHelpers('transactions/create')
|
|
|
|
|
|
|
|
|
|
export default {
|
2021-01-31 07:26:52 +01:00
|
|
|
props: ['index', 'errors'],
|
2020-12-29 08:33:46 +01:00
|
|
|
name: "TransactionDate",
|
|
|
|
|
methods: {
|
|
|
|
|
...mapMutations(
|
|
|
|
|
[
|
|
|
|
|
'updateField',
|
2021-01-17 19:52:53 +01:00
|
|
|
'setDate'
|
2020-12-29 08:33:46 +01:00
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
},
|
|
|
|
|
computed: {
|
2021-01-31 07:26:52 +01:00
|
|
|
...mapGetters(
|
|
|
|
|
[
|
|
|
|
|
'transactionType',
|
|
|
|
|
'date',
|
|
|
|
|
'transactions'
|
|
|
|
|
]
|
|
|
|
|
),
|
2021-01-17 19:52:53 +01:00
|
|
|
localDate: {
|
2020-12-29 08:33:46 +01:00
|
|
|
get() {
|
2021-01-31 07:26:52 +01:00
|
|
|
if (this.date instanceof Date && !isNaN(this.date)) {
|
|
|
|
|
return this.date.toISOString().split('T')[0];
|
|
|
|
|
}
|
|
|
|
|
return '';
|
2020-12-29 08:33:46 +01:00
|
|
|
},
|
|
|
|
|
set(value) {
|
2021-01-17 19:52:53 +01:00
|
|
|
// bit of a hack but meh.
|
|
|
|
|
let newDate = new Date(value);
|
|
|
|
|
let current = new Date(this.date.getTime());
|
|
|
|
|
current.setFullYear(newDate.getFullYear());
|
|
|
|
|
current.setMonth(newDate.getMonth());
|
|
|
|
|
current.setDate(newDate.getDate());
|
|
|
|
|
this.setDate({date: current});
|
2020-12-29 08:33:46 +01:00
|
|
|
}
|
|
|
|
|
},
|
2021-01-17 19:52:53 +01:00
|
|
|
localTime: {
|
2020-12-29 08:33:46 +01:00
|
|
|
get() {
|
2021-01-31 07:26:52 +01:00
|
|
|
if (this.date instanceof Date && !isNaN(this.date)) {
|
|
|
|
|
return ('0' + this.date.getHours()).slice(-2) + ':' + ('0' + this.date.getMinutes()).slice(-2) + ':' + ('0' + this.date.getSeconds()).slice(-2);
|
|
|
|
|
}
|
|
|
|
|
return '';
|
2020-12-29 08:33:46 +01:00
|
|
|
},
|
|
|
|
|
set(value) {
|
2021-01-17 19:52:53 +01:00
|
|
|
// bit of a hack but meh.
|
|
|
|
|
let current = new Date(this.date.getTime());
|
|
|
|
|
let parts = value.split(':');
|
|
|
|
|
current.setHours(parseInt(parts[0]));
|
|
|
|
|
current.setMinutes(parseInt(parts[1]));
|
|
|
|
|
current.setSeconds(parseInt(parts[2]));
|
|
|
|
|
this.setDate({date: current});
|
2020-12-29 08:33:46 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
</script>
|