From 0cafcc3a0578a7d7ea0c0596021ec1bfc8f1e7e5 Mon Sep 17 00:00:00 2001 From: Azalea <22280294+hykilpikonna@users.noreply.github.com> Date: Fri, 21 Nov 2025 16:06:44 +0800 Subject: [PATCH] [O] Decouple --- README.md | 2 + src/routes/import/netease/+page.svelte | 43 +++++++------------ src/routes/import/netease/ProgressList.svelte | 43 +++++++++++++++++++ 3 files changed, 61 insertions(+), 27 deletions(-) create mode 100644 src/routes/import/netease/ProgressList.svelte diff --git a/README.md b/README.md index f21ba4b..a54a1f8 100644 --- a/README.md +++ b/README.md @@ -12,3 +12,5 @@ Practice Japanese Karaoke lyrics reading and typing at the same time with KashiD 4. 历史成绩和进步曲线 5. 纯前端存储数据 +TODO: 404 page +TODO: Update an existing playlist \ No newline at end of file diff --git a/src/routes/import/netease/+page.svelte b/src/routes/import/netease/+page.svelte index 2d80a84..3f899c2 100644 --- a/src/routes/import/netease/+page.svelte +++ b/src/routes/import/netease/+page.svelte @@ -1,10 +1,11 @@ + +
+ {#if title} +
+
+ {title} +
+
{subtitle}
+
+ {/if} + + + +
+ {#each items as item} +
+ +
+ {item.title} + {#if item.subtitle} + {item.subtitle} + {/if} +
+
+ {/each} +
+
\ No newline at end of file