Skip to content
Snippets Groups Projects

Feat/open submap bioentity

Merged Mateusz Bolewski requested to merge feat/open-submap-bioentity into development
3 unresolved threads

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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">
  • LGTM. Please add description to future PRs

    Edited by Tadeusz Miesiąc
  • Tadeusz Miesiąc approved this merge request

    approved this merge request

  • 63 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 () => {
  • Overall LGTM

    RFC - Case where map is already opened is not covered

  • Adrian Orłów approved this merge request

    approved this merge request

  • Mateusz Bolewski added 3 commits

    added 3 commits

    Compare with previous version

  • added 1 commit

    • 5664e3b4 - feat(search): code review fixes

    Compare with previous version

  • Mateusz Bolewski enabled an automatic merge when the pipeline for 5664e3b4 succeeds

    enabled an automatic merge when the pipeline for 5664e3b4 succeeds

  • Mateusz Bolewski mentioned in commit 8dcd4e5f

    mentioned in commit 8dcd4e5f

  • Please register or sign in to reply
    Loading