feat(admin): add data tools for export, import, and wipe

Add admin.data.export and admin.data.import permissions
Implement backend logic and API endpoints for data bundle management
Add Data Tools tab to admin interface with scope selection
Support Pokemon, Habitats, Items, Recipes, and Daily CheckList scopes
This commit is contained in:
2026-05-04 00:56:37 +08:00
parent fa06d24826
commit f2a8b67ebf
8 changed files with 941 additions and 4 deletions

View File

@@ -835,6 +835,59 @@ button:disabled,
gap: 12px;
}
.data-tool-grid {
display: grid;
gap: 0;
}
.data-tool-panel {
display: grid;
gap: 14px;
padding: 18px 0;
border-bottom: 1px solid var(--line);
}
.data-tool-panel:last-child {
border-bottom: 0;
padding-bottom: 0;
}
.data-tool-panel__header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
flex-wrap: wrap;
}
.data-tool-panel__header h3 {
margin: 0;
color: var(--ink);
font-size: 15px;
font-weight: 900;
}
.data-tool-scope-list {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 10px;
}
.data-tool-scope {
min-height: 44px;
display: flex;
align-items: center;
gap: 10px;
padding: 10px 0;
color: var(--ink-soft);
font-weight: 800;
}
.data-tool-scope input {
width: 18px;
height: 18px;
}
.pokemon-edit-form {
height: clamp(420px, calc(100dvh - 188px), 640px);
min-height: 0;