Skip to content
Snippets Groups Projects

Feature/search bioentities details

Merged Mateusz Bolewski requested to merge feature/search-bioentities-details into development
8 unresolved threads

List and details of bio entities.

We cannot treat bio entities in the same way as mirna, chemicals or drugs. Thats why I decided to save list of all bio entities in store after clicking on individual submap.

I separated the components for bioEntities from the others (MiRNA, chemicals, drugs). Now, at the SearchDrawerWrapper component level, we have separate components:

  • ResultsList for drugs, chemicals and MiRNA
  • BioEntitiesResultsList for bio entites
Edited by Mateusz Bolewski

Merge request reports

Merge request pipeline #81763 passed

Merge request pipeline passed for 22758614

Test coverage 92.80% (-0.32%) from 1 job

Merged by Mateusz BolewskiMateusz Bolewski 1 year ago (Nov 21, 2023 11:24am UTC)

Merge details

  • Changes merged into development with ae10651f (commits were squashed).
  • Deleted the source branch.
  • Auto-merge enabled

Pipeline #81765 passed

Pipeline passed for ae10651f on development

Test coverage 92.80% (-0.32%) from 1 job

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
15 <Wrapper>
16 <BioEntitiesSubmapItem
17 mapName="main map"
18 numberOfEntities={21}
19 bioEntities={bioEntitiesContentFixture}
20 />
21 </Wrapper>,
22 ),
23 {
24 store,
25 }
26 );
27 };
9 28
10 29 describe('BioEntitiesSubmapItem - component', () => {
11 30 it('should display map name,number of elements, icon', () => {
  • 14 render(
    15 <Wrapper>
    16 <BioEntitiesSubmapItem
    17 mapName="main map"
    18 numberOfEntities={21}
    19 bioEntities={bioEntitiesContentFixture}
    20 />
    21 </Wrapper>,
    22 ),
    23 {
    24 store,
    25 }
    26 );
    27 };
    9 28
    10 29 describe('BioEntitiesSubmapItem - component', () => {
    • IMO it would be better to add testid for the subcomponent and test if whole component (in every possible case) is rendered correctly

      Contents of the subcomponent should be tested by the individual test file for the subcomponent, we don't need to do that here but redundancy is OK

    • Please register or sign in to reply
  • 9 13 mapName,
    10 14 numberOfEntities,
    11 }: BioEntitiesSubmapItemProps): JSX.Element => (
    12 <div className="flex flex-row flex-nowrap justify-between pl-6 [&:not(:last-of-type)]:pb-4">
    13 <p>
    14 {mapName} ({numberOfEntities})
    15 </p>
    16 <Icon name="arrow" className="h-6 w-6 fill-font-500" />
    17 </div>
    18 );
    15 bioEntities,
    16 }: BioEntitiesSubmapItemProps): JSX.Element => {
    17 const dispatch = useAppDispatch();
    18
    19 const onSubmapClick = (): void => {
    20 dispatch(displayBioEntitiesList(bioEntities));
  • 3 import { PinType } from './PinsList.types';
    4
    5 interface BioEntitiesPinsListProps {
    6 bioEnititesPins: BioEntityContent[];
    7 type: PinType;
    8 }
    9
    10 export const BioEntitiesPinsList = ({
    11 bioEnititesPins,
    12 type,
    13 }: BioEntitiesPinsListProps): JSX.Element => {
    14 return (
    15 <ul className="h-[calc(100vh-198px)] overflow-auto px-6 py-2">
    16 {bioEnititesPins &&
    17 bioEnititesPins.map(result => (
    18 <MirnaPinsListItem
  • 26 26 case 'bioEntity':
    27 27 return <div />;
    28 28 case 'chemicals':
    29 return <div />;
    29 return (
    30 <div className="h-[calc(100vh-198px)] overflow-auto">
    31 <AccordionsDetails pinsList={pinsList} type={type} />
    32 <ul className="px-6 py-2">
    33 {pinsList.map(result => {
    34 return result.data.targets.map(pin => (
    35 <MirnaPinsListItem key={pin.name} name={pin.name} type={type} pin={pin} />
    36 ));
  • 1 import { BioEntityContent } from '@/types/models';
    2 import { MirnaPinsListItem } from './PinsListItem';
    3 import { PinType } from './PinsList.types';
    4
    5 interface BioEntitiesPinsListProps {
    6 bioEnititesPins: BioEntityContent[];
    7 type: PinType;
    8 }
    9
    10 export const BioEntitiesPinsList = ({
  • RFC: MirnaPinsListItem functions inside component issues if there's no rationale behind

    Overall LGTM but a lot of tests are lacking - please add them whenever possible

    Edited by Adrian Orłów
  • 26 26 case 'bioEntity':
    27 27 return <div />;
    28 28 case 'chemicals':
    29 return <div />;
    29 return (
  • 26 26 case 'bioEntity':
  • Logic works as intended. There is few simplification of components you can implement and wrong naming. Thats RFC from my side.

    Btw. It's good idea to refresh Boy scout rule I cathed few places that could be easily fixed/improved with small amount of effort during development, but probably not all of them.

  • Tadeusz Miesiąc approved this merge request

    approved this merge request

  • Mateusz Bolewski added 11 commits

    added 11 commits

    Compare with previous version

  • added 1 commit

    • d5c54f4e - feat(search): splitted component for bio entites from rest pins

    Compare with previous version

  • Mateusz Bolewski changed the description

    changed the description

  • added 1 commit

    • 99c2573d - feat(search): removed not used imports

    Compare with previous version

  • Mateusz Bolewski added 8 commits

    added 8 commits

    Compare with previous version

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

    enabled an automatic merge when the pipeline for 22758614 succeeds

  • Mateusz Bolewski mentioned in commit ae10651f

    mentioned in commit ae10651f

  • Please register or sign in to reply
    Loading