feat: add Stalker results page with filtering and pagination

- Introduced StalkerResultItem and StalkerResultsResponse types for handling API responses.
- Implemented StalkerExplorer component for displaying Stalker results with search and filter options.
- Added sorting functionality for Stalker results table.
- Enhanced Dashboard to include a button for navigating to Stalker results.
- Updated routing to support Stalker results page.
- Improved styles for section headers and inventory columns in the results table.
This commit is contained in:
Victor Noguera
2026-05-19 18:10:01 -04:00
parent 0f9b785cce
commit a7c0e44e3d
7 changed files with 2037 additions and 3 deletions

View File

@@ -41,6 +41,13 @@ p {
gap: 10px;
}
.section-header {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
}
.toolbar input,
.toolbar select,
button {
@@ -91,6 +98,23 @@ td {
overflow-wrap: anywhere;
}
.inventory-col {
min-width: 360px;
max-width: 520px;
white-space: normal;
overflow-wrap: anywhere;
}
.inventory-col a {
display: inline-block;
margin-right: 8px;
margin-bottom: 4px;
}
.stalker-table {
min-width: 1320px;
}
th {
background: #fafafb;
font-weight: 600;
@@ -262,4 +286,9 @@ th button {
.spark-grid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.section-header {
align-items: flex-start;
flex-direction: column;
}
}