Skip to content

Commit

Permalink
Merge pull request #595 from populationgenomics/dev
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
illusional authored Oct 31, 2023
2 parents 24ae802 + aaf189a commit 37618f1
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 13 deletions.
13 changes: 10 additions & 3 deletions api/routes/web.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,18 @@ async def search_by_keyword(keyword: str, connection=get_projectless_db_connecti
projects = await pt.get_projects_accessible_by_user(
connection.author, readonly=True
)
project_ids = [p.id for p in projects]
responses = await SearchLayer(connection).search(keyword, project_ids=project_ids)
pmap = {p.id: p for p in projects}
responses = await SearchLayer(connection).search(
keyword, project_ids=list(pmap.keys())
)

for res in responses:
res.data.project = projects.get(res.data.project, res.data.project) # type: ignore
if res.data.project in pmap:
# the solution to the type issue is to create internal / external models
# and convert between them for transport
res.data.project = pmap[res.data.project].name # type: ignore
else:
res.data.project = str(res.data.project)

return SearchResponseModel(responses=responses)

Expand Down
26 changes: 16 additions & 10 deletions web/src/shared/components/Header/Search.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -72,12 +72,15 @@ const SearchReducer = (state: State, action: Action): State => {
}
}

const resultRenderer = ({ ...props }) => {
const resultRenderer = ({ data, ...props }) => {
let components = []
let icon: React.ReactElement = <></>
let available: string | undefined
let colour = 'black'
if (!props.data.id) {
if (!data) {
return <em>An error occurred when rendering search results</em>
}
if (!data?.id) {
available = `No access to this ${props.type}`
colour = 'gray'
}
Expand All @@ -89,27 +92,27 @@ const resultRenderer = ({ ...props }) => {

switch (props.type) {
case SearchResponseType.Sample: {
components.push(...(props.data.sample_external_ids || []))
components.push(...(data.sample_external_ids || []))
icon = <BloodtypeRoundedIcon sx={style} />
break
}
case SearchResponseType.Participant: {
components.push(...(props.data.participant_external_ids || []))
components.push(...(data.participant_external_ids || []))
icon = <PersonRoundedIcon sx={style} />
break
}
case SearchResponseType.Family: {
components.push(...(props.data.family_external_ids || []))
components.push(...(data.family_external_ids || []))
icon = <Diversity3RoundedIcon sx={style} />
break
}
case SearchResponseType.SequencingGroup: {
components.push(...(props.data.sample_external_ids || []))
components.push(...(data.sample_external_ids || []))
icon = <VaccinesRoundedIcon sx={style} />
break
}
case SearchResponseType.Error: {
components.push(props.data.error)
components.push(data?.error)
icon = <ErrorRoundedIcon sx={style} />
break
}
Expand All @@ -120,7 +123,7 @@ const resultRenderer = ({ ...props }) => {

const subtitle = components.length > 0 ? components.join(' · ') : null

const key = String(props.data.id || `${props.data.project}|${props.data.title}`)
const key = String(data.id || `${data.project}|${data.title}`)

// prefer early return for empty results
if (!props.title || !props.type) return <></>
Expand Down Expand Up @@ -148,7 +151,7 @@ const resultRenderer = ({ ...props }) => {
fontStyle: 'italic',
}}
>
{props.data.project}
{data.project}
</div>
</div>
</div>
Expand Down Expand Up @@ -227,7 +230,10 @@ const Searchbar: React.FunctionComponent = () => {
{
title: 'Error',
type: 'error',
error: { error: er.message },
data: {
id: '#error',
error: er.response?.data?.description || er.message,
},
},
] as SearchResponse[],
query: '',
Expand Down

0 comments on commit 37618f1

Please sign in to comment.