-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #144 from samvera-labs/4070-lighthouse
Add non-next dev ability. Address accessibility concerns.
- Loading branch information
Showing
11 changed files
with
107 additions
and
26 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
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
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
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
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
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
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
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
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
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,79 @@ | ||
import "swiper/css"; | ||
import "swiper/css/navigation"; | ||
import "swiper/css/pagination"; | ||
|
||
import { | ||
Homepage, | ||
Label, | ||
Metadata, | ||
PartOf, | ||
RequiredStatement, | ||
SeeAlso, | ||
Summary, | ||
Thumbnail, | ||
} from "src/components/Primitives"; | ||
import { | ||
IIIFExternalWebResource, | ||
InternationalString, | ||
Manifest, | ||
MetadataItem, | ||
} from "@iiif/presentation-3"; | ||
import { | ||
PrimitivesExternalWebResource, | ||
PrimitivesIIIFResource, | ||
} from "./types/primitives"; | ||
import React, { useEffect, useState } from "react"; | ||
|
||
import ReactDOM from "react-dom/client"; | ||
import Slider from "src/components/Slider"; | ||
import Viewer from "src/components/Viewer"; | ||
|
||
const App = () => { | ||
const [manifest, setManifest] = useState<Manifest>(); | ||
|
||
const manifestId = | ||
"https://api.dc.library.northwestern.edu/api/v2/works/71153379-4283-43be-8b0f-4e7e3bfda275?as=iiif"; | ||
const collectionId = | ||
"https://api.dc.library.northwestern.edu/api/v2/collections/c373ecd2-2c45-45f2-9f9e-52dc244870bd?as=iiif"; | ||
|
||
useEffect(() => { | ||
(async () => { | ||
const data = await fetch(manifestId).then((response) => response.json()); | ||
setManifest(data); | ||
})(); | ||
}, [manifest]); | ||
|
||
if (!manifest) return null; | ||
|
||
return ( | ||
<div style={{ padding: "1rem" }}> | ||
<Viewer iiifContent={manifestId} /> | ||
<Slider iiifContent={collectionId} /> | ||
<article> | ||
<Label label={manifest.label} as="h1" /> | ||
<Summary summary={manifest.summary as InternationalString} /> | ||
<Metadata metadata={manifest.metadata as MetadataItem[]} /> | ||
<RequiredStatement | ||
requiredStatement={manifest.requiredStatement as MetadataItem} | ||
/> | ||
<Homepage | ||
homepage={manifest.homepage as PrimitivesExternalWebResource[]} | ||
/> | ||
<PartOf partOf={manifest.partOf as PrimitivesIIIFResource[]} /> | ||
<SeeAlso | ||
seeAlso={manifest.seeAlso as PrimitivesExternalWebResource[]} | ||
/> | ||
<Thumbnail | ||
thumbnail={manifest.thumbnail as IIIFExternalWebResource[]} | ||
altAsLabel={manifest.label as InternationalString} | ||
/> | ||
</article> | ||
</div> | ||
); | ||
}; | ||
|
||
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( | ||
<React.StrictMode> | ||
<App /> | ||
</React.StrictMode> | ||
); |
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