Skip to content
Snippets Groups Projects

feat(results 2nd step): created dummy component for results

Merged Tadeusz Miesiąc requested to merge feature/MIN-95-drugs-list into development
4 unresolved threads

Description

Added dummy component for results 2nd step image

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
1 import { DrawerHeadingBackwardButton } from '@/shared/DrawerHeadingBackwardButton';
2 import { PinsList } from './PinsList';
3
4 const PINS_LIST = [
  • 1 interface PinOrangeProps {
    2 className: string;
    3 }
    4
    5 export const PinOrange = ({ className }: PinOrangeProps): JSX.Element => (
    6 <svg
    7 width="18"
    8 height="24"
    9 viewBox="0 0 18 24"
    10 fill="none"
    11 xmlns="http://www.w3.org/2000/svg"
    12 className={className}
    13 >
    14 <path
    15 d="M9 0C4.575 0 0 3.375 0 9C0 14.325 8.1 22.65 8.475 23.025C8.625 23.175 8.775 23.25 9 23.25C9.225 23.25 9.375 23.175 9.525 23.025C9.9 22.65 18 14.4 18 9C18 3.375 13.425 0 9 0ZM9 12C7.35 12 6 10.65 6 9C6 7.35 7.35 6 9 6C10.65 6 12 7.35 12 9C12 10.65 10.65 12 9 12Z"
    16 fill="#E17221"
  • mateuszmiko approved this merge request

    approved this merge request

  • 1 import { useAppDispatch } from '@/redux/hooks/useAppDispatch';
    2 import { closeDrawer } from '@/redux/drawer/drawer.slice';
    3 import { IconButton } from '@/shared/IconButton';
    4
    5 export const CLOSE_BUTTON_ROLE = 'close-drawer-button';
    6 export const BACK_BUTTON_ROLE = 'back-button';
  • 9 import projectReducer from '@/redux/project/project.slice';
    10 import searchReducer from '@/redux/search/search.slice';
    11 import modelsReducer from '@/redux/models/models.slice';
    12 import { SearchState } from '@/redux/search/search.types';
    13 import { ProjectState } from '@/redux/project/project.types';
    14 import { DrugsState } from '@/redux/drugs/drugs.types';
    15 import { MirnasState } from '@/redux/mirnas/mirnas.types';
    16 import { ChemicalsState } from '@/redux/chemicals/chemicals.types';
    17 import { BioEntityContentsState } from '@/redux/bioEntityContents/bioEntityContents.types';
    18 import { DrawerState } from '@/redux/drawer/drawer.types';
    19
    20 interface WrapperProps {
    21 children: React.ReactNode;
    22 }
    23
    24 export type InitialStoreState = {
    • I see two issues here:

      1. IMO this type shouldn't be a part of the util if we need to use it outside the util file. It would be better to extract it to more global file as redux.ts where StoreType is defined

      2. It's a clone of original store structure - on any new store structure change, we'll need to update this type also. IMO it would be better to Pick<> this type from the original StoreType or define InitialStoreState globally in the redux.ts file

    • Thx. Partial is going to do the work here -> I need to make every property of StoreType optional

    • Although, this type is strictly related with this helper (every field is optional). I added fix but going to leave it here

    • Tadeusz Miesiąc changed this line in version 2 of the diff

      changed this line in version 2 of the diff

    • Please register or sign in to reply
  • LGTM but fixes regarding InitialStoreState type is an RFC from my side

  • added 1 commit

    • fde4c9a8 - refactor(pr fixes): pr fixes

    Compare with previous version

  • Tadeusz Miesiąc enabled an automatic merge when the pipeline for fde4c9a8 succeeds

    enabled an automatic merge when the pipeline for fde4c9a8 succeeds

  • Tadeusz Miesiąc mentioned in commit fabf5541

    mentioned in commit fabf5541

  • Please register or sign in to reply
    Loading