A tool to help Granblue Fantasy players create and share teams and strategies.
## Summary Add job accessories feature and migrate jobs list to DatabaseGridWithProvider pattern: - Jobs list now uses DatabaseGridWithProvider (consistent with weapons/characters/summons) - Segmented control to switch between jobs and accessories views - Full CRUD pages for job accessories (detail, edit, new) - Job creation page for editors - Navigation dropdown for jobs section ## Changes ### DatabaseGridWithProvider extension - Extended to support `jobs` resource - Added `searchJobs` method to search adapter - Job-specific filters (row, proficiency, master_level, etc.) - Collection filters hidden for jobs (no element/rarity/series) ### Job grid cells - `JobIconCell` - portrait thumbnail - `JobTierCell` - row tier badge - `JobProficienciesCell` - weapon proficiency icons - `JobFeaturesCell` - master/ultimate/accessory badges ### Job accessories - Detail page with job info - Edit/new pages for editors - Type utilities (Shield/Manatura) ### Navigation - Dropdown with "New job" and "New job accessory" options ## Dependencies Requires hensei-api#206 for backend endpoints. ## Test plan - [ ] Jobs list loads with DatabaseGridWithProvider - [ ] Segmented control switches between jobs/accessories - [ ] Job accessory detail/edit/new pages work - [ ] Job creation page works for editors - [ ] Navigation dropdown appears on job pages |
||
|---|---|---|
| .storybook | ||
| .vscode | ||
| messages | ||
| project.inlang | ||
| src | ||
| static | ||
| .gitignore | ||
| .mcp.json | ||
| .npmrc | ||
| .prettierignore | ||
| .prettierrc | ||
| CLAUDE.md | ||
| eslint.config.js | ||
| NEXT_SESSION_PROMPT.md | ||
| package.json | ||
| pnpm-lock.yaml | ||
| README.md | ||
| svelte.config.js | ||
| TANSTACK_QUERY_MIGRATION_CONTINUATION.md | ||
| tsconfig.json | ||
| TYPESCRIPT_IMPROVEMENTS.md | ||
| vite.config.ts | ||
| vitest-setup-client.ts | ||
| vitest.config.adapter.ts | ||
sv
Everything you need to build a Svelte project, powered by sv.
Creating a project
If you're seeing this, you've probably already done this step. Congrats!
# create a new project in the current directory
npx sv create
# create a new project in my-app
npx sv create my-app
Developing
Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
Building
To create a production version of your app:
npm run build
You can preview the production build with npm run preview.
To deploy your app, you may need to install an adapter for your target environment.