[]
PDF document searcher. Generates asynchronous search results (see search method). The GcPdfSearcher API was designed to be used internally with Search Panel UI.
IPdfSearcher
get _query():
string
string
The (current) normalized search query.
get highlightAll():
boolean
Gets highlightAll option.
boolean
set highlightAll(
checked
):void
Sets highlightAll option.
boolean
void
get selectedSearchResult():
SearchResult
Gets selected search result.
SearchResult
get selectedSearchResultIndex():
number
Gets selected search result index. Returns -1 if nothing is selected.
number
get state():
PdfSearcherOptions
Retrieves non-empty searcher options.
PdfSearcherOptions
The current state of the PDF searcher options, ensuring that it is a valid object.
get totalResultsCount():
number
Gets total search results count.
number
get totalResultsCountPromise():
Promise
<number
>
Gets total search results count promise.
Promise
<number
>
_calculatePhraseMatch(
query
,pageContentsEndings
,pageContent
,entireWord
,startsWith
,endsWith
,wildcards
):object
Calculates the phrase matches in the given page content based on the specified query and matching options.
string
The query string to search for.
An object representing the line endings on the page, where keys are character indices and values indicate line endings.
string
The content of the page.
boolean
Whether to match the entire word only.
boolean
Whether the query should match phrases that start with the query string.
boolean
Whether the query should match phrases that end with the query string.
boolean
Whether the query allows wildcards for matching.
object
An object containing the matches and their lengths.
matches - An array of character indices (character indices) on the page where matches were found.
matchesLength - An array of lengths for each matched text.
matches:
number
[]
matchesLength:
number
[]
_extractText():
void
Extract all text from pdf document once.
void
_isEntireWord(
content
,lineEndings
,startIdx
,length
):boolean
Determine if the search query constitutes a "whole word", by comparing the first/last character type with the preceding/following character type.
any
any
any
boolean
_prepareMatches(
matchesWithLength
,matches
,matchesLength
):void
Helper for multi-term search that fills the matchesWithLength
array
and handles cases where one search term includes another search term (for
example, "tamed tame" or "this is"). It looks for intersecting terms in
the matches
and keeps elements with a longer match length.
any
any
any
void
applyHighlight():
void
Render highlight for the current search result.
void
cancel():
void
Cancel search task.
void
// Open the document, find the text 'wildlife' and highlight the first result:
async function loadPdfViewer(selector) {
var viewer = new GcPdfViewer(selector, { restoreViewStateOnLoad: false });
viewer.addDefaultPanels();
var afterOpenPromise = new Promise((resolve)=>{ viewer.onAfterOpen.register(()=>{ resolve(); }); });
await viewer.open('wetlands.pdf');
await afterOpenPromise;
var findOptions = { Text: 'wildlife' };
var searchIterator = await viewer.searcher.search(findOptions);
var searchResult = await searchIterator.next();
viewer.searcher.cancel();
viewer.searcher.highlight(searchResult.value);
}
loadPdfViewer('#root');
createHighlightFromTextSegment(
pageIndex
,startCharIndex
,endCharIndex
,args
?):Promise
<ICustomHighlight
>
Highlights a specified portion of text on a given page.
number
The index of the page where the text is located (0-based).
number
The starting character index (0-based) of the text segment to highlight.
number
The ending character index (0-based) of the text segment to highlight. The character at this index will be excluded from the highlight.
Optional parameters to customize the highlight, such as color, border color, and width.
string
The color of the highlight border, specified in rgba
, hex
, or named color format.
Default is a semi-transparent orange (rgba(255, 165, 0, 0.75)
or #FFA500
) which provides a contrasting border.
number
The width of the highlight border in pixels (default is 2 pixels).
string
The fill color for the highlight, specified in rgba
, hex
, or named color format.
Default is a semi-transparent yellow (rgba(255, 255, 0, 0.5)
or #FFFF00
) which provides a clear highlight.
any
A custom function for handling the painting of the highlight (optional).
Promise
<ICustomHighlight
>
A promise that resolves to true
if the text was successfully highlighted, otherwise false
.
// Highlight the text from character 10 to character 20 on the first page with custom highlight colors.
viewer.highlightTextSegment(0, 10, 20, {
color: 'rgba(173, 216, 230, 0.5)', // semi-transparent light blue
borderColor: 'blue', // named color for the border
borderWidth: 4, // custom border width
clearPrevious: true
});
fetchPageContent(
pageIndex
):Promise
<string
>
Retrieves the content of a specific page.
number
The index of the page.
Promise
<string
>
The content of the specified page.
fetchPageContentLineEndings(
pageIndex
):Promise
<{}>
Retrieves the line endings of the content of a specific page.
number
The index of the page.
Promise
<{}>
The line endings of the content of the specified page.
fetchPageTextRects(
pageIndex
):Promise
<{items
:IGcTextRect
[];styles
:any
[]; }>
Retrieves the text rectangles and styles of a specific page.
number
The index of the page.
Promise
<{ items
: IGcTextRect
[]; styles
: any
[]; }>
The text rectangles and styles of the specified page.
getContentSnippet(
startInd
,endInd
,pageContent
,pageContentsEndings
,fillLineEndingsWithSpaces
?):string
Extracts a substring from pageContent
between startInd
and endInd
, and optionally fills line endings with spaces
based on pageContentsEndings
mapping.
number
The start index of the substring in pageContent
.
number
The end index of the substring in pageContent
.
string
The full content of the page from which the substring is extracted.
A mapping indicating where line endings occur.
boolean
Whether to fill line endings with spaces if they don't already exist.
string
The substring with optional spaces inserted at line breaks.
hashSearchResultId(
searchResult
):string
Generates a unique hash ID for the given search result.
SearchResult
The search result object to generate a hash ID for.
string
A unique hash ID based on the properties of the search result.
highlight(
searchResult
,pageIndex
?):Promise
<void
>
Navigates to a page containing the result and highlights found text.
any
number
Promise
<void
>
// Open the document, find the text 'wildlife' and highlight the first result:
async function loadPdfViewer(selector) {
var viewer = new GcPdfViewer(selector, { restoreViewStateOnLoad: false });
viewer.addDefaultPanels();
var afterOpenPromise = new Promise((resolve)=>{ viewer.onAfterOpen.register(()=>{ resolve(); }); });
await viewer.open('wetlands.pdf');
await afterOpenPromise;
var findOptions = { Text: 'wildlife' };
var searchIterator = await viewer.searcher.search(findOptions);
var searchResult = await searchIterator.next();
viewer.searcher.cancel();
viewer.searcher.highlight(searchResult.value);
}
loadPdfViewer('#root');
isResultSelected(
result
):boolean
Checks whether a specific search result is currently selected.
SearchResult
The search result to be checked for selection.
boolean
A boolean indicating whether the provided search result is currently selected.
nextSearchResult(
result
,cancellation
):Promise
<SearchResult
>
Issues the next search result, primarily used internally by the PDF Searcher.
SearchResult
The search result to be processed.
any
The cancellation token to handle the possibility of cancellation.
Promise
<SearchResult
>
A Promise that resolves with the processed search result.
resetResults():
void
Clear search results. This method must be called when the SearchPanel is closed.
void
search(
options
):AsyncIterableIterator
<SearchResult
>
Asynchronously generates search results based on the provided search options.
FindOptions
Search options to customize the search.
AsyncIterableIterator
<SearchResult
>
An asynchronous iterable iterator that yields search results.
// Highlight all search results without opening SearchPanel.
const searchIterator = viewer.searcher.search({ Text: "test", MatchCase: true, HighlightAll: true });
searchIterator.next();
searcher.applyHighlight();
// Iterate all search results
const searcher = viewer.searcher;
var searchResults = [];
const searchIterator = searcher.search({ Text: textToSearch, MatchCase: true });
var searchResult = await searchIterator.next();
if (searchResult.value)
searcher.highlight(searchResult.value)
while (searchResult.value && !searchResult.done) {
const searchResultValue = searchResult.value;
searchResults.push(`index: ${searchResultValue.ItemIndex}, text: ${searchResultValue.DisplayText}, pageIndex: ${searchResultValue.PageIndex}`);
searchResult = await searchIterator.next();
}
console.log("Search results: " + (searchResults.length ? searchResults.join("; ") : "No search results"));
// Open the document, find the text 'wildlife' and highlight the first result:
async function loadPdfViewer(selector) {
var viewer = new DsPdfViewer(selector, { restoreViewStateOnLoad: false });
viewer.addDefaultPanels();
var afterOpenPromise = new Promise((resolve)=>{ viewer.onAfterOpen.register(()=>{ resolve(); }); });
await viewer.open('wetlands.pdf');
await afterOpenPromise;
var findOptions = { Text: 'wildlife' };
var searchIterator = await viewer.searcher.search(findOptions);
var searchResult = await searchIterator.next();
viewer.searcher.cancel();
viewer.searcher.highlight(searchResult.value);
}
loadPdfViewer('#root');
// Open the document, find the text 'wildlife' and print search results to the console:
async function loadPdfViewer(selector) {
var viewer = new DsPdfViewer(selector);
viewer.addDefaultPanels();
await viewer.open('wetlands.pdf');
await (new Promise((resolve)=>{
viewer.onAfterOpen.register(()=>{
resolve();
});
}));
var findOptions = {
Text: 'wildlife',
MatchCase: true,
WholeWord: true,
StartsWith: false,
EndsWith: false,
Wildcards: false,
Proximity: false,
SearchBackward: false,
HighlightAll: true
};
var searcher = viewer.searcher;
var searchIterator = await searcher.search(findOptions);
var resultsCount = 0;
var searchResult;
do {
searchResult = await searchIterator.next();
if (searchResult.value) {
// this could be either result or progress message (ItemIndex < 0)
if(searchResult.value.ItemIndex >= 0) {
console.log('next search result:');
console.log(searchResult.value);
resultsCount++;
} else {
const pageCount = _doc.pageCount.totalPageCount || _doc.pageCount.renderedSoFar;
console.log('search progress, page index is ' + searchResult.value.PageIndex);
}
}
else {
console.log("Search completed");
break;
}
}
while(!searchResult.done);
console.log('Total results count is ' + resultsCount);
}
toggle(
forceExpand
?,replaceMode
?):void
Toggles the visibility of the Search UI.
boolean
Indicates whether to force expanding the Search UI. Default is true.
boolean
Enables the replace mode in the Search UI. Default is false.
void
IPdfSearcher.toggle
updateAllPages():
void
Repaint highlight for visible pages.
void