@@ -15,6 +15,7 @@ import {
15
15
16
16
import {
17
17
OFFSET_KIND_DEFAULT ,
18
+ selectSelectedLwAdapterDef ,
18
19
selectSelectedLwDef ,
19
20
selectSelectedLwOverview ,
20
21
} from '/app/redux/protocol-runs'
@@ -29,10 +30,8 @@ import type {
29
30
SelectedLwOverview ,
30
31
} from '/app/redux/protocol-runs'
31
32
32
- // TODO(jh, 03-14-25): Current designs/behavior do not include rendering the
33
- // adapter beneath the labware if present, but let's add this!
34
-
35
- /** On the LPC deck, the only visible labware should be the labware with an actively edited offset.
33
+ /** On the LPC deck, the only visible labware should be the labware with an actively edited offset (the topmost)
34
+ * and the labware immediately beneath the topmost labware.
36
35
* Modules are always visible if they are not in the actively utilized deck slot.
37
36
* If modules are in the actively utilized deck slot:
38
37
* If LPCing the default offset, ensure the module is always cleared.
@@ -48,6 +47,7 @@ export function LPCDeck({ runId }: EditOffsetContentProps): JSX.Element {
48
47
const labwareDef = useSelector (
49
48
selectSelectedLwDef ( runId )
50
49
) as LabwareDefinition2
50
+ const adapterLwDef = useSelector ( selectSelectedLwAdapterDef ( runId ) )
51
51
52
52
const offsetLocationDetails = selectedLwInfo . offsetLocationDetails as OffsetLocationDetails
53
53
const { closestBeneathModuleModel, kind : offsetKind } = offsetLocationDetails
@@ -80,15 +80,29 @@ export function LPCDeck({ runId }: EditOffsetContentProps): JSX.Element {
80
80
}
81
81
}
82
82
83
- const buildLabwareOnDeck = ( ) : LabwareOnDeck [ ] => [
84
- {
83
+ const buildLabwareOnDeck = ( ) : LabwareOnDeck [ ] => {
84
+ const lpcLabwareOnDeck = {
85
85
labwareLocation : {
86
86
...offsetLocationDetails ,
87
87
slotName : offsetLocationDetails . addressableAreaName ,
88
88
} ,
89
89
definition : labwareDef ,
90
- } ,
91
- ]
90
+ }
91
+ const adapterLwOnDeck =
92
+ adapterLwDef != null
93
+ ? {
94
+ labwareLocation : {
95
+ ...offsetLocationDetails ,
96
+ slotName : offsetLocationDetails . addressableAreaName ,
97
+ } ,
98
+ definition : adapterLwDef ,
99
+ }
100
+ : null
101
+
102
+ return adapterLwOnDeck != null
103
+ ? [ adapterLwOnDeck , lpcLabwareOnDeck ]
104
+ : [ lpcLabwareOnDeck ]
105
+ }
92
106
93
107
return (
94
108
< Flex css = { DECK_CONTAINER_STYLE } >
0 commit comments