mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-02 10:22:09 +00:00
94 lines
3.1 KiB
Vue
94 lines
3.1 KiB
Vue
![]() |
<!--
|
||
|
- Calendar.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>
|
||
|
<div class="row">
|
||
|
<div class="col">Start</div>
|
||
|
<div class="col-8">{{ new Intl.DateTimeFormat(locale, {year: 'numeric', month: 'long', day: 'numeric'}).format(range.start) }}</div>
|
||
|
</div>
|
||
|
<div class="row">
|
||
|
<div class="col">End</div>
|
||
|
<div class="col-8">{{ new Intl.DateTimeFormat(locale, {year: 'numeric', month: 'long', day: 'numeric'}).format(range.end) }}</div>
|
||
|
</div>
|
||
|
<date-picker
|
||
|
v-model="range"
|
||
|
mode="date"
|
||
|
rows="2"
|
||
|
is-range
|
||
|
>
|
||
|
<template v-slot="{ inputValue, inputEvents, isDragging, togglePopover }">
|
||
|
<div class="btn-group btn-group-sm btn-group-justified">
|
||
|
<button
|
||
|
class="btn btn-secondary btn-sm"
|
||
|
@click="togglePopover({ placement: 'auto-start', positionFixed:true })"
|
||
|
><i class="fas fa-calendar-alt"></i></button>
|
||
|
<button
|
||
|
class="btn btn-secondary"
|
||
|
><i class="fas fa-history"></i></button>
|
||
|
|
||
|
|
||
|
<button class="btn btn-secondary dropdown-toggle" type="button" id="dropdownMenuButton" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
|
||
|
<i class="fas fa-list"></i>
|
||
|
</button>
|
||
|
<div class="dropdown-menu" aria-labelledby="dropdownMenuButton">
|
||
|
<a class="dropdown-item" href="#">(prev period)</a>
|
||
|
<a class="dropdown-item" href="#">(next period)</a>
|
||
|
<a class="dropdown-item" href="#">(this week?)</a>
|
||
|
</div>
|
||
|
|
||
|
</div>
|
||
|
<input type="hidden"
|
||
|
:class="isDragging ? 'text-gray-600' : 'text-gray-900'"
|
||
|
:value="inputValue.start"
|
||
|
v-on="inputEvents.start"
|
||
|
/>
|
||
|
<input type="hidden"
|
||
|
:class="isDragging ? 'text-gray-600' : 'text-gray-900'"
|
||
|
:value="inputValue.end"
|
||
|
v-on="inputEvents.end"
|
||
|
/>
|
||
|
</template>
|
||
|
</date-picker>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
export default {
|
||
|
name: "Calendar",
|
||
|
mounted() {
|
||
|
this.locale = localStorage.locale ?? 'en-US';
|
||
|
},
|
||
|
data() {
|
||
|
return {
|
||
|
locale: 'en-US',
|
||
|
range: {
|
||
|
start: new Date(window.sessionStart),
|
||
|
end: new Date(window.sessionEnd),
|
||
|
},
|
||
|
};
|
||
|
},
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
.dropdown-item {color:#212529;}
|
||
|
.dropdown-item:hover {color:#212529;}
|
||
|
</style>
|