2021-04-13 11:02:41 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
2020-12-25 22:29:42 +01:00
|
|
|
<script lang="typescript">
|
2021-03-21 13:47:52 +01:00
|
|
|
import InputBox from "./InputBox.svelte";
|
|
|
|
|
2021-10-07 15:31:49 +02:00
|
|
|
import type { Writable } from "svelte/store";
|
|
|
|
import * as tr from "../lib/ftl";
|
2021-01-23 13:54:21 +01:00
|
|
|
import { RevlogRange, daysToRevlogRange } from "./graph-helpers";
|
2020-12-25 22:29:42 +01:00
|
|
|
|
|
|
|
enum SearchRange {
|
|
|
|
Deck = 1,
|
|
|
|
Collection = 2,
|
|
|
|
Custom = 3,
|
|
|
|
}
|
|
|
|
|
2021-03-21 22:35:53 +01:00
|
|
|
export let loading: boolean;
|
2020-12-25 22:29:42 +01:00
|
|
|
|
2021-03-21 22:35:53 +01:00
|
|
|
export let days: Writable<number>;
|
|
|
|
export let search: Writable<string>;
|
2020-12-25 22:29:42 +01:00
|
|
|
|
2021-03-21 23:45:59 +01:00
|
|
|
let revlogRange = daysToRevlogRange($days);
|
2021-03-22 02:44:08 +01:00
|
|
|
let searchRange =
|
|
|
|
$search === "deck:current"
|
2020-12-26 18:24:24 +01:00
|
|
|
? SearchRange.Deck
|
2021-03-21 23:45:59 +01:00
|
|
|
: $search === ""
|
2020-12-26 18:24:24 +01:00
|
|
|
? SearchRange.Collection
|
|
|
|
: SearchRange.Custom;
|
2020-12-25 22:29:42 +01:00
|
|
|
|
2021-03-21 23:45:59 +01:00
|
|
|
let displayedSearch = $search;
|
2020-12-25 22:29:42 +01:00
|
|
|
|
2021-03-22 15:08:52 +01:00
|
|
|
$: {
|
2020-12-25 22:29:42 +01:00
|
|
|
switch (searchRange as SearchRange) {
|
|
|
|
case SearchRange.Deck:
|
2021-03-22 00:13:52 +01:00
|
|
|
$search = displayedSearch = "deck:current";
|
2020-12-25 22:29:42 +01:00
|
|
|
break;
|
|
|
|
case SearchRange.Collection:
|
2021-03-22 00:13:52 +01:00
|
|
|
$search = displayedSearch = "";
|
2020-12-25 22:29:42 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 15:08:52 +01:00
|
|
|
$: {
|
2020-12-25 22:29:42 +01:00
|
|
|
switch (revlogRange as RevlogRange) {
|
|
|
|
case RevlogRange.Year:
|
2021-03-22 00:13:52 +01:00
|
|
|
$days = 365;
|
2020-12-25 22:29:42 +01:00
|
|
|
break;
|
|
|
|
case RevlogRange.All:
|
2021-03-22 00:13:52 +01:00
|
|
|
$days = 0;
|
2020-12-25 22:29:42 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-22 02:49:56 +01:00
|
|
|
function searchKeyUp(event: KeyboardEvent): void {
|
2020-12-25 22:29:42 +01:00
|
|
|
// fetch data on enter
|
2021-03-22 15:08:52 +01:00
|
|
|
if (event.code === "Enter") {
|
2021-03-22 00:13:52 +01:00
|
|
|
$search = displayedSearch;
|
2020-12-25 22:29:42 +01:00
|
|
|
}
|
2021-03-22 15:25:49 +01:00
|
|
|
}
|
2020-12-25 22:29:42 +01:00
|
|
|
|
2021-03-26 11:23:43 +01:00
|
|
|
const year = tr.statisticsRange_1YearHistory();
|
|
|
|
const deck = tr.statisticsRangeDeck();
|
|
|
|
const collection = tr.statisticsRangeCollection();
|
|
|
|
const searchLabel = tr.statisticsRangeSearch();
|
|
|
|
const all = tr.statisticsRangeAllHistory();
|
2020-12-25 22:29:42 +01:00
|
|
|
</script>
|
|
|
|
|
2021-05-26 01:21:33 +02:00
|
|
|
<div class="range-box">
|
|
|
|
<div class="spin" class:loading>◐</div>
|
|
|
|
|
|
|
|
<InputBox>
|
|
|
|
<label>
|
|
|
|
<input type="radio" bind:group={searchRange} value={SearchRange.Deck} />
|
|
|
|
{deck}
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input
|
|
|
|
type="radio"
|
|
|
|
bind:group={searchRange}
|
|
|
|
value={SearchRange.Collection}
|
|
|
|
/>
|
|
|
|
{collection}
|
|
|
|
</label>
|
|
|
|
|
|
|
|
<input
|
|
|
|
type="text"
|
|
|
|
bind:value={displayedSearch}
|
|
|
|
on:keyup={searchKeyUp}
|
|
|
|
on:focus={() => {
|
|
|
|
searchRange = SearchRange.Custom;
|
|
|
|
}}
|
|
|
|
placeholder={searchLabel}
|
|
|
|
/>
|
|
|
|
</InputBox>
|
|
|
|
|
|
|
|
<InputBox>
|
|
|
|
<label>
|
|
|
|
<input type="radio" bind:group={revlogRange} value={RevlogRange.Year} />
|
|
|
|
{year}
|
|
|
|
</label>
|
|
|
|
<label>
|
|
|
|
<input type="radio" bind:group={revlogRange} value={RevlogRange.All} />
|
|
|
|
{all}
|
|
|
|
</label>
|
|
|
|
</InputBox>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="range-box-pad" />
|
|
|
|
|
2021-03-21 13:47:52 +01:00
|
|
|
<style lang="scss">
|
|
|
|
.range-box {
|
|
|
|
position: fixed;
|
|
|
|
z-index: 1;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
color: var(--text-fg);
|
|
|
|
background: var(--window-bg);
|
|
|
|
padding: 0.5em;
|
|
|
|
|
|
|
|
@media print {
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes spin {
|
|
|
|
0% {
|
|
|
|
-webkit-transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
-webkit-transform: rotate(360deg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.spin {
|
|
|
|
display: inline-block;
|
|
|
|
position: absolute;
|
|
|
|
font-size: 2em;
|
|
|
|
animation: spin;
|
|
|
|
animation-duration: 1s;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
|
2021-03-21 22:35:53 +01:00
|
|
|
&.loading {
|
2021-03-21 13:47:52 +01:00
|
|
|
opacity: 0.5;
|
|
|
|
transition: opacity 1s;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.range-box-pad {
|
|
|
|
height: 2em;
|
|
|
|
}
|
|
|
|
</style>
|