Skip to content

Commit

Permalink
Merge branch 'develop' into fix/528-use-fields-from-parent-form-behavior
Browse files Browse the repository at this point in the history
  • Loading branch information
g-saracca committed Nov 5, 2024
2 parents 11f8e9c + 110d696 commit 355afad
Show file tree
Hide file tree
Showing 51 changed files with 229 additions and 178 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,10 @@ The environment is accessible through the following URLs:
>
> Given that at the moment the SPA only supports file uploading through direct upload (S3), the storage selector on the create collection
> page is disabled. The collection is always created using the default storage, which must be S3
>
> #### Account Page BreadCrumbs
>
> The Account Page has been updated to remove breadcrumbs, as the page is not part of the main navigation.
</details>

Expand Down
2 changes: 0 additions & 2 deletions src/collection/domain/models/Collection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,3 @@ export interface CollectionInputLevel {
include: boolean
required: boolean
}

export const ROOT_COLLECTION_ALIAS = 'root'
6 changes: 3 additions & 3 deletions src/collection/domain/repositories/CollectionRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import { CollectionUserPermissions } from '../models/CollectionUserPermissions'
import { CollectionDTO } from '../useCases/DTOs/CollectionDTO'

export interface CollectionRepository {
getById: (id: string) => Promise<Collection>
getById: (id?: string) => Promise<Collection>
create(collection: CollectionDTO, hostCollection?: string): Promise<number>
getFacets(collectionIdOrAlias: number | string): Promise<CollectionFacet[]>
getUserPermissions(collectionIdOrAlias: number | string): Promise<CollectionUserPermissions>
getFacets(collectionIdOrAlias?: number | string): Promise<CollectionFacet[]>
getUserPermissions(collectionIdOrAlias?: number | string): Promise<CollectionUserPermissions>
publish(collectionIdOrAlias: number | string): Promise<void>
getItems(
collectionId: string,
Expand Down
2 changes: 1 addition & 1 deletion src/collection/domain/useCases/createCollection.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { CollectionDTO } from './DTOs/CollectionDTO'
export function createCollection(
collectionRepository: CollectionRepository,
collection: CollectionDTO,
hostCollection?: string
hostCollection: string
): Promise<number> {
return collectionRepository.create(collection, hostCollection).catch((error: WriteError) => {
throw error
Expand Down
4 changes: 2 additions & 2 deletions src/collection/domain/useCases/getCollectionById.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ import { CollectionRepository } from '../repositories/CollectionRepository'

export async function getCollectionById(
collectionRepository: CollectionRepository,
id: string
): Promise<Collection | undefined> {
id?: string
): Promise<Collection> {
return collectionRepository.getById(id).catch((error: Error) => {
throw new Error(error.message)
})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { CollectionUserPermissions } from '../models/CollectionUserPermissions'

export function getCollectionUserPermissions(
collectionRepository: CollectionRepository,
collectionIdOrAlias: number | string
collectionIdOrAlias?: number | string
): Promise<CollectionUserPermissions> {
return collectionRepository.getUserPermissions(collectionIdOrAlias).catch((error: Error) => {
throw new Error(error.message)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import { CollectionSearchCriteria } from '../../domain/models/CollectionSearchCr
import { JSCollectionItemsMapper } from '../mappers/JSCollectionItemsMapper'

export class CollectionJSDataverseRepository implements CollectionRepository {
getById(id: string): Promise<Collection> {
getById(id?: string): Promise<Collection> {
return getCollection
.execute(id)
.then((jsCollection) => JSCollectionMapper.toCollection(jsCollection))
Expand All @@ -30,11 +30,11 @@ export class CollectionJSDataverseRepository implements CollectionRepository {
.then((newCollectionIdentifier) => newCollectionIdentifier)
}

getFacets(collectionIdOrAlias: number | string): Promise<CollectionFacet[]> {
getFacets(collectionIdOrAlias?: number | string): Promise<CollectionFacet[]> {
return getCollectionFacets.execute(collectionIdOrAlias).then((facets) => facets)
}

getUserPermissions(collectionIdOrAlias: number | string): Promise<CollectionUserPermissions> {
getUserPermissions(collectionIdOrAlias?: number | string): Promise<CollectionUserPermissions> {
return getCollectionUserPermissions
.execute(collectionIdOrAlias)
.then((jsCollectionUserPermissions) => jsCollectionUserPermissions)
Expand Down
2 changes: 1 addition & 1 deletion src/dataset/domain/repositories/DatasetRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export interface DatasetRepository {
getByPersistentId: (persistentId: string, version?: string) => Promise<Dataset | undefined>
getLocks(persistentId: string): Promise<DatasetLock[]>
getByPrivateUrlToken: (privateUrlToken: string) => Promise<Dataset | undefined>
create: (dataset: DatasetDTO, collectionId?: string) => Promise<{ persistentId: string }>
create: (dataset: DatasetDTO, collectionId: string) => Promise<{ persistentId: string }>
updateMetadata: (datasetId: string | number, datasetDTO: DatasetDTO) => Promise<void>
getAllWithCount: (
collectionId: string,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ import { DatasetDTO } from '../../domain/useCases/DTOs/DatasetDTO'
import { DatasetDTOMapper } from '../mappers/DatasetDTOMapper'
import { DatasetsWithCount } from '../../domain/models/DatasetsWithCount'
import { VersionUpdateType } from '../../domain/models/VersionUpdateType'
import { ROOT_COLLECTION_ALIAS } from '../../../collection/domain/models/Collection'

const includeDeaccessioned = true
type DatasetDetails = [JSDataset, string[], string, JSDatasetPermissions, JSDatasetLock[]]
Expand Down Expand Up @@ -223,10 +222,7 @@ export class DatasetJSDataverseRepository implements DatasetRepository {
})
}

create(
dataset: DatasetDTO,
collectionId = ROOT_COLLECTION_ALIAS
): Promise<{ persistentId: string }> {
create(dataset: DatasetDTO, collectionId: string): Promise<{ persistentId: string }> {
return createDataset
.execute(DatasetDTOMapper.toJSDatasetDTO(dataset), collectionId)
.then((jsDatasetIdentifiers: JSDatasetIdentifiers) => ({
Expand Down
11 changes: 4 additions & 7 deletions src/sections/Route.enum.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { ROOT_COLLECTION_ALIAS } from '../collection/domain/models/Collection'

export enum Route {
HOME = '/',
SIGN_UP = '/dataverseuser.xhtml?editMode=CREATE&redirectPage=%2Fdataverse.xhtml',
Expand All @@ -17,11 +15,10 @@ export enum Route {
}

export const RouteWithParams = {
COLLECTIONS: (collectionId?: string) => `/collections/${collectionId ?? 'root'}`,
CREATE_COLLECTION: (ownerCollectionId?: string) =>
`/collections/${ownerCollectionId ?? ROOT_COLLECTION_ALIAS}/create`,
CREATE_DATASET: (collectionId?: string) =>
`/datasets/${collectionId ?? ROOT_COLLECTION_ALIAS}/create`
COLLECTIONS: (collectionId?: string) =>
collectionId ? `/collections/${collectionId}` : Route.COLLECTIONS_BASE,
CREATE_COLLECTION: (ownerCollectionId: string) => `/collections/${ownerCollectionId}/create`,
CREATE_DATASET: (collectionId: string) => `/datasets/${collectionId}/create`
}

export enum QueryParamKey {
Expand Down
4 changes: 4 additions & 0 deletions src/sections/account/Account.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
@import 'node_modules/@iqss/dataverse-design-system/src/lib/assets/styles/design-tokens/colors.module';

.header {
padding-block: 1rem;
}

.tab-container {
padding: 1rem;
}
Expand Down
23 changes: 1 addition & 22 deletions src/sections/account/Account.tsx
Original file line number Diff line number Diff line change
@@ -1,16 +1,8 @@
import { useEffect } from 'react'
import { useTranslation } from 'react-i18next'
import { Tabs } from '@iqss/dataverse-design-system'
import { useLoading } from '../loading/LoadingContext'
import { AccountHelper, AccountPanelTabKey } from './AccountHelper'
import { ApiTokenSection } from './api-token-section/ApiTokenSection'
import { BreadcrumbsGenerator } from '../shared/hierarchy/BreadcrumbsGenerator'
import styles from './Account.module.scss'
import {
DvObjectType,
UpwardHierarchyNode
} from '../../shared/hierarchy/domain/models/UpwardHierarchyNode'
import { ROOT_COLLECTION_ALIAS } from '../../collection/domain/models/Collection'

const tabsKeys = AccountHelper.ACCOUNT_PANEL_TABS_KEYS

Expand All @@ -20,23 +12,10 @@ interface AccountProps {

export const Account = ({ defaultActiveTabKey }: AccountProps) => {
const { t } = useTranslation('account')
const { setIsLoading } = useLoading()

const rootHierarchy = new UpwardHierarchyNode(
'Root',
DvObjectType.COLLECTION,
ROOT_COLLECTION_ALIAS
)

useEffect(() => {
setIsLoading(false)
}, [setIsLoading])

return (
<section>
<BreadcrumbsGenerator hierarchy={rootHierarchy} withActionItem actionItemText="Account" />

<header>
<header className={styles['header']}>
<h1>{t('pageTitle')}</h1>
</header>

Expand Down
43 changes: 24 additions & 19 deletions src/sections/collection/Collection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ import styles from './Collection.module.scss'

interface CollectionProps {
collectionRepository: CollectionRepository
collectionId: string
collectionIdFromParams: string | undefined
created: boolean
published: boolean
collectionQueryParams: UseCollectionQueryParamsReturnType
infiniteScrollEnabled?: boolean
}

export function Collection({
collectionId,
collectionIdFromParams,
collectionRepository,
created,
published,
Expand All @@ -35,9 +35,13 @@ export function Collection({
useTranslation('collection')
useScrollTop()
const { user } = useSession()
const { collection, isLoading } = useCollection(collectionRepository, collectionId, published)
const { collection, isLoading } = useCollection(
collectionRepository,
collectionIdFromParams,
published
)
const { collectionUserPermissions } = useGetCollectionUserPermissions({
collectionIdOrAlias: collectionId,
collectionIdOrAlias: collectionIdFromParams,
collectionRepository
})

Expand Down Expand Up @@ -75,23 +79,24 @@ export function Collection({
/>
</div>
)}

<CollectionItemsPanel
key={collection.id}
collectionId={collection.id}
collectionRepository={collectionRepository}
collectionQueryParams={collectionQueryParams}
addDataSlot={
showAddDataActions ? (
<AddDataActionsButton
collectionId={collection.id}
canAddCollection={canUserAddCollection}
canAddDataset={canUserAddDataset}
/>
) : null
}
/>
</>
)}
<CollectionItemsPanel
key={collectionId}
collectionId={collectionId}
collectionRepository={collectionRepository}
collectionQueryParams={collectionQueryParams}
addDataSlot={
showAddDataActions ? (
<AddDataActionsButton
collectionId={collectionId}
canAddCollection={canUserAddCollection}
canAddDataset={canUserAddDataset}
/>
) : null
}
/>
</Col>
</Row>
)
Expand Down
4 changes: 2 additions & 2 deletions src/sections/collection/CollectionFactory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export class CollectionFactory {

function CollectionWithSearchParams() {
const collectionQueryParams = useGetCollectionQueryParams()
const { collectionId = 'root' } = useParams<{ collectionId: string }>()
const { collectionId } = useParams<{ collectionId: string }>()
const location = useLocation()
const state = location.state as { published: boolean; created: boolean } | undefined
const created = state?.created ?? false
Expand All @@ -23,7 +23,7 @@ function CollectionWithSearchParams() {
return (
<Collection
collectionRepository={collectionRepository}
collectionId={collectionId}
collectionIdFromParams={collectionId}
created={created}
collectionQueryParams={collectionQueryParams}
published={published}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,7 @@ export const CollectionItemsPanel = ({
/>

<ItemsList
parentCollectionAlias={collectionId}
items={accumulatedItems}
error={error}
accumulatedCount={accumulatedCount}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { FileCard } from './file-card/FileCard'
import styles from './ItemsList.module.scss'

interface ItemsListProps {
parentCollectionAlias: string
items: CollectionItem[]
error: string | null
accumulatedCount: number
Expand All @@ -32,6 +33,7 @@ interface ItemsListProps {
export const ItemsList = forwardRef(
(
{
parentCollectionAlias,
items,
error,
accumulatedCount,
Expand Down Expand Up @@ -94,7 +96,10 @@ export const ItemsList = forwardRef(
{items.map((collectionItem, index) => (
<li key={`${collectionItem.type}-${index}`}>
{collectionItem?.type === CollectionItemType.COLLECTION && (
<CollectionCard collectionPreview={collectionItem} />
<CollectionCard
parentCollectionAlias={parentCollectionAlias}
collectionPreview={collectionItem}
/>
)}
{collectionItem?.type === CollectionItemType.DATASET && (
<DatasetCard datasetPreview={collectionItem} />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,19 @@ import styles from './CollectionCard.module.scss'

interface CollectionCardProps {
collectionPreview: CollectionItemTypePreview
parentCollectionAlias: string
}

export function CollectionCard({ collectionPreview }: CollectionCardProps) {
export function CollectionCard({ collectionPreview, parentCollectionAlias }: CollectionCardProps) {
return (
<article className={styles['card-main-container']} data-testid="collection-card">
<CollectionCardHeader collectionPreview={collectionPreview} />
<div className={styles['thumbnail-and-info-wrapper']}>
<CollectionCardThumbnail collectionPreview={collectionPreview} />
<CollectionCardInfo collectionPreview={collectionPreview} />
<CollectionCardInfo
parentCollectionAlias={parentCollectionAlias}
collectionPreview={collectionPreview}
/>
</div>
</article>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { useParams } from 'react-router-dom'
import { Stack } from '@iqss/dataverse-design-system'
import { ROOT_COLLECTION_ALIAS } from '@/collection/domain/models/Collection'
import { CollectionItemTypePreview } from '@/collection/domain/models/CollectionItemTypePreview'
import { DvObjectType } from '@/shared/hierarchy/domain/models/UpwardHierarchyNode'
import { DateHelper } from '@/shared/helpers/DateHelper'
Expand All @@ -10,11 +8,15 @@ import styles from './CollectionCard.module.scss'

interface CollectionCardInfoProps {
collectionPreview: CollectionItemTypePreview
parentCollectionAlias: string
}

export function CollectionCardInfo({ collectionPreview }: CollectionCardInfoProps) {
const { collectionId = ROOT_COLLECTION_ALIAS } = useParams<{ collectionId: string }>()
const isStandingOnParentCollectionPage = collectionPreview.parentCollectionAlias === collectionId
export function CollectionCardInfo({
collectionPreview,
parentCollectionAlias
}: CollectionCardInfoProps) {
const isStandingOnParentCollectionPage =
collectionPreview.parentCollectionAlias === parentCollectionAlias

return (
<div className={styles['card-info-container']}>
Expand Down
4 changes: 2 additions & 2 deletions src/sections/collection/useCollection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { getCollectionById } from '../../collection/domain/useCases/getCollectio

export function useCollection(
collectionRepository: CollectionRepository,
collectionId: string,
collectionId?: string | undefined,
published?: boolean
) {
const [isLoading, setIsLoading] = useState(true)
Expand All @@ -15,7 +15,7 @@ export function useCollection(
setIsLoading(true)
setCollection(undefined)
getCollectionById(collectionRepository, collectionId)
.then((collection: Collection | undefined) => {
.then((collection: Collection) => {
setCollection(collection)
})
.catch((error) => {
Expand Down
6 changes: 3 additions & 3 deletions src/sections/create-collection/CreateCollectionFactory.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { ReactElement } from 'react'
import { useParams } from 'react-router-dom'
import { CollectionJSDataverseRepository } from '../../collection/infrastructure/repositories/CollectionJSDataverseRepository'
import { CreateCollection } from './CreateCollection'
import { ROOT_COLLECTION_ALIAS } from '../../collection/domain/models/Collection'
import { MetadataBlockInfoJSDataverseRepository } from '../../metadata-block-info/infrastructure/repositories/MetadataBlockInfoJSDataverseRepository'

const collectionRepository = new CollectionJSDataverseRepository()
Expand All @@ -15,8 +14,9 @@ export class CreateCollectionFactory {
}

function CreateCollectionWithParams() {
const { ownerCollectionId = ROOT_COLLECTION_ALIAS } = useParams<{ ownerCollectionId: string }>()

const { ownerCollectionId } = useParams<{ ownerCollectionId: string }>() as {
ownerCollectionId: string
}
return (
<CreateCollection
ownerCollectionId={ownerCollectionId}
Expand Down
Loading

0 comments on commit 355afad

Please sign in to comment.