Browse Source

impl save deck

Mistivia 1 month ago
parent
commit
86b9e2de76
2 changed files with 27 additions and 6 deletions
  1. 11 6
      src/components/MainPanel.svelte
  2. 16 0
      src/utils.js

+ 11 - 6
src/components/MainPanel.svelte

@@ -1,15 +1,15 @@
 <script lang="js">
 <script lang="js">
     import CardThumb from './CardThumb.svelte';
     import CardThumb from './CardThumb.svelte';
     import { deck, setDeck } from '../control/deck';
     import { deck, setDeck } from '../control/deck';
-    import { parseYdk } from '../utils'
+    import { parseYdk, genYdk, downloadStringAsFile} from '../utils'
 
 
     let fileInput;
     let fileInput;
     
     
-    let openDeck = () => {
+    function openDeck() {
         fileInput.click();
         fileInput.click();
-    };
+    }
 
 
-    let loadDeck = (event) => {
+    function loadDeck(event) {
         const file = event.target.files[0];
         const file = event.target.files[0];
         if (file) {
         if (file) {
             const reader = new FileReader();
             const reader = new FileReader();
@@ -19,7 +19,12 @@
             };
             };
             reader.readAsText(file); 
             reader.readAsText(file); 
         }
         }
-    };
+    }
+
+    function saveDeck() {
+        let deckString = genYdk($deck);
+        downloadStringAsFile('mydeck.ydk', deckString)
+    }
 
 
 </script>
 </script>
 
 
@@ -28,7 +33,7 @@
 <div class="middle-panel">
 <div class="middle-panel">
     <div class="control-bar">
     <div class="control-bar">
         <button class="btn" onclick={openDeck}>打开</button>
         <button class="btn" onclick={openDeck}>打开</button>
-        <button class="btn">保存</button>
+        <button class="btn" onclick={saveDeck}>保存</button>
     </div>
     </div>
     <div class="deck-section">
     <div class="deck-section">
         <div class="deck-group">
         <div class="deck-group">

+ 16 - 0
src/utils.js

@@ -42,7 +42,23 @@ function genYdk(deck) {
     return ydkContent;
     return ydkContent;
 }
 }
 
 
+function downloadStringAsFile(filename, text) {
+    const blob = new Blob([text], { type: 'text/plain' });
+    const link = document.createElement('a');
+    link.href = URL.createObjectURL(blob);
+    link.download = filename;
+    document.body.appendChild(link);
+
+    link.click();
+
+    document.body.removeChild(link);
+    URL.revokeObjectURL(link.href);
+}
+
+
 export {
 export {
     parseYdk,
     parseYdk,
     genYdk,
     genYdk,
+    downloadStringAsFile,
 };
 };
+