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
|
|
|
|
-->
|
2021-10-26 00:43:02 +02:00
|
|
|
<script lang="ts">
|
2021-03-21 13:47:52 +01:00
|
|
|
import Graph from "./Graph.svelte";
|
|
|
|
import InputBox from "./InputBox.svelte";
|
|
|
|
|
2021-10-07 15:31:49 +02:00
|
|
|
import { createEventDispatcher } from "svelte";
|
|
|
|
import type { Stats } from "../lib/proto";
|
|
|
|
import type { PreferenceStore } from "../sveltelib/preferences";
|
2021-11-12 09:19:01 +01:00
|
|
|
import * as tr2 from "../lib/ftl";
|
2021-01-05 16:13:06 +01:00
|
|
|
import { defaultGraphBounds } from "./graph-helpers";
|
2021-01-26 12:41:22 +01:00
|
|
|
import type { SearchEventMap } from "./graph-helpers";
|
2020-11-01 05:26:58 +01:00
|
|
|
import { gatherData, renderCards } from "./card-counts";
|
|
|
|
import type { GraphData, TableDatum } from "./card-counts";
|
2020-06-26 02:42:10 +02:00
|
|
|
|
2021-07-10 13:58:34 +02:00
|
|
|
export let sourceData: Stats.GraphsResponse;
|
|
|
|
export let preferences: PreferenceStore<Stats.GraphPreferences>;
|
2020-06-26 02:42:10 +02:00
|
|
|
|
2021-01-25 16:33:18 +01:00
|
|
|
let { cardCountsSeparateInactive, browserLinksSupported } = preferences;
|
2021-01-26 12:41:22 +01:00
|
|
|
const dispatch = createEventDispatcher<SearchEventMap>();
|
2021-01-06 13:40:05 +01:00
|
|
|
|
2020-07-04 05:38:46 +02:00
|
|
|
let svg = null as HTMLElement | SVGElement | null;
|
|
|
|
|
|
|
|
let bounds = defaultGraphBounds();
|
2020-08-12 10:58:21 +02:00
|
|
|
bounds.width = 225;
|
|
|
|
bounds.marginBottom = 0;
|
2020-07-31 09:19:31 +02:00
|
|
|
|
2021-05-26 01:21:33 +02:00
|
|
|
let graphData = null as unknown as GraphData;
|
|
|
|
let tableData = null as unknown as TableDatum[];
|
2021-01-04 14:04:51 +01:00
|
|
|
|
2020-07-06 06:01:49 +02:00
|
|
|
$: {
|
2021-03-26 11:23:43 +01:00
|
|
|
graphData = gatherData(sourceData, $cardCountsSeparateInactive);
|
2020-08-12 10:58:21 +02:00
|
|
|
tableData = renderCards(svg as any, bounds, graphData);
|
2020-06-27 13:10:17 +02:00
|
|
|
}
|
|
|
|
|
2021-11-12 09:19:01 +01:00
|
|
|
const label = tr2.statisticsCountsSeparateSuspendedBuriedCards();
|
|
|
|
const total = tr2.statisticsCountsTotalCards();
|
2020-07-04 05:38:46 +02:00
|
|
|
</script>
|
|
|
|
|
2021-03-21 13:47:52 +01:00
|
|
|
<Graph title={graphData.title}>
|
|
|
|
<InputBox>
|
2021-01-22 14:56:41 +01:00
|
|
|
<label>
|
|
|
|
<input type="checkbox" bind:checked={$cardCountsSeparateInactive} />
|
|
|
|
{label}
|
|
|
|
</label>
|
2021-03-21 13:47:52 +01:00
|
|
|
</InputBox>
|
2021-01-04 14:04:51 +01:00
|
|
|
|
2020-08-12 10:58:21 +02:00
|
|
|
<div class="counts-outer">
|
2021-12-29 06:04:15 +01:00
|
|
|
<div class="svg-container" width={bounds.width} height={bounds.height}>
|
|
|
|
<svg
|
|
|
|
bind:this={svg}
|
|
|
|
viewBox={`0 0 ${bounds.width} ${bounds.height}`}
|
|
|
|
style="opacity: {graphData.totalCards ? 1 : 0}"
|
|
|
|
>
|
|
|
|
<g class="counts" />
|
|
|
|
</svg>
|
|
|
|
</div>
|
2020-08-12 10:58:21 +02:00
|
|
|
<div class="counts-table">
|
|
|
|
<table>
|
2020-11-01 05:26:58 +01:00
|
|
|
{#each tableData as d, _idx}
|
2020-08-12 10:58:21 +02:00
|
|
|
<tr>
|
2020-08-21 07:06:03 +02:00
|
|
|
<!-- prettier-ignore -->
|
2020-08-12 10:58:21 +02:00
|
|
|
<td>
|
2021-01-06 13:40:05 +01:00
|
|
|
<span style="color: {d.colour};">■ </span>
|
2021-01-25 16:33:18 +01:00
|
|
|
{#if browserLinksSupported}
|
2021-01-06 19:26:47 +01:00
|
|
|
<span class="search-link" on:click={() => dispatch('search', { query: d.query })}>{d.label}</span>
|
|
|
|
{:else}
|
|
|
|
<span>{d.label}</span>
|
|
|
|
{/if}
|
2020-08-12 10:58:21 +02:00
|
|
|
</td>
|
|
|
|
<td class="right">{d.count}</td>
|
|
|
|
<td class="right">{d.percent}</td>
|
|
|
|
</tr>
|
|
|
|
{/each}
|
|
|
|
|
|
|
|
<tr>
|
2020-11-01 05:26:58 +01:00
|
|
|
<td><span style="visibility: hidden;">■</span> {total}</td>
|
2020-08-12 10:58:21 +02:00
|
|
|
<td class="right">{graphData.totalCards}</td>
|
|
|
|
<td />
|
2020-07-31 09:19:31 +02:00
|
|
|
</tr>
|
2020-08-12 10:58:21 +02:00
|
|
|
</table>
|
|
|
|
</div>
|
2020-07-31 09:19:31 +02:00
|
|
|
</div>
|
2021-03-21 13:47:52 +01:00
|
|
|
</Graph>
|
2021-05-26 01:21:33 +02:00
|
|
|
|
|
|
|
<style lang="scss">
|
|
|
|
svg {
|
|
|
|
transition: opacity 1s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.counts-outer {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
2021-12-29 06:04:15 +01:00
|
|
|
margin: 0 4vw;
|
2021-05-26 01:21:33 +02:00
|
|
|
|
2021-12-29 06:04:15 +01:00
|
|
|
.svg-container {
|
|
|
|
width: 225px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.counts-table {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2021-05-26 01:21:33 +02:00
|
|
|
|
2021-12-29 06:04:15 +01:00
|
|
|
table {
|
|
|
|
border-spacing: 1em 0;
|
|
|
|
padding-left: 4vw;
|
|
|
|
|
|
|
|
td {
|
|
|
|
white-space: nowrap;
|
|
|
|
padding: 0 min(4vw, 40px);
|
|
|
|
|
|
|
|
&.right {
|
|
|
|
text-align: right;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-05-26 01:21:33 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-29 06:04:15 +01:00
|
|
|
/* On narrow devices, stack graph and table in a column */
|
|
|
|
@media only screen and (max-width: 600px) {
|
|
|
|
.counts-outer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
2021-05-26 01:21:33 +02:00
|
|
|
|
2021-12-29 06:04:15 +01:00
|
|
|
.svg-container {
|
|
|
|
width: 180px;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
margin-left: 4vw;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.counts-table table td {
|
|
|
|
padding: 0 min(6vw, 30px);
|
|
|
|
}
|
|
|
|
}
|
2021-05-26 01:21:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.search-link:hover {
|
|
|
|
cursor: pointer;
|
|
|
|
color: var(--link);
|
|
|
|
text-decoration: underline;
|
|
|
|
}
|
|
|
|
</style>
|