blob: b5f5f2e2e9bfa80269a8a11d49e9bdacb4d99566 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
<script lang="js">
import CardThumb from './CardThumb.svelte';
import { deck, setDeck } from '../control/deck';
import { parseYdk, genYdk, downloadStringAsFile} from '../utils'
let fileInput;
function openDeck() {
fileInput.click();
}
function loadDeck(event) {
const file = event.target.files[0];
if (file) {
const reader = new FileReader();
reader.onload = (event) => {
let content = event.target.result;
setDeck(parseYdk(content));
};
reader.readAsText(file);
}
}
function saveDeck() {
let deckString = genYdk($deck);
downloadStringAsFile('mydeck.ydk', deckString)
}
</script>
<input bind:this={fileInput} style="display:none;" onchange={loadDeck} type="file" class="file-input" accept=".ydk" />
<div class="middle-panel">
<div class="control-bar">
<button class="btn" onclick={openDeck}>打开</button>
<button class="btn" onclick={saveDeck}>保存</button>
</div>
<div class="deck-section">
<div class="deck-group">
<h3>主卡组({$deck.main.length})</h3>
<div class="card-grid main-deck">
{#each $deck.main as card}
<div class="card-grid-thumb">
<CardThumb id={card} />
</div>
{/each}
</div>
</div>
<div class="deck-group">
<h3>额外卡组({$deck.extra.length})</h3>
<div class="card-grid extra-deck">
{#each $deck.extra as card}
<div class="card-grid-thumb">
<CardThumb id={card} />
</div>
{/each}
</div>
</div>
<div class="deck-group">
<h3>副卡组({$deck.side.length})</h3>
<div class="card-grid side-deck">
{#each $deck.side as card}
<div class="card-grid-thumb">
<CardThumb id={card} />
</div>
{/each}
</div>
</div>
</div>
</div>
<style>
.middle-panel {
width: 55%;
padding: 20px;
background-color: #fff;
overflow-y: auto;
}
.control-bar {
margin-bottom: 20px;
}
.btn {
padding: 8px 20px;
margin-right: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
}
.deck-group {
margin-bottom: 30px;
}
.deck-group h3 {
margin-bottom: 10px;
color: #333;
}
.card-grid {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
gap: 5px;
grid-auto-flow: dense;
overflow-y: auto;
padding: 10px;
border: 1px solid #ddd;
border-radius: 4px;
min-height: 80px;
}
.card-grid-thumb {
background-color: #eee;
aspect-ratio: 1/1.4;
border-radius: 5px;
}
</style>
|