-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
659 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,320 @@ | ||
import { | ||
Badge, | ||
Col, | ||
Container, | ||
Row, | ||
SegmentedControl, | ||
SegmentedElement, | ||
Spinner, | ||
Tag, | ||
TagGroup, | ||
Title, | ||
} from '@dataesr/dsfr-plus'; | ||
import { useQuery } from '@tanstack/react-query'; | ||
import { useEffect, useState } from 'react'; | ||
import { useSearchParams } from 'react-router-dom'; | ||
|
||
import Ribbon from '../../components/ribbon'; | ||
import DatasetsTile from '../../components/tiles/datasets'; | ||
import OpenalexTile from '../../components/tiles/openalex'; | ||
import PublicationsTile from '../../components/tiles/publications'; | ||
import { status } from '../../config'; | ||
import useToast from '../../hooks/useToast'; | ||
import { getAffiliationsCorrections } from '../../utils/curations'; | ||
import { isRor } from '../../utils/ror'; | ||
import { normalize } from '../../utils/strings'; | ||
import { getWorks } from '../../utils/works'; | ||
import Openalex from '../openalex-ror/openalex'; | ||
import Datasets from '../views/datasets'; | ||
import Publications from '../views/publications'; | ||
|
||
import 'primereact/resources/primereact.min.css'; | ||
import 'primereact/resources/themes/lara-light-indigo/theme.css'; | ||
|
||
const { | ||
VITE_APP_NAME, | ||
VITE_APP_TAG_LIMIT, | ||
VITE_HEADER_TAG, | ||
VITE_HEADER_TAG_COLOR, | ||
} = import.meta.env; | ||
|
||
export default function Affiliations() { | ||
const [searchParams] = useSearchParams(); | ||
|
||
const [affiliations, setAffiliations] = useState([]); | ||
const [allOpenalexCorrections, setAllOpenalexCorrections] = useState([]); | ||
const [options, setOptions] = useState({}); | ||
const [selectedAffiliations, setSelectedAffiliations] = useState([]); | ||
const [selectedDatasets, setSelectedDatasets] = useState([]); | ||
const [selectedPublications, setSelectedPublications] = useState([]); | ||
const { toast } = useToast(); | ||
|
||
const { data, error, isFetched, isFetching, refetch } = useQuery({ | ||
queryKey: ['data', JSON.stringify(options)], | ||
queryFn: () => getWorks(options, toast), | ||
enabled: false, | ||
cacheTime: 60 * (60 * 1000), // 1h | ||
}); | ||
|
||
const tagPublications = (publications, action) => { | ||
const publicationsIds = publications.map((publication) => publication.id); | ||
data?.publications?.results | ||
?.filter((publication) => publicationsIds.includes(publication.id)) | ||
.map((publication) => (publication.status = action)); | ||
setSelectedPublications([]); | ||
}; | ||
|
||
const tagDatasets = (datasets, action) => { | ||
const datasetsIds = datasets.map((dataset) => dataset.id); | ||
data?.datasets?.results | ||
?.filter((dataset) => datasetsIds.includes(dataset.id)) | ||
.map((dataset) => (dataset.status = action)); | ||
setSelectedDatasets([]); | ||
}; | ||
|
||
const tagAffiliations = (_affiliations, action) => { | ||
if (action !== status.excluded.id) { | ||
const worksIds = _affiliations | ||
.map((affiliation) => affiliation.works) | ||
.flat(); | ||
data?.publications?.results | ||
?.filter((publication) => worksIds.includes(publication.id)) | ||
.map((publication) => (publication.status = action)); | ||
data?.datasets?.results | ||
?.filter((dataset) => worksIds.includes(dataset.id)) | ||
.map((dataset) => (dataset.status = action)); | ||
} | ||
const affiliationIds = _affiliations.map((affiliation) => affiliation.id); | ||
setAffiliations( | ||
_affiliations | ||
?.filter((affiliation) => affiliationIds.includes(affiliation.id)) | ||
.map((affiliation) => (affiliation.status = action)), | ||
); | ||
setSelectedAffiliations([]); | ||
}; | ||
|
||
const undo = (id) => { | ||
const newAffiliations = affiliations.map((affiliation) => { | ||
if (affiliation.id === id) { | ||
// eslint-disable-next-line no-param-reassign | ||
affiliation.hasCorrection = false; | ||
// eslint-disable-next-line no-param-reassign | ||
affiliation.rorsToCorrect = affiliation.rors | ||
.map((r) => r.rorId) | ||
.join(';'); | ||
} | ||
return affiliation; | ||
}); | ||
setAffiliations(newAffiliations); | ||
setAllOpenalexCorrections(getAffiliationsCorrections(newAffiliations)); | ||
}; | ||
|
||
useEffect(() => { | ||
const queryParams = { | ||
datasets: searchParams.get('datasets') === 'true', | ||
endYear: searchParams.get('endYear', '2023'), | ||
startYear: searchParams.get('startYear', '2023'), | ||
view: searchParams.get('view', ''), | ||
}; | ||
queryParams.affiliationStrings = []; | ||
queryParams.deletedAffiliations = []; | ||
queryParams.rors = []; | ||
queryParams.rorExclusions = []; | ||
searchParams.getAll('affiliations').forEach((item) => { | ||
if (isRor(item)) { | ||
queryParams.rors.push(item); | ||
} else { | ||
queryParams.affiliationStrings.push(normalize(item)); | ||
} | ||
}); | ||
searchParams.getAll('deletedAffiliations').forEach((item) => { | ||
if (isRor(item)) { | ||
queryParams.rorExclusions.push(item); | ||
} else { | ||
queryParams.deletedAffiliations.push(normalize(item)); | ||
} | ||
}); | ||
if ( | ||
queryParams.affiliationStrings.length === 0 | ||
&& queryParams.rors.length === 0 | ||
) { | ||
console.error( | ||
`You must provide at least one affiliation longer than ${VITE_APP_TAG_LIMIT} letters.`, | ||
); | ||
return; | ||
} | ||
setOptions(queryParams); | ||
}, [searchParams]); | ||
|
||
useEffect(() => { | ||
if (Object.keys(options).length > 0) refetch(); | ||
}, [options, refetch]); | ||
|
||
useEffect(() => { | ||
setAffiliations(data?.affiliations ?? []); | ||
// eslint-disable-next-line react-hooks/exhaustive-deps | ||
}, [data]); | ||
|
||
return ( | ||
// TODO: Find a cleaner way to display the spinner and views | ||
<> | ||
<Container fluid as="section" className="filters sticky"> | ||
<Row verticalAlign="top" className="fr-p-1w"> | ||
<Ribbon /> | ||
<Col xs="2" className="cursor-pointer" offsetXs="1"> | ||
<Title as="h1" look="h6" className="fr-m-0"> | ||
{VITE_APP_NAME} | ||
{VITE_HEADER_TAG && ( | ||
<Badge | ||
className="fr-ml-1w" | ||
color={VITE_HEADER_TAG_COLOR} | ||
size="sm" | ||
> | ||
{VITE_HEADER_TAG} | ||
</Badge> | ||
)} | ||
</Title> | ||
</Col> | ||
<Col> | ||
<Row> | ||
<Col | ||
className="cursor-pointer" | ||
onClick={(e) => { | ||
// setIsOpen(true); | ||
e.preventDefault(); | ||
}} | ||
> | ||
<TagGroup> | ||
<Tag color="blue-ecume" key="tag-sticky-years" size="sm"> | ||
{`${options.startYear} - ${options.endYear}`} | ||
</Tag> | ||
{/* {tagsDisplayed.map((tag) => ( | ||
<Tag | ||
color="blue-ecume" | ||
key={`tag-sticky-${tag.label}`} | ||
size="sm" | ||
> | ||
{tag.label} | ||
</Tag> | ||
))} */} | ||
</TagGroup> | ||
</Col> | ||
<Col className="text-right"> | ||
<SegmentedControl | ||
id="segSelector" | ||
name="segSelector" | ||
// onChangeValue={(view) => setSearchParams({ ...options, view })} | ||
> | ||
<SegmentedElement | ||
checked={options.view === 'openalex'} | ||
label="Improve OpenAlex (RORs)" | ||
value="openalex" | ||
/> | ||
<SegmentedElement | ||
checked={options.view === 'publications'} | ||
label="Publications corpus" | ||
value="publications" | ||
/> | ||
<SegmentedElement | ||
checked={options.view === 'datasets'} | ||
label="Datasets corpus" | ||
value="datasets" | ||
/> | ||
</SegmentedControl> | ||
</Col> | ||
</Row> | ||
</Col> | ||
</Row> | ||
</Container> | ||
<Container as="section" className="fr-mt-4w"> | ||
{isFetching && ( | ||
<Row> | ||
<Col xs="2" offsetXs="6"> | ||
<Spinner size={48} /> | ||
</Col> | ||
</Row> | ||
)} | ||
|
||
{error && ( | ||
<Row gutters className="fr-mb-16w"> | ||
<Col xs="12"> | ||
<div> | ||
Error while fetching data, please try again later or contact the | ||
team (see footer). | ||
</div> | ||
</Col> | ||
</Row> | ||
)} | ||
|
||
{!isFetching && isFetched && !searchParams.get('view') && ( | ||
<Row gutters className="fr-mb-16w"> | ||
<Col xs="12"> | ||
<div> | ||
{' '} | ||
The data has been fetched, please start with one of the use | ||
cases described below. You will be able to switch from one to | ||
another. | ||
{' '} | ||
</div> | ||
</Col> | ||
<Col> | ||
<OpenalexTile /> | ||
</Col> | ||
<Col> | ||
<PublicationsTile /> | ||
</Col> | ||
<Col> | ||
<DatasetsTile /> | ||
</Col> | ||
</Row> | ||
)} | ||
|
||
{!isFetching | ||
&& isFetched | ||
&& searchParams.get('view') === 'openalex' && ( | ||
<Openalex | ||
allAffiliations={affiliations} | ||
allOpenalexCorrections={allOpenalexCorrections} | ||
options={options} | ||
setAllOpenalexCorrections={setAllOpenalexCorrections} | ||
undo={undo} | ||
/> | ||
)} | ||
|
||
{!isFetching | ||
&& isFetched | ||
&& searchParams.get('view') === 'publications' && ( | ||
<Publications | ||
allAffiliations={affiliations} | ||
allPublications={data?.publications?.results ?? []} | ||
data={data} | ||
options={options} | ||
selectedAffiliations={selectedAffiliations} | ||
selectedPublications={selectedPublications} | ||
setSelectedAffiliations={setSelectedAffiliations} | ||
setSelectedPublications={setSelectedPublications} | ||
tagAffiliations={tagAffiliations} | ||
tagPublications={tagPublications} | ||
/> | ||
)} | ||
|
||
{!isFetching | ||
&& isFetched | ||
&& searchParams.get('view') === 'datasets' && ( | ||
<Datasets | ||
allAffiliations={affiliations} | ||
allDatasets={data?.datasets?.results ?? []} | ||
data={data} | ||
options={options} | ||
selectedAffiliations={selectedAffiliations} | ||
selectedDatasets={selectedDatasets} | ||
setSelectedAffiliations={setSelectedAffiliations} | ||
setSelectedDatasets={setSelectedDatasets} | ||
tagAffiliations={tagAffiliations} | ||
tagDatasets={tagDatasets} | ||
/> | ||
)} | ||
</Container> | ||
</> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.