This repository was archived by the owner on Apr 3, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathReaderLayout.tsx
208 lines (191 loc) · 6.79 KB
/
ReaderLayout.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
import React, { useEffect, useState } from "react";
import { Breadcrumbs, Icon } from "@nypl/design-system-react-components";
import { defaultBreadcrumbs } from "~/src/constants/labels";
import { ApiLink, LinkResult } from "~/src/types/LinkQuery";
import IFrameReader from "../IFrameReader/IFrameReader";
import EditionCardUtils from "~/src/util/EditionCardUtils";
import Layout from "../Layout/Layout";
import { formatUrl, truncateStringOnWhitespace } from "~/src/util/Util";
import { MAX_TITLE_LENGTH } from "~/src/constants/editioncard";
import dynamic from "next/dynamic";
import { MediaTypes } from "~/src/constants/mediaTypes";
import ReaderLogoSvg from "../Svgs/ReaderLogoSvg";
import Link from "../Link/Link";
import { addTocToManifest } from "@nypl/web-reader";
import Loading from "../Loading/Loading";
import { trackCtaClick } from "~/src/lib/adobe/Analytics";
import { NYPL_SESSION_ID } from "~/src/constants/auth";
import { useCookies } from "react-cookie";
import { useRouter } from "next/router";
const WebReader = dynamic(() => import("@nypl/web-reader"), { ssr: false });
// This is how we can import a css file as a url. It's complex, but necessary
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import readiumBefore from "!file-loader!extract-loader!css-loader!@nypl/web-reader/dist/injectable-html-styles/ReadiumCSS-before.css";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import readiumDefault from "!file-loader!extract-loader!css-loader!@nypl/web-reader/dist/injectable-html-styles/ReadiumCSS-default.css";
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
import readiumAfter from "!file-loader!extract-loader!css-loader!@nypl/web-reader/dist/injectable-html-styles/ReadiumCSS-after.css";
import ErrorComponent from "~/src/pages/_error";
const origin =
typeof window !== "undefined" && window.location?.origin
? window.location.origin
: "";
const injectables = [
{
type: "style",
url: `${origin}${readiumBefore}`,
},
{
type: "style",
url: `${origin}${readiumDefault}`,
},
{
type: "style",
url: `${origin}${readiumAfter}`,
},
{
type: "style",
url: `${origin}/fonts/opendyslexic/opendyslexic.css`,
fontFamily: "opendyslexic",
},
];
//The NYPL wrapper that wraps the Reader pages.
const ReaderLayout: React.FC<{
linkResult: LinkResult;
proxyUrl: string;
backUrl: string;
}> = (props) => {
const link: ApiLink = props.linkResult.data;
const url = formatUrl(link.url);
const proxyUrl = props.proxyUrl;
const edition = link.work.editions[0];
const [manifestUrl, setManifestUrl] = useState(url);
const [isLoading, setIsLoading] = useState(true);
const isEmbed = MediaTypes.embed.includes(link.media_type);
const isRead = MediaTypes.read.includes(link.media_type);
const isLimitedAccess = link.flags.fulfill_limited_access;
const [cookies] = useCookies([NYPL_SESSION_ID]);
const nyplIdentityCookie = cookies[NYPL_SESSION_ID];
const router = useRouter();
const pdfWorkerSrc = `${origin}/pdf-worker/pdf.worker.min.js`;
/**
* This is a function we will use to get the resource through a given proxy url.
* It will eventually be passed to the web reader instead of passing a proxy url directly.
*/
const getProxiedResource = (proxyUrl?: string) => async (href: string) => {
// Generate the resource URL using the proxy
const url: string = proxyUrl
? `${proxyUrl}${encodeURIComponent(href)}`
: href;
const response = await fetch(url, { mode: "cors" });
const array = new Uint8Array(await response.arrayBuffer());
if (!response.ok) {
throw new Error("Response not Ok for URL: " + url);
}
return array;
};
useEffect(() => {
trackCtaClick({
cta_section: `${link.work.title}`,
cta_subsection: `${edition.edition_id}`,
cta_text: "Read Online",
destination_url: `${link.url}`,
});
}, [edition.edition_id, link]);
useEffect(() => {
if (isRead) {
/**
* - Fetches manifest
* - Adds the TOC to the manifest
* - Generates a syncthetic url for the manifest to be passed to
* web reader.
* - Returns the synthetic url
*/
const fetchAndModifyManifest = async (url) => {
setIsLoading(true);
const response = await fetch(url);
const manifest = await response.json();
if (
manifest &&
manifest.readingOrder &&
manifest.readingOrder.length === 1 &&
!isLimitedAccess
) {
const modifiedManifest = await addTocToManifest(
manifest,
getProxiedResource(proxyUrl),
pdfWorkerSrc
);
const syntheticUrl = URL.createObjectURL(
new Blob([JSON.stringify(modifiedManifest)])
);
setManifestUrl(syntheticUrl);
}
setIsLoading(false);
};
fetchAndModifyManifest(url);
// hides header and footer components when web reader is displayed
document.getElementById("nypl-header").style.display = "none";
document.getElementById("nypl-footer").style.display = "none";
}
}, [isLimitedAccess, isRead, pdfWorkerSrc, proxyUrl, url]);
const BackButton = () => {
return (
//Apends design system classname to use Design System Link.
<Link to={props.backUrl} type="action" className="nypl-ds logo-link">
<Icon decorative className="logo-link__icon">
<ReaderLogoSvg />
</Icon>
<span className="logo-link__label">Back to Digital Research Books</span>
</Link>
);
};
if (!isEmbed && !isRead) {
return <ErrorComponent statusCode={404} />;
}
return (
<>
{isEmbed && (
<Layout>
<Breadcrumbs
breadcrumbsType="research"
breadcrumbsData={[
...defaultBreadcrumbs,
{
url: `/work/${edition.work_uuid}`,
text: truncateStringOnWhitespace(
edition.title,
MAX_TITLE_LENGTH
),
},
{
url: `/edition/${edition.edition_id}`,
text: EditionCardUtils.editionYearText(edition),
},
]}
/>
<IFrameReader url={link.url} />
</Layout>
)}
{isRead && isLoading && <Loading />}
{isRead && !isLoading && (
<WebReader
webpubManifestUrl={manifestUrl}
proxyUrl={!isLimitedAccess ? proxyUrl : undefined}
pdfWorkerSrc={pdfWorkerSrc}
headerLeft={<BackButton />}
injectablesFixed={injectables}
getContent={
isLimitedAccess
? EditionCardUtils.createGetContent(nyplIdentityCookie, router)
: undefined
}
/>
)}
</>
);
};
export default ReaderLayout;