Enhances Services module with detail view and interactions

Adds comprehensive service detail view with multiple tabs and dynamic interactions
Implements client-side navigation between service list and detail views
Introduces mock service data catalog for flexible component rendering
Extends localization support for new service detail screens

Improves user experience by adding edit capabilities and smooth view transitions
This commit is contained in:
Janus C. H. Knudsen 2026-01-16 22:03:22 +01:00
parent fad5e46dfb
commit 120367acbb
22 changed files with 1780 additions and 597 deletions

View file

@ -5,6 +5,7 @@
ViewData["Title"] = "Services";
}
<!-- List View (default) -->
<swp-services-list-view id="services-list-view">
<swp-sticky-header>
<swp-header-content>
@ -21,30 +22,12 @@
@await Component.InvokeAsync("ServiceStatCard", "average-price")
</swp-stats-row>
</swp-header-content>
<swp-tab-bar>
<swp-tab class="active" data-tab="services">
<i class="ph ph-scissors"></i>
<span localize="services.tabs.services">Services</span>
</swp-tab>
<swp-tab data-tab="categories">
<i class="ph ph-folders"></i>
<span localize="services.tabs.categories">Kategorier</span>
</swp-tab>
</swp-tab-bar>
</swp-sticky-header>
<!-- Tab: Services -->
<swp-tab-content data-tab="services" class="active">
<swp-page-container>
@await Component.InvokeAsync("ServiceTable", "all-services")
</swp-page-container>
</swp-tab-content>
<!-- Tab: Categories -->
<swp-tab-content data-tab="categories">
<swp-page-container>
@await Component.InvokeAsync("CategoryTable", "all-categories")
</swp-page-container>
</swp-tab-content>
<swp-page-container>
@await Component.InvokeAsync("ServiceTable", "all-services")
</swp-page-container>
</swp-services-list-view>
<!-- Detail View (hidden by default, shown when row clicked) -->
@await Component.InvokeAsync("ServiceDetailView", "service-1")