This library was generated with Angular CLI version 17.0.0 The goal of creating this library to facilitate manipulation with pdf.js on the Angular framework.
- ✨Convert all BUS and DOM events to Observable
- ✨Easier to manipulate and customize by typescript code
- ✨Structure of code more clean
- PDF.JS - PDF Reader in JavaScript
- Angular - Awesome typescript-based framework easier to develop application
- @daibh/cdk - Library include some function support to develop this library.
Install the dependencies and devDependencies and start the server.
npm install @daibh/pdf --save
Library | Version |
---|---|
Angular | 17.0.0 |
Pdf.js | v3.8.162 |
@daibh/cdk | v0.0.1 |
import { Component, Input, OnInit } from '@angular/core';
import { CommonModule } from '@angular/common';
import { PdfComponent } from '@daibh/pdf';
import { PdfThumbnailComponent } from '@daibh/pdf/components';
@Component({
selector: 'storybook-pdf-viewer-example',
template: `
<div class="wrapper">
<div class="pdf-viewer">
<ngx-pdf [src]="pdfSrc"></ngx-pdf>
</div>
<div class="pdf-viewer-thumbnail">
<ngx-pdf-thumbnail></ngx-pdf-thumbnail>
</div>
</div>
`,
styles: [`
.wrapper {
display: flex;
flex-direction: row;
.pdf-viewer {
position: relative;
width: 100%;
}
.pdf-viewer-thumbnail {
flex: 1 0 auto;
flex-basis: 160px;
max-height: 100vh;
overflow-y: auto;
display: flex;
justify-content: center;
background-color: rgb(245, 246, 247);
}
}
`],
standalone: true,
imports: [
CommonModule,
PdfComponent,
PdfThumbnailComponent
]
})
export class PdfExampleComponent {
@Input() pdfSrc: string;
}
Hey 👋 If it's useful for you. You can now buy me a coffee! ^^!
MIT
Free Software, Bless you all!