Add dictionary management feature with full CRUD operations#24
Merged
Theosakamg merged 10 commits intomasterfrom Nov 27, 2025
Merged
Add dictionary management feature with full CRUD operations#24Theosakamg merged 10 commits intomasterfrom
Theosakamg merged 10 commits intomasterfrom
Conversation
- Create DictionaryCard component for managing dictionaries - Create DictionaryItemsCard dialog for editing dictionary items - Add dictionary.service.ts with Fastly API integration - Add dictionary.interface.ts with TypeScript interfaces - Integrate DictionaryCard into HomeView after ACLs Features: - List/Add/Edit/Delete dictionaries with VCL versioning - Inline editing of dictionary items (key/value pairs) - Write-only dictionary support - Name validation and error handling - Follows ACL pattern for consistency - Event bus integration for cross-component updates 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR adds comprehensive dictionary management functionality to the application, enabling users to perform full CRUD operations on Fastly dictionaries and their items. The implementation follows the existing ACL pattern for consistency and includes VCL version management.
Key Changes:
- Added dictionary service layer with Fastly API integration for all CRUD operations
- Created DictionaryCard component for managing dictionaries with inline editing support
- Implemented DictionaryItemsCard dialog for editing dictionary key-value pairs with validation
Reviewed Changes
Copilot reviewed 5 out of 5 changed files in this pull request and generated 6 comments.
Show a summary per file
| File | Description |
|---|---|
| src/views/HomeView.vue | Integrates DictionaryCard component into the main view after ACLs |
| src/components/dictionaries/dictionary.service.ts | Implements API service with methods for dictionary and dictionary item operations |
| src/components/dictionaries/dictionary.interface.ts | Defines TypeScript interfaces for Dictionary and DictionaryItem entities |
| src/components/dictionaries/DictionaryItemsCard.vue | Provides dialog component for editing dictionary items with VCL versioning |
| src/components/dictionaries/DictionaryCard.vue | Implements main card component for listing and managing dictionaries |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
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.
Features:
🤖 Generated with Claude Code
Closes #12