Feat/open submap bioentity
3 unresolved threads
3 unresolved threads
Merge request reports
Activity
Filter activity
assigned to @MateuszBolewski
18 mapId, 14 19 numberOfEntities, 15 20 bioEntities, 16 21 }: BioEntitiesSubmapItemProps): JSX.Element => { 17 22 const dispatch = useAppDispatch(); 23 const openedMaps = useAppSelector(mapOpenedMapsSelector); 24 25 const isMapAlreadyOpened = (modelId: number): boolean => 26 openedMaps.some(map => map.modelId === modelId); 18 27 19 28 const onSubmapClick = (): void => { 29 if (isMapAlreadyOpened(mapId)) { 30 dispatch(setActiveMap({ modelId: mapId })); 31 } else { 32 dispatch(openMapAndSetActive({ modelId: mapId, modelName: mapName })); 33 } 25 39 onClick={onSubmapClick} 26 40 type="button" 27 41 className="flex flex-row flex-nowrap items-center justify-between pl-6 [&:not(:last-of-type)]:pb-4" 42 data-testid="bio-entites-submap-button" 28 43 > 29 44 <p className="text-sm font-normal"> 30 45 {mapName} ({numberOfEntities}) 31 46 </p> 32 <Icon name="arrow" className="h-6 w-6 fill-font-500" /> 47 <div data-testid="arrow-icon"> Same as !61 (comment 139470)
changed this line in version 4 of the diff
LGTM. Please add description to future PRs
Edited by Tadeusz Miesiąc63 await act(() => { 64 navigationButton.click(); 65 }); 66 67 const { 68 drawer: { 69 searchDrawerState: { stepType, selectedValue, currentStep, listOfBioEnitites }, 70 }, 71 } = store.getState(); 72 73 expect(stepType).toBe('bioEntity'); 74 expect(selectedValue).toBe(undefined); 75 expect(currentStep).toBe(SECOND_STEP); 76 expect(listOfBioEnitites).toBe(bioEntitiesContentFixture); 77 }); 78 it("should open submap and set it to active if it's not already opened", async () => { added 3 commits
-
10c53c88...21d10c49 - 2 commits from branch
development
- f2ecff9a - Merge branch 'development' of ssh://gitlab.lcsb.uni.lu:8022/minerva/frontend...
-
10c53c88...21d10c49 - 2 commits from branch
enabled an automatic merge when the pipeline for 5664e3b4 succeeds
mentioned in commit 8dcd4e5f
Please register or sign in to reply