Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add a display of isRegularExcavation and date #509

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 36 additions & 9 deletions src/fragmentarium/domain/archaeology.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,7 @@ test('createArchaeology', () => {
})
).toEqual(archaeology)
})

test.each([
[
'with full info',
Expand All @@ -134,6 +135,7 @@ test.each([
},
'some area > a house (Residential), II (1200 BCE - 1150 BCE), ' +
'Room 42, On the floor (primary context). General notes.',
'de-DE',
],
[
'with secondary context',
Expand All @@ -143,59 +145,84 @@ test.each([
date: null,
},
'a house (Residential), II, in shelf (secondary context).',
'de-DE',
],
[
'with area and notes',
{ area: 'some area', notes: 'General notes.' },
'some area > a house (Residential), II (1200 BCE - 1150 BCE). General notes.',
'de-DE',
],
[
'without area or notes',
{ area: '' },
'a house (Residential), II (1200 BCE - 1150 BCE).',
'en-US',
],
[
'without notes',
{ notes: '' },
'a house (Residential), II (1200 BCE - 1150 BCE).',
'en-US',
],
[
'without building',
{ building: '' },
'(Residential), II (1200 BCE - 1150 BCE).',
'de-DE',
],
[
'without buildingType',
{ buildingType: null },
'a house, II (1200 BCE - 1150 BCE).',
'en-US',
],
[
'without levelLayerPhase and date',
{ levelLayerPhase: '', date: null },
'a house (Residential).',
'de-DE',
],
[
'with date notes',
{
date: { ...defaultParams.date, notes: 'date notes' },
},
'a house (Residential), II (1200 BCE - 1150 BCE, date notes).',
'en-US',
],
[
'with CE date',
'with CE date (en-US)',
{
date: {
start: new PartialDate(1920, 6, 5),
end: null,
notes: '',
},
},
'a house (Residential), II (1920/6/5).',
'a house (Residential), II (06/05/1920).',
'en-US',
],
])('Correctly builds findspot info %s', (_info, overrideParams, expected) => {
const findspot = findspotFactory.build({
...defaultParams,
...overrideParams,
})
expect(findspot.toString()).toEqual(expected)
})
[
'with CE date (de-DE)',
{
date: {
start: new PartialDate(1920, 6, 5),
end: null,
notes: '',
},
},
'a house (Residential), II (06/05/1920).',
'de-DE',
],
])(
'Correctly builds findspot info %s',
(_info, overrideParams, expected, locale) => {
const findspot = findspotFactory.build({
...defaultParams,
...overrideParams,
})

expect(findspot.toString()).toEqual(expected)
}
)
19 changes: 16 additions & 3 deletions src/fragmentarium/domain/archaeology.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,22 @@ export class PartialDate {
}

toString(): string {
return this.year >= 0
? _.reject([this.year, this.month, this.day], _.isNil).join('/')
: `${Math.abs(this.year)} BCE`
return this.toLocaleString()
}

toLocaleString(locale = 'default'): string {
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function toLocaleString has a Cognitive Complexity of 7 (exceeds 5 allowed). Consider refactoring.

const options: Intl.DateTimeFormatOptions = this.day
? { year: 'numeric', month: '2-digit', day: '2-digit' }
: this.month
? { year: 'numeric', month: '2-digit' }
: { year: 'numeric' }

if (this.year >= 0) {
const date = new Date(this.year, (this.month || 1) - 1, this.day || 1)
return new Intl.DateTimeFormat(locale, options).format(date)
} else {
return `${Math.abs(this.year)} BCE`
}
}
}
export type DateRange = {
Expand Down
1 change: 1 addition & 0 deletions src/fragmentarium/ui/fragment/ArchaeologyEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ class ArchaeologyEditor extends Component<Props, State> {
type="checkbox"
id={_.uniqueId('isRegularExcavation-')}
label="Regular Excavation"
aria-label="regular-excavation"
checked={this.state.isRegularExcavation}
onChange={this.updateIsRegularExcavation}
/>
Expand Down
7 changes: 6 additions & 1 deletion src/fragmentarium/ui/info/Details.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
}

.Details__item {
margin-bottom: 0.2em;
margin-bottom: 0.4em;
}

.Details__item--provenance {
list-style-position: inside;
list-style-type: disc;
}

.Details__item--extra-margin {
Expand Down
67 changes: 64 additions & 3 deletions src/fragmentarium/ui/info/Details.test.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
measuresFactory,
} from 'test-support/fragment-data-fixtures'
import { joinFactory } from 'test-support/join-fixtures'
import { PartialDate } from 'fragmentarium/domain/archaeology'
import { Periods } from 'common/period'
import FragmentService from 'fragmentarium/application/FragmentService'

Expand Down Expand Up @@ -99,7 +100,7 @@ describe('All details', () => {
)
})

it('Renders colection', () => {
it('Renders collection', () => {
expect(
screen.getByText(`(${fragment.collection} Collection)`)
).toBeInTheDocument()
Expand Down Expand Up @@ -153,20 +154,80 @@ describe('All details', () => {
screen.getByText(`Accession no.: ${fragment.accession}`)
).toBeInTheDocument()
})

it('Renders excavation', () => {
expect(
screen.getByText(
`Excavation no.: ${fragment.archaeology?.excavationNumber}`
)
).toBeInTheDocument()
})

it('Renders provenance', () => {
expect(
screen.getByText(`Provenance: ${fragment.archaeology?.site?.name}`)
).toBeInTheDocument()
})
})

describe('ExcavationDate', () => {
beforeEach(() => {
fragmentService.fetchGenres.mockResolvedValue([])
fragmentService.fetchPeriods.mockResolvedValue([])
Object.defineProperty(navigator, 'language', {
value: 'en-US',
writable: true,
})
})

it('renders excavation date when isRegularExcavation is true', async () => {
const excavationDate = {
start: new PartialDate(2024, 5, 10),
end: new PartialDate(2024, 10, 10),
}
fragment = fragmentFactory.build({
archaeology: {
isRegularExcavation: true,
date: excavationDate,
},
})
await renderDetails()

expect(screen.getByText(/Regular Excavation/)).toBeInTheDocument()
expect(screen.getByText(/05\/10\/2024 – 10\/10\/2024/)).toBeInTheDocument()
})

it('renders only start date when end date is missing', async () => {
const excavationDate = {
start: new PartialDate(2024, 5, 10),
end: null,
}
fragment = fragmentFactory.build({
archaeology: {
isRegularExcavation: true,
date: excavationDate,
},
})
await renderDetails()

expect(screen.getByText(/Regular Excavation/)).toBeInTheDocument()
expect(screen.getByText(/05\/10\/2024/)).toBeInTheDocument()
})

it('does not render excavation date when isRegularExcavation is false', async () => {
fragment = fragmentFactory.build({
archaeology: {
isRegularExcavation: false,
date: undefined,
},
})
await renderDetails()

expect(screen.queryByText(/Regular Excavation/)).not.toBeInTheDocument()
expect(screen.queryByText(/10\/05\/2024/)).not.toBeInTheDocument()
})
})

describe('Missing details', () => {
beforeEach(async () => {
const archaeology = archaeologyFactory.build({
Expand Down Expand Up @@ -200,14 +261,14 @@ describe('Missing details', () => {
it('Does not render undefined', () =>
expect(screen.queryByText('undefined')).not.toBeInTheDocument())

it('Does not render colection', () =>
it('Does not render collection', () =>
expect(screen.queryByText('Collection')).not.toBeInTheDocument())

it(`Renders dash for joins`, () => {
expect(screen.getByText(/Joins:/)).toHaveTextContent('-')
})

it('Does not renders missing measures', () => {
it('Does not render missing measures', () => {
expect(
screen.getByText(
`${fragment.measures.length} (L) × ${fragment.measures.thickness} (T) cm`
Expand Down
47 changes: 44 additions & 3 deletions src/fragmentarium/ui/info/Details.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import FragmentService from 'fragmentarium/application/FragmentService'
import Bluebird from 'bluebird'
import { MesopotamianDate } from 'chronology/domain/Date'
import DatesInTextSelection from 'chronology/ui/DateEditor/DatesInTextSelection'
import { DateRange, PartialDate } from 'fragmentarium/domain/archaeology'

interface Props {
readonly fragment: Fragment
Expand Down Expand Up @@ -107,6 +108,41 @@ function Provenance({ fragment }: Props): JSX.Element {
return <>Provenance: {fragment.archaeology?.site?.name || '-'}</>
}

function ExcavationDate({ fragment }: Props): JSX.Element {
const isRegularExcavation = fragment.archaeology?.isRegularExcavation
const date = fragment.archaeology?.date
const dateNotes = date?.notes

const formatDate = (date: DateRange) => {
const locale = navigator.language
const start = new PartialDate(
date.start.year,
date.start.month,
date.start.day
).toLocaleString(locale)
const end = date.end
? new PartialDate(
date.end.year,
date.end.month,
date.end.day
).toLocaleString(locale)
: ''
return end ? `${start} – ${end}` : start
}

return (
<>
{isRegularExcavation && (
<>
Regular Excavation
{date && <> ({formatDate(date)})</>}
{dateNotes && <>, {dateNotes}</>}
</>
)}
</>
)
}

interface DetailsProps {
readonly fragment: Fragment
readonly updateGenres: (genres: Genres) => void
Expand Down Expand Up @@ -145,12 +181,17 @@ function Details({
<Accession fragment={fragment} />
</li>
<li className="Details__item">
<Provenance fragment={fragment} />
</li>
<li className="Details__item--provenance">
<Excavation fragment={fragment} />
</li>
<li className="Details__item">
<Provenance fragment={fragment} />
<li className="Details__item--provenance">
<ExcavationDate fragment={fragment} />
</li>
<li className="Details__item">{`Findspot: ${findspotString || '-'}`}</li>
<li className="Details__item--provenance">{`Findspot: ${
findspotString || '-'
}`}</li>
<li className="Details__item">
<GenreSelection
fragment={fragment}
Expand Down
Loading