Add Configuration menu with generic table editor for 8 DB tables#22
Merged
Merged
Conversation
…ndent entities Drops the standalone ScrapeConfigurationEntity/FK now that ConnectionStrings, SearchConfiguration, UserConfiguration and ScrapeDirectories own their own rows directly, removing an unnecessary join. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Adds Edit Connection Strings/File Classification Categories/Search Configuration/Model to Ignore/Scrape Directories/Search Categories/Tag to Ignore/User Configuration to the File menu. One generic, descriptor-driven EntityEditorViewModel<T> + EntityEditorWindow backs all 8 screens (DataGrid CRUD, JSON Import/Export to the user's Documents folder) instead of 8 bespoke screens. Search Categories rows auto-stamp SearchConfigurationId from the app's single SearchConfiguration row rather than exposing the FK. Add/Delete are reactive to row count so single-row configuration tables can still create their first row when empty, rather than being permanently disabled. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
astar-development-jb
enabled auto-merge (squash)
July 14, 2026 21:25
astar-development-jb
approved these changes
Jul 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
_Configurationsubmenu (replacing the first_Fileplaceholder) with 8 entries: Edit Connection Strings Configuration, Edit File Classification Categories Configuration, Edit Search Configuration, Edit Model to Ignore, Edit Scrape Directories, Edit Search Categories, Edit Tag to Ignore, Edit User ConfigurationEntityEditorViewModel<TEntity>+EntityEditorWindowbacks all 8 screens (DataGrid CRUD + JSON Import/Export to the user's Documents folder) instead of 8 bespoke screensSearchCategoryEntityrows auto-stampSearchConfigurationIdfrom the app's singleSearchConfigurationrow on save rather than exposing the FK as an editable columnTest plan
dotnet build— solution builds clean, 0 warnings/errorsdotnet test --project AStar.Dev.Wallpaper.Scraper.Tests.Unit— 65 passed (generic engine, factory descriptors, MainWindowViewModel command wiring)dotnet test --project AStar.Dev.Infrastructure.AppDb.Tests.Unit— 3 passed🤖 Generated with Claude Code