Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
coopwire-hypothesis
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
孙灵跃 Leon Sun
coopwire-hypothesis
Commits
26a12c9f
Commit
26a12c9f
authored
Apr 19, 2023
by
Alejandro Celaya
Committed by
Alejandro Celaya
Apr 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrate pdf-metadata module to TS
parent
3b6697e8
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
33 additions
and
51 deletions
+33
-51
html-side-by-side.ts
src/annotator/integrations/html-side-by-side.ts
+1
-1
pdf-metadata.ts
src/annotator/integrations/pdf-metadata.ts
+32
-50
No files found.
src/annotator/integrations/html-side-by-side.ts
View file @
26a12c9f
...
...
@@ -121,7 +121,7 @@ function elementContentRect(element: Element) {
function
*
textNodesInRect
(
root
:
Element
,
rect
:
DOMRect
,
shouldVisit
:
(
el
:
Element
)
=>
boolean
=
()
=>
true
shouldVisit
:
(
el
:
Element
)
=>
boolean
):
Generator
<
Text
>
{
let
node
:
Node
|
null
=
root
.
firstChild
;
while
(
node
)
{
...
...
src/annotator/integrations/pdf-metadata.
j
s
→
src/annotator/integrations/pdf-metadata.
t
s
View file @
26a12c9f
import
type
{
PDFViewerApplication
}
from
'../../types/pdfjs'
;
import
{
normalizeURI
}
from
'../util/url'
;
/**
* @typedef {import('../../types/pdfjs').PDFViewerApplication} PDFViewerApplication
*/
type
Link
=
{
href
:
string
};
/**
* @typedef Link
* @prop {string} href
*/
type
Metadata
=
{
/** The document title */
title
:
string
;
/** Array of URIs associated with this document */
link
:
Link
[];
/**
* @typedef Metadata
* @prop {string} title - The document title
* @prop {Link[]} link - Array of URIs associated with this document
* @prop {string} documentFingerprint - The fingerprint of this PDF. This is
* referred to as the "File Identifier" in the PDF spec. It may be a hash of
* part of the content if the PDF file does not have a File Identifier.
/**
* The fingerprint of this PDF. This is referred to as the "File Identifier"
* in the PDF spec. It may be a hash of part of the content if the PDF file
* does not have a File Identifier.
*
* PDFs may have two file identifiers. The first is the "original" identifier
* which is not supposed to change if the file is updated and the second
* one is the "last modified" identifier. This property is the original
* identifier.
*/
documentFingerprint
:
string
;
};
/**
* Wait for a PDFViewerApplication to be initialized.
*
* @param {PDFViewerApplication} app
* @return {Promise<void>}
*/
function
pdfViewerInitialized
(
app
)
{
function
pdfViewerInitialized
(
app
:
PDFViewerApplication
):
Promise
<
void
>
{
// `initializedPromise` was added in PDF.js v2.4.456.
// See https://github.com/mozilla/pdf.js/pull/11607. In earlier versions the
// `initialized` property can be queried.
...
...
@@ -65,14 +61,15 @@ function pdfViewerInitialized(app) {
* })
*/
export
class
PDFMetadata
{
private
_loaded
:
Promise
<
PDFViewerApplication
>
;
/**
* Construct a `PDFMetadata` that returns URIs/metadata associated with a
* given PDF viewer.
*
* @param
{PDFViewerApplication}
app - The `PDFViewerApplication` global from PDF.js
* @param app - The `PDFViewerApplication` global from PDF.js
*/
constructor
(
app
)
{
/** @type {Promise<PDFViewerApplication>} */
constructor
(
app
:
PDFViewerApplication
)
{
this
.
_loaded
=
pdfViewerInitialized
(
app
).
then
(()
=>
{
// Check if document has already loaded.
if
(
app
.
downloadComplete
)
{
...
...
@@ -115,10 +112,8 @@ export class PDFMetadata {
*
* If the PDF is currently loading, the returned promise resolves once loading
* is complete.
*
* @return {Promise<string>}
*/
getUri
()
{
getUri
()
:
Promise
<
string
>
{
return
this
.
_loaded
.
then
(
app
=>
{
let
uri
=
getPDFURL
(
app
);
if
(
!
uri
)
{
...
...
@@ -133,10 +128,8 @@ export class PDFMetadata {
*
* If the PDF is currently loading, the returned promise resolves once loading
* is complete.
*
* @return {Promise<Metadata>}
*/
async
getMetadata
()
{
async
getMetadata
()
:
Promise
<
Metadata
>
{
const
app
=
await
this
.
_loaded
;
const
{
info
:
documentInfo
,
...
...
@@ -157,7 +150,7 @@ export class PDFMetadata {
// This logic is similar to how PDF.js sets `document.title`.
let
title
;
if
(
metadata
?.
has
(
'dc:title'
)
&&
metadata
.
get
(
'dc:title'
)
!==
'Untitled'
)
{
title
=
/** @type {string} */
(
metadata
.
get
(
'dc:title'
)
);
title
=
metadata
.
get
(
'dc:title'
);
}
else
if
(
documentInfo
?.
Title
)
{
title
=
documentInfo
.
Title
;
}
else
if
(
contentDispositionFilename
)
{
...
...
@@ -183,32 +176,24 @@ export class PDFMetadata {
/**
* Get the fingerprint/file identifier of the currently loaded PDF.
*
* @param {PDFViewerApplication} app
*/
function
getFingerprint
(
app
)
{
function
getFingerprint
(
app
:
PDFViewerApplication
):
string
{
if
(
Array
.
isArray
(
app
.
pdfDocument
.
fingerprints
))
{
return
app
.
pdfDocument
.
fingerprints
[
0
];
}
else
{
return
/** @type {string} */
(
app
.
pdfDocument
.
fingerprint
)
;
return
app
.
pdfDocument
.
fingerprint
!
;
}
}
/**
* Generate a URI from a PDF fingerprint suitable for storing as the main
* or associated URI of an annotation.
*
* @param {string} fingerprint
*/
function
fingerprintToURN
(
fingerprint
)
{
function
fingerprintToURN
(
fingerprint
:
string
)
{
return
`urn:x-pdf:
${
fingerprint
}
`
;
}
/**
* @param {PDFViewerApplication} app
* @return {string|null} - Valid URL string or `null`
*/
function
getPDFURL
(
app
)
{
function
getPDFURL
(
app
:
PDFViewerApplication
):
string
|
null
{
if
(
!
app
.
url
)
{
return
null
;
}
...
...
@@ -227,11 +212,8 @@ function getPDFURL(app) {
/**
* Return the last component of the path part of a URL.
*
* @param {string} url - A valid URL string
* @return {string}
*/
function
filenameFromURL
(
url
)
{
function
filenameFromURL
(
url
:
string
):
string
{
const
parsed
=
new
URL
(
url
);
const
pathSegments
=
parsed
.
pathname
.
split
(
'/'
);
return
pathSegments
[
pathSegments
.
length
-
1
];
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment