Load pdf stream and show it in ionic app.
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
import {File} from '@ionic-native/file'; | |
import { DocumentViewer } from '@ionic-native/document-viewer'; | |
export class DocumentViewer | |
{ | |
constructor(private file : File, private documentViewer: DocumentViewer) | |
{ | |
} | |
public openDocument(document: Document) | |
{ | |
if (!document) | |
{ | |
this.showError("Document selected is null"); | |
return; | |
} | |
let path "documents/"+databaseId; | |
let headers = new Headers({ | |
'Accept': 'application/pdf' | |
}); | |
let options = new RequestOptions({headers, responseType: ResponseContentType.ArrayBuffer}); | |
let observableResponse = this.http.get(appConstants.apiUrl+ | |
path, options); | |
observableResponse.subscribe((response: Response) => { | |
this.showDocument(response, document); | |
}, (error: any) => { | |
}); | |
} | |
private showDocument(response: Response, document: Document) | |
{ | |
let buffer = response.arrayBuffer(); | |
let pdfBlob = new Blob([buffer], {type: 'application/pdf'}); | |
this.file.writeFile(this.file.dataDirectory, document.databaseId+".pdf", pdfBlob, {replace: true}).then(c => { | |
this.documentViewer.viewDocument(this.file.dataDirectory+document.databaseId+".pdf", "application/pdf", | |
{print: {enabled: true}, bookmarks: {enabled: true}, email: {enabled: true}, title: document.title}); | |
}); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment