-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: rename EntityListContent to EntityView (#959)
* refactor: rename EntityListContent to EntityView * chore: remove unused filter props model * chore: remove unused EntityListBlueprint * refactor: entity filters types * refactor: define slots for view component and switch * fix: EntityGrid useMemo * feat: add isListLoading prop * feat: add executor/status icon size prop * feat: is test/test-suite with execution check * feat: add tests/testSuites metrics provider * feat: secondary label list item * feat: view component additional props * refactor: testsMetrics and testSuitesMetrics * feat: labels filters key value input * feat: EntityGridItemDropdown * refactor: separate styled component for entity view * feat: view component base props * feat: reusable EntityDropdown atom * refactor: dots dropdown open prop * refactor: navigate link * refactor: do not use cloneElement * refactor: remove onAbort + abort all executions * refactor: add test/test suite button * refactor: smaller filters width * refactor: table sorting style * refactor: filters flex * refactor: changes * refactor: metrics for grid/table view * refactor: improvements * chore: remove unused
- Loading branch information
1 parent
57c31d9
commit df55203
Showing
58 changed files
with
894 additions
and
578 deletions.
There are no files selected for viewing
6 changes: 3 additions & 3 deletions
6
packages/web/src/components/atoms/ExecutorIcon/ExecutorIcon.styled.tsx
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
10 changes: 5 additions & 5 deletions
10
packages/web/src/components/atoms/StatusIcon/StatusIcon.styled.tsx
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const StyledStatusIcon = styled.div` | ||
export const StyledStatusIcon = styled.div<{$size: 'small' | 'large'}>` | ||
display: flex; | ||
justify-content: center; | ||
align-items: center; | ||
height: 28px; | ||
width: 28px; | ||
height: ${({$size}) => ($size === 'large' ? '28px' : '20px')}; | ||
width: ${({$size}) => ($size === 'large' ? '28px' : '20px')}; | ||
border: 1px solid; | ||
border-radius: 4px; | ||
span { | ||
width: 20px; | ||
height: 20px; | ||
width: ${({$size}) => ($size === 'large' ? '20px' : '12px')}; | ||
height: ${({$size}) => ($size === 'large' ? '20px' : '12px')}; | ||
} | ||
`; |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.