Compare commits
25 Commits
Author | SHA1 | Date | |
---|---|---|---|
e6cd135920 | |||
7dd585553c | |||
561b391f03 | |||
a5ff39d306 | |||
60e6d935d6 | |||
e547e38158 | |||
78e4fb23cf | |||
ecc8396f4f | |||
efac2187f2 | |||
12c1d92ec4 | |||
4769548dad | |||
1ebfa25695 | |||
e519ba6ebe | |||
5736f2b7d3 | |||
0d5dc9a82f | |||
86366d86b9 | |||
855ce7c074 | |||
5d655035d6 | |||
e994c80e34 | |||
861b7875d3 | |||
610b2ba0d1 | |||
fac20675e6 | |||
e5249b7ed0 | |||
2855e1ec2b | |||
942173e905 |
32
changelog.md
Normal file
32
changelog.md
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
# Changelog
|
||||||
|
|
||||||
|
## 2024-11-27 - 1.0.103 - fix(DeDocument)
|
||||||
|
Fix rendering of documents by properly moving new pages back to the document container
|
||||||
|
|
||||||
|
- Resolved an issue in the DeDocument component where new pages were wrongly managed, causing errors in the rendering of documents.
|
||||||
|
- Added a documentBuildContainer for temporary storage during page setup, ensuring correct page ordering.
|
||||||
|
|
||||||
|
## 2024-11-27 - 1.0.102 - fix(contentinvoice)
|
||||||
|
Fixed currency display issues in invoice content rendering.
|
||||||
|
|
||||||
|
- Corrected the usage of currency property to consistently pull from letterData content for invoice items.
|
||||||
|
- Ensured currency is correctly displayed in the invoice PDF generation.
|
||||||
|
|
||||||
|
## 2024-11-27 - 1.0.101 - fix(shared)
|
||||||
|
Fixed the demo letter item details by replacing `currency` with `position` to correctly define the item position.
|
||||||
|
|
||||||
|
- Replaced incorrect 'currency' field with 'position' in demoletter.ts for item details.
|
||||||
|
- Ensured item positions are correctly assigned in demoletter.ts.
|
||||||
|
|
||||||
|
## 2024-11-27 - 1.0.100 - fix(core)
|
||||||
|
Fix issues with PDF service, invoice item positioning, and update package dependencies.
|
||||||
|
|
||||||
|
- Updated package dependencies to latest versions for improved stability and performance.
|
||||||
|
- Fixed invoice item positioning in demo data.
|
||||||
|
- Ensured PDF service handles rendering updates more efficiently.
|
||||||
|
|
||||||
|
## 2024-04-20 to 2023-10-16 - 1.0.99 to 1.0.90 - Core Fixes and Documentation Update
|
||||||
|
Routine updates and fixes with a focus on core improvements and documentation enhancements.
|
||||||
|
|
||||||
|
- Regular core updates to enhance stability and performance
|
||||||
|
- Updated project documentation for better clarity and user guidance
|
@ -2,19 +2,40 @@
|
|||||||
"gitzone": {
|
"gitzone": {
|
||||||
"projectType": "wcc",
|
"projectType": "wcc",
|
||||||
"module": {
|
"module": {
|
||||||
"githost": "gitlab.com",
|
"githost": "code.foss.global",
|
||||||
"gitscope": "designestate/private",
|
"gitscope": "designestate/private",
|
||||||
"gitrepo": "dedocument-catalog",
|
"gitrepo": "dedocument-catalog",
|
||||||
"description": "a catalog for creating documents like invoices",
|
"description": "A comprehensive solution for generating documents like invoices, integrating elements, templates, and services to streamline document creation.",
|
||||||
"npmPackagename": "@designestate_private/dedocument-catalog",
|
"npmPackagename": "@designestate_private/dedocument-catalog",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"projectDomain": "design.estate",
|
"projectDomain": "design.estate",
|
||||||
"shortDescription": "undefined variable"
|
"shortDescription": "undefined variable",
|
||||||
|
"keywords": [
|
||||||
|
"document generation",
|
||||||
|
"invoices",
|
||||||
|
"PDF creation",
|
||||||
|
"typescript",
|
||||||
|
"web components",
|
||||||
|
"custom elements",
|
||||||
|
"QR code",
|
||||||
|
"smart contracts",
|
||||||
|
"templating",
|
||||||
|
"dynamic rendering",
|
||||||
|
"responsive design",
|
||||||
|
"modular development",
|
||||||
|
"lightweight",
|
||||||
|
"efficient",
|
||||||
|
"finance",
|
||||||
|
"business"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"npmci": {
|
"npmci": {
|
||||||
"npmGlobalTools": [],
|
"npmGlobalTools": [],
|
||||||
"npmAccessLevel": "private",
|
"npmAccessLevel": "private",
|
||||||
"npmRegistryUrl": "verdaccio2.lossless.one"
|
"npmRegistryUrl": "verdaccio2.lossless.one"
|
||||||
|
},
|
||||||
|
"tsdoc": {
|
||||||
|
"legal": "\n## License and Legal Information\n\nThis repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository. \n\n**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.\n\n### Trademarks\n\nThis project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.\n\n### Company Information\n\nTask Venture Capital GmbH \nRegistered at District court Bremen HRB 35230 HB, Germany\n\nFor any legal inquiries or if you require further information, please contact us via email at hello@task.vc.\n\nBy using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.\n"
|
||||||
}
|
}
|
||||||
}
|
}
|
63
package.json
63
package.json
@ -1,8 +1,8 @@
|
|||||||
{
|
{
|
||||||
"name": "@design.estate/dees-document",
|
"name": "@design.estate/dees-document",
|
||||||
"version": "1.0.91",
|
"version": "1.0.103",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "a catalog for creating documents like invoices",
|
"description": "A comprehensive solution for generating documents like invoices, integrating elements, templates, and services to streamline document creation.",
|
||||||
"main": "dist_ts_web/index.js",
|
"main": "dist_ts_web/index.js",
|
||||||
"typings": "dist_ts_web/index.d.ts",
|
"typings": "dist_ts_web/index.d.ts",
|
||||||
"exports": {
|
"exports": {
|
||||||
@ -12,31 +12,32 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "npm run build && tstest test/",
|
"test": "npm run build && tstest test/",
|
||||||
"build": "tsbuild --allowimplicitany && tsbuild element --allowimplicitany && tsbundle element --production",
|
"build": "tsbuild --allowimplicitany && tsbuild element --allowimplicitany && tsbundle element --production",
|
||||||
"watch": "tswatch element"
|
"watch": "tswatch element",
|
||||||
|
"buildDocs": "tsdoc"
|
||||||
},
|
},
|
||||||
"author": "Lossless GmbH",
|
"author": "Lossless GmbH",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@design.estate/dees-domtools": "^2.0.34",
|
"@design.estate/dees-domtools": "^2.0.65",
|
||||||
"@design.estate/dees-element": "^2.0.23",
|
"@design.estate/dees-element": "^2.0.39",
|
||||||
"@design.estate/dees-wcctools": "^1.0.76",
|
"@design.estate/dees-wcctools": "^1.0.90",
|
||||||
"@git.zone/tsrun": "^1.2.44",
|
"@git.zone/tsrun": "^1.3.3",
|
||||||
"@push.rocks/smartfile": "^10.0.26",
|
"@push.rocks/smartfile": "^11.0.21",
|
||||||
"@push.rocks/smartjson": "^5.0.10",
|
"@push.rocks/smartjson": "^5.0.20",
|
||||||
"@push.rocks/smartpath": "^5.0.5",
|
"@push.rocks/smartpath": "^5.0.18",
|
||||||
"@push.rocks/smartpdf": "^3.0.16",
|
"@push.rocks/smartpdf": "^3.1.7",
|
||||||
"@push.rocks/smarttime": "^4.0.1",
|
"@push.rocks/smarttime": "^4.0.8",
|
||||||
"@tsclass/tsclass": "^4.0.46",
|
"@tsclass/tsclass": "^4.1.2",
|
||||||
"@types/qrcode": "^1.5.2",
|
"@types/qrcode": "^1.5.5",
|
||||||
"qrcode": "^1.5.3"
|
"qrcode": "^1.5.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@git.zone/tsbuild": "^2.1.66",
|
"@git.zone/tsbuild": "^2.2.0",
|
||||||
"@git.zone/tsbundle": "^2.0.8",
|
"@git.zone/tsbundle": "^2.1.0",
|
||||||
"@git.zone/tstest": "^1.0.77",
|
"@git.zone/tstest": "^1.0.90",
|
||||||
"@git.zone/tswatch": "^2.0.7",
|
"@git.zone/tswatch": "^2.0.25",
|
||||||
"@push.rocks/projectinfo": "^5.0.1",
|
"@push.rocks/projectinfo": "^5.0.2",
|
||||||
"@push.rocks/tapbundle": "^5.0.8"
|
"@push.rocks/tapbundle": "^5.5.3"
|
||||||
},
|
},
|
||||||
"files": [
|
"files": [
|
||||||
"ts/**/*",
|
"ts/**/*",
|
||||||
@ -61,5 +62,23 @@
|
|||||||
"bugs": {
|
"bugs": {
|
||||||
"url": "https://gitlab.com/designestate/private/dedocument-catalog/issues"
|
"url": "https://gitlab.com/designestate/private/dedocument-catalog/issues"
|
||||||
},
|
},
|
||||||
"homepage": "https://gitlab.com/designestate/private/dedocument-catalog#readme"
|
"homepage": "https://gitlab.com/designestate/private/dedocument-catalog#readme",
|
||||||
|
"keywords": [
|
||||||
|
"document generation",
|
||||||
|
"invoices",
|
||||||
|
"PDF creation",
|
||||||
|
"typescript",
|
||||||
|
"web components",
|
||||||
|
"custom elements",
|
||||||
|
"QR code",
|
||||||
|
"smart contracts",
|
||||||
|
"templating",
|
||||||
|
"dynamic rendering",
|
||||||
|
"responsive design",
|
||||||
|
"modular development",
|
||||||
|
"lightweight",
|
||||||
|
"efficient",
|
||||||
|
"finance",
|
||||||
|
"business"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
11619
pnpm-lock.yaml
generated
11619
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load Diff
1
readme.hints.md
Normal file
1
readme.hints.md
Normal file
@ -0,0 +1 @@
|
|||||||
|
|
145
readme.md
145
readme.md
@ -1,7 +1,144 @@
|
|||||||
# @design.estate/private/dedocument-catalog
|
# @design.estate/dees-document
|
||||||
a catalog for creating documents like invoices
|
a catalog for creating documents like invoices
|
||||||
|
|
||||||
## Usage
|
## Install
|
||||||
|
To install `@design.estate/dees-document`, run the following command in your project directory:
|
||||||
|
```shell
|
||||||
|
npm install @design.estate/dees-document --save
|
||||||
|
```
|
||||||
|
|
||||||
Use TypeScript for best in class intellisense
|
This will add `@design.estate/dees-document` to your project's dependencies and ensure it's installed into your `node_modules` folder.
|
||||||
For further information read the linked docs at the top of this readme.
|
|
||||||
|
## Usage
|
||||||
|
The `@design.estate/dees-document` package is a comprehensive toolkit for creating various types of documents, such as invoices, with ease. It leverages modern ECMAScript (ES) modules and TypeScript for a type-safe, developer-friendly experience. Below, you'll find detailed examples covering how to utilize the package to its full potential.
|
||||||
|
|
||||||
|
### Setting Up the Document Service
|
||||||
|
Before diving into creating documents, you first need to set up the document service. This involves importing the necessary modules and initializing the service instance.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
import { PdfService, IPdfServiceConstructorOptions } from '@design.estate/dees-document';
|
||||||
|
|
||||||
|
async function setupPdfService() {
|
||||||
|
const options: IPdfServiceConstructorOptions = {
|
||||||
|
// Configuration options here
|
||||||
|
};
|
||||||
|
|
||||||
|
const pdfService = await PdfService.createAndStart(options);
|
||||||
|
console.log('PDF Service started successfully.');
|
||||||
|
return pdfService;
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
In the example above, we import `PdfService` from the package and use its `createAndStart` method to initialize it with optional configuration settings. Replace `// Configuration options here` with any specific options your project may require.
|
||||||
|
|
||||||
|
### Creating a Simple Invoice
|
||||||
|
After setting up the document service, you can proceed to create documents such as invoices. Here, we'll demonstrate how to create a basic invoice.
|
||||||
|
|
||||||
|
#### Define the Invoice Data Structure
|
||||||
|
First, define the basic structure of your invoice. This involves specifying details like the sender, recipient, items, and more.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
import { ILetter } from '@design.estate/dees-document';
|
||||||
|
|
||||||
|
const invoiceData: ILetter = {
|
||||||
|
from: {
|
||||||
|
name: "Your Company Name",
|
||||||
|
address: {
|
||||||
|
streetName: "Your Street",
|
||||||
|
houseNumber: "123",
|
||||||
|
city: "Your City",
|
||||||
|
country: "Your Country",
|
||||||
|
postalCode: "12345",
|
||||||
|
},
|
||||||
|
email: "your-email@example.com",
|
||||||
|
phone: "123-456-7890",
|
||||||
|
},
|
||||||
|
to: {
|
||||||
|
name: "Recipient Company Name",
|
||||||
|
address: {
|
||||||
|
streetName: "Recipient Street",
|
||||||
|
houseNumber: "456",
|
||||||
|
city: "Recipient City",
|
||||||
|
country: "Recipient Country",
|
||||||
|
postalCode: "67890",
|
||||||
|
},
|
||||||
|
email: "recipient-email@example.com",
|
||||||
|
phone: "098-765-4321",
|
||||||
|
},
|
||||||
|
content: {
|
||||||
|
invoiceData: {
|
||||||
|
items: [
|
||||||
|
{
|
||||||
|
name: "Service or Product Name",
|
||||||
|
unitQuantity: 2,
|
||||||
|
unitNetPrice: 100.00,
|
||||||
|
unitType: 'service',
|
||||||
|
vatPercentage: 19,
|
||||||
|
currency: 'EUR',
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
subject: "Invoice for Services Rendered",
|
||||||
|
date: new Date().getTime(),
|
||||||
|
versionInfo: {
|
||||||
|
type: "final",
|
||||||
|
version: "1.0.0"
|
||||||
|
},
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
|
In this structure, `invoiceData` outlines essential details for an invoice document, using the `ILetter` interface. It includes information about both the sender (`from`) and the recipient (`to`), as well as the invoiced items under `content.invoiceData.items`.
|
||||||
|
|
||||||
|
#### Generate the Invoice PDF
|
||||||
|
With the invoice data ready, you can now generate the PDF using the `PdfService` instance.
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
async function generateInvoice(pdfService: PdfService, invoiceData: ILetter) {
|
||||||
|
const pdfBuffer = await pdfService.createPdfFromLetterObject(invoiceData);
|
||||||
|
console.log('Invoice PDF generated successfully.');
|
||||||
|
|
||||||
|
// Here, you can save the PDF to a file, send it over a network, etc.
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
The method `createPdfFromLetterObject` receives the invoice data and returns a `Buffer` containing the PDF. You can then save this PDF to the filesystem, send it over email, or perform any other required actions.
|
||||||
|
|
||||||
|
#### Complete Example Integration
|
||||||
|
Combining everything, your complete script to set up the service, define invoice data, and generate a PDF invoice might look something like this:
|
||||||
|
|
||||||
|
```typescript
|
||||||
|
async function main() {
|
||||||
|
const pdfService = await setupPdfService();
|
||||||
|
await generateInvoice(pdfService, invoiceData);
|
||||||
|
}
|
||||||
|
|
||||||
|
main().then(() => console.log('Invoice generation process completed.'));
|
||||||
|
```
|
||||||
|
|
||||||
|
### Beyond Invoices
|
||||||
|
The `@design.estate/dees-document` package is not limited to invoices alone. It's designed to handle a wide range of document types. The modular architecture allows for the customizable construction of documents, enabling you to tailor the output to meet precise requirements.
|
||||||
|
|
||||||
|
For instance, you can create contracts, reports, and other document types using a similar approach—by defining the content structure and utilizing the PDF service to generate the document. The package's flexibility and extensibility make it an invaluable tool in any document generation workflow.
|
||||||
|
|
||||||
|
### Advanced Usage
|
||||||
|
For more advanced scenarios, such as custom styling, embedding images, and handling more complex document structures, refer to the package's documentation. It provides comprehensive details and examples to help you fully leverage the capabilities of `@design.estate/dees-document`.
|
||||||
|
|
||||||
|
## License and Legal Information
|
||||||
|
|
||||||
|
This repository contains open-source code that is licensed under the MIT License. A copy of the MIT License can be found in the [license](license) file within this repository.
|
||||||
|
|
||||||
|
**Please note:** The MIT License does not grant permission to use the trade names, trademarks, service marks, or product names of the project, except as required for reasonable and customary use in describing the origin of the work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
### Trademarks
|
||||||
|
|
||||||
|
This project is owned and maintained by Task Venture Capital GmbH. The names and logos associated with Task Venture Capital GmbH and any related products or services are trademarks of Task Venture Capital GmbH and are not included within the scope of the MIT license granted herein. Use of these trademarks must comply with Task Venture Capital GmbH's Trademark Guidelines, and any usage must be approved in writing by Task Venture Capital GmbH.
|
||||||
|
|
||||||
|
### Company Information
|
||||||
|
|
||||||
|
Task Venture Capital GmbH
|
||||||
|
Registered at District court Bremen HRB 35230 HB, Germany
|
||||||
|
|
||||||
|
For any legal inquiries or if you require further information, please contact us via email at hello@task.vc.
|
||||||
|
|
||||||
|
By using this repository, you acknowledge that you have read this section, agree to comply with its terms, and understand that the licensing of the code does not imply endorsement by Task Venture Capital GmbH of any derivative works.
|
||||||
|
71
test/test.ts
71
test/test.ts
@ -43,7 +43,7 @@ const testLetterData: plugins.tsclass.business.ILetter = {
|
|||||||
unitNetPrice: 1200,
|
unitNetPrice: 1200,
|
||||||
unitType: 'item',
|
unitType: 'item',
|
||||||
vatPercentage: 0,
|
vatPercentage: 0,
|
||||||
currency: 'EUR',
|
position: 1,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
@ -131,6 +131,75 @@ tap.test('should create an invoice', async () => {
|
|||||||
vatPercentage: 19,
|
vatPercentage: 19,
|
||||||
currency: 'EUR',
|
currency: 'EUR',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
name: 'Overnight Shipping',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 24,
|
||||||
|
currency: 'EUR',
|
||||||
|
},{
|
||||||
|
name: 'Website Creation',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 0,
|
||||||
|
currency: 'EUR',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Hosting',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 19,
|
||||||
|
currency: 'EUR',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Overnight Shipping',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 24,
|
||||||
|
currency: 'EUR',
|
||||||
|
},{
|
||||||
|
name: 'Website Creation',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 0,
|
||||||
|
currency: 'EUR',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Hosting',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 19,
|
||||||
|
currency: 'EUR',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Overnight Shipping',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 24,
|
||||||
|
currency: 'EUR',
|
||||||
|
},{
|
||||||
|
name: 'Website Creation',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 0,
|
||||||
|
currency: 'EUR',
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Hosting',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 1200,
|
||||||
|
unitType: 'item',
|
||||||
|
vatPercentage: 19,
|
||||||
|
currency: 'EUR',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
name: 'Overnight Shipping',
|
name: 'Overnight Shipping',
|
||||||
unitQuantity: 1,
|
unitQuantity: 1,
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* autocreated commitinfo by @pushrocks/commitinfo
|
* autocreated commitinfo by @push.rocks/commitinfo
|
||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-document',
|
name: '@design.estate/dees-document',
|
||||||
version: '1.0.91',
|
version: '1.0.103',
|
||||||
description: 'a catalog for creating documents like invoices'
|
description: 'A comprehensive solution for generating documents like invoices, integrating elements, templates, and services to streamline document creation.'
|
||||||
}
|
}
|
||||||
|
@ -10,6 +10,13 @@ export interface IPdfServiceConstructorOptions {
|
|||||||
* a pdf service for generating pdfs
|
* a pdf service for generating pdfs
|
||||||
*/
|
*/
|
||||||
export class PdfService {
|
export class PdfService {
|
||||||
|
// STATIC
|
||||||
|
public static async createAndStart(optionsArg: IPdfServiceConstructorOptions) {
|
||||||
|
const pdfService = new PdfService(optionsArg);
|
||||||
|
await pdfService.start();
|
||||||
|
return pdfService;
|
||||||
|
}
|
||||||
|
|
||||||
// INSTANCE
|
// INSTANCE
|
||||||
options: IPdfServiceConstructorOptions;
|
options: IPdfServiceConstructorOptions;
|
||||||
|
|
||||||
|
@ -1,8 +1,8 @@
|
|||||||
/**
|
/**
|
||||||
* autocreated commitinfo by @pushrocks/commitinfo
|
* autocreated commitinfo by @push.rocks/commitinfo
|
||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@design.estate/dees-document',
|
name: '@design.estate/dees-document',
|
||||||
version: '1.0.91',
|
version: '1.0.103',
|
||||||
description: 'a catalog for creating documents like invoices'
|
description: 'A comprehensive solution for generating documents like invoices, integrating elements, templates, and services to streamline document creation.'
|
||||||
}
|
}
|
||||||
|
@ -292,9 +292,9 @@ export class DeContentInvoice extends DeesElement {
|
|||||||
<div class="lineItem">${invoiceItem.name}</div>
|
<div class="lineItem">${invoiceItem.name}</div>
|
||||||
<div class="lineItem">${invoiceItem.unitQuantity}</div>
|
<div class="lineItem">${invoiceItem.unitQuantity}</div>
|
||||||
<div class="lineItem">${invoiceItem.unitType}</div>
|
<div class="lineItem">${invoiceItem.unitType}</div>
|
||||||
<div class="lineItem">${invoiceItem.unitNetPrice} ${invoiceItem.currency}</div>
|
<div class="lineItem">${invoiceItem.unitNetPrice} ${this.letterData?.content.invoiceData.currency}</div>
|
||||||
<div class="lineItem">
|
<div class="lineItem">
|
||||||
${invoiceItem.unitQuantity * invoiceItem.unitNetPrice} ${invoiceItem.currency}
|
${invoiceItem.unitQuantity * invoiceItem.unitNetPrice} ${this.letterData?.content.invoiceData.currency}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
`
|
`
|
||||||
@ -343,7 +343,7 @@ export class DeContentInvoice extends DeesElement {
|
|||||||
IBAN: ${this.letterData?.from?.sepaConnection?.iban}<br />
|
IBAN: ${this.letterData?.from?.sepaConnection?.iban}<br />
|
||||||
BIC: ${this.letterData?.from?.sepaConnection?.bic}<br />
|
BIC: ${this.letterData?.from?.sepaConnection?.bic}<br />
|
||||||
Description: ${this.letterData?.content.invoiceData?.id}<br />
|
Description: ${this.letterData?.content.invoiceData?.id}<br />
|
||||||
Amount: ${this.getTotalGross()} ${this.letterData?.content.invoiceData.items[0].currency}
|
Amount: ${this.getTotalGross()} ${this.letterData?.content.invoiceData.currency}
|
||||||
</div>
|
</div>
|
||||||
${this.letterData?.content?.contractData?.contractDate
|
${this.letterData?.content?.contractData?.contractDate
|
||||||
? html`
|
? html`
|
||||||
|
6
ts_web/elements/document.demo.ts
Normal file
6
ts_web/elements/document.demo.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import * as shared from './shared/index.js';
|
||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`
|
||||||
|
<dedocument-dedocument .format="${'a4'}" .letterData=${shared.demoLetter}></dedocument-dedocument>
|
||||||
|
`;
|
@ -18,6 +18,7 @@ import { DePage } from './page.js';
|
|||||||
import { DeContentInvoice } from './contentinvoice.js';
|
import { DeContentInvoice } from './contentinvoice.js';
|
||||||
|
|
||||||
import * as shared from './shared/index.js';
|
import * as shared from './shared/index.js';
|
||||||
|
import { demoFunc } from './document.demo.js';
|
||||||
|
|
||||||
declare global {
|
declare global {
|
||||||
interface HTMLElementTagNameMap {
|
interface HTMLElementTagNameMap {
|
||||||
@ -27,22 +28,29 @@ declare global {
|
|||||||
|
|
||||||
@customElement('dedocument-dedocument')
|
@customElement('dedocument-dedocument')
|
||||||
export class DeDocument extends DeesElement {
|
export class DeDocument extends DeesElement {
|
||||||
public static demo = () => html`
|
public static demo = demoFunc;
|
||||||
<dedocument-dedocument .format="${'a4'}" .letterData=${shared.demoLetter}></dedocument-dedocument>
|
|
||||||
`;
|
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: String,
|
type: String,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
public format: 'a4' = 'a4';
|
public format: 'a4' = 'a4';
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: Number,
|
type: Number,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
public viewWidth: number = shared.a4Width;
|
public viewWidth: number = null;
|
||||||
|
|
||||||
|
@property({
|
||||||
|
type: Number,
|
||||||
|
reflect: true,
|
||||||
|
})
|
||||||
|
public viewHeight: number = null;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
|
reflect: true,
|
||||||
})
|
})
|
||||||
printMode = false;
|
printMode = false;
|
||||||
|
|
||||||
@ -56,7 +64,6 @@ export class DeDocument extends DeesElement {
|
|||||||
return valueArg;
|
return valueArg;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
})
|
})
|
||||||
public letterData: plugins.tsclass.business.ILetter;
|
public letterData: plugins.tsclass.business.ILetter;
|
||||||
|
|
||||||
@ -81,46 +88,56 @@ export class DeDocument extends DeesElement {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.betweenPagesSpacer {
|
.betweenPagesSpacer {
|
||||||
height: 20px;
|
height: 16px;
|
||||||
}
|
}
|
||||||
`,
|
`,
|
||||||
];
|
];
|
||||||
|
|
||||||
public render(): TemplateResult {
|
public render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
<style>
|
<div class="documentContainer"></div>
|
||||||
:host {
|
|
||||||
transform-origin: top left;
|
|
||||||
transform: ${this.viewWidth
|
|
||||||
? unsafeCSS(
|
|
||||||
`scale(${this.viewWidth / shared.a4Width}, ${this.viewWidth / shared.a4Width})`
|
|
||||||
)
|
|
||||||
: unsafeCSS('')};
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
<div class="scaleport"></div>
|
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async firstUpdated(_changedProperties: Map<string | number | symbol, unknown>) {
|
public async firstUpdated(_changedProperties: Map<string | number | symbol, unknown>) {
|
||||||
|
const resizeObserver = new ResizeObserver((entries) => {
|
||||||
|
for (const entry of entries) {
|
||||||
|
const width = entry.contentRect.width;
|
||||||
|
const height = entry.contentRect.height;
|
||||||
|
// Handle the new dimensions here
|
||||||
|
this.adjustDePageScaling();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
resizeObserver.observe(this);
|
||||||
|
this.registerGarbageFunction(() => {
|
||||||
|
resizeObserver.disconnect();
|
||||||
|
})
|
||||||
|
|
||||||
if (this.letterDataUrl) {
|
if (this.letterDataUrl) {
|
||||||
const response = await fetch(this.letterDataUrl);
|
const response = await fetch(this.letterDataUrl);
|
||||||
this.letterData = await response.json();
|
this.letterData = await response.json();
|
||||||
}
|
}
|
||||||
this.renderDocument();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public latestRenderedLetterData: plugins.tsclass.business.ILetter = null;
|
||||||
|
|
||||||
|
|
||||||
public async renderDocument() {
|
public async renderDocument() {
|
||||||
const domtools = await this.domtoolsPromise;
|
const domtools = await this.domtoolsPromise;
|
||||||
const scaleport = this.shadowRoot.querySelector('.scaleport');
|
|
||||||
|
|
||||||
|
const documentBuildContainer = document.createElement('div');
|
||||||
|
document.body.appendChild(documentBuildContainer);
|
||||||
|
|
||||||
let pages: DePage[] = [];
|
let pages: DePage[] = [];
|
||||||
let pageCounter = 0;
|
let pageCounter = 0;
|
||||||
let complete = false;
|
let complete = false;
|
||||||
const content: DeContentInvoice = document.createElement(
|
|
||||||
'dedocument-contentinvoice'
|
// lets append the content
|
||||||
) as DeContentInvoice;
|
const content: DeContentInvoice = new DeContentInvoice();
|
||||||
content.letterData = this.letterData;
|
content.letterData = this.letterData;
|
||||||
document.body.appendChild(content);
|
document.body.appendChild(content);
|
||||||
|
|
||||||
await domtools.convenience.smartdelay.delayFor(0);
|
await domtools.convenience.smartdelay.delayFor(0);
|
||||||
let overallContentOffset: number = 0;
|
let overallContentOffset: number = 0;
|
||||||
let currentContentOffset: number;
|
let currentContentOffset: number;
|
||||||
@ -135,13 +152,8 @@ export class DeDocument extends DeesElement {
|
|||||||
newPage.pageNumber = pageCounter;
|
newPage.pageNumber = pageCounter;
|
||||||
newPage.append(currentContent);
|
newPage.append(currentContent);
|
||||||
newPage.pageTotalNumber = pageCounter;
|
newPage.pageTotalNumber = pageCounter;
|
||||||
scaleport.append(newPage);
|
documentBuildContainer.append(newPage);
|
||||||
// betweenPagesSpacer
|
|
||||||
if (!this.printMode) {
|
|
||||||
const betweenPagesSpacerDiv = document.createElement('div');
|
|
||||||
betweenPagesSpacerDiv.classList.add('betweenPagesSpacer');
|
|
||||||
scaleport.append(betweenPagesSpacerDiv);
|
|
||||||
}
|
|
||||||
await currentContent.elementDomReady;
|
await currentContent.elementDomReady;
|
||||||
await currentContent.trimStartToOffset(overallContentOffset);
|
await currentContent.trimStartToOffset(overallContentOffset);
|
||||||
let newPageOverflows = await newPage.checkOverflow();
|
let newPageOverflows = await newPage.checkOverflow();
|
||||||
@ -160,9 +172,57 @@ export class DeDocument extends DeesElement {
|
|||||||
console.log(currentContentOffset);
|
console.log(currentContentOffset);
|
||||||
}
|
}
|
||||||
document.body.removeChild(content);
|
document.body.removeChild(content);
|
||||||
|
document.body.removeChild(documentBuildContainer);
|
||||||
|
|
||||||
|
const documentContainer = this.shadowRoot.querySelector('.documentContainer');
|
||||||
|
if (documentContainer) {
|
||||||
|
const children = Array.from(documentContainer.children);
|
||||||
|
children.forEach((child) => documentContainer.removeChild(child));
|
||||||
|
}
|
||||||
for (const page of pages) {
|
for (const page of pages) {
|
||||||
page.pageTotalNumber = pageCounter;
|
page.pageTotalNumber = pageCounter;
|
||||||
|
documentContainer.append(page);
|
||||||
|
// betweenPagesSpacer
|
||||||
|
if (!this.printMode) {
|
||||||
|
const betweenPagesSpacerDiv = document.createElement('div');
|
||||||
|
betweenPagesSpacerDiv.classList.add('betweenPagesSpacer');
|
||||||
|
documentContainer.appendChild(betweenPagesSpacerDiv);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this.adjustDePageScaling();
|
||||||
|
this.latestRenderedLetterData = this.letterData;
|
||||||
|
}
|
||||||
|
|
||||||
|
async updated(changedProperties: Map<string | number | symbol, unknown>): Promise<void> {
|
||||||
|
super.updated(changedProperties);
|
||||||
|
const domtools = await this.domtoolsPromise;
|
||||||
|
const renderedDocIsUpToDate = domtools.convenience.smartjson.deepEqualObjects(this.letterData, this.latestRenderedLetterData);
|
||||||
|
if (!renderedDocIsUpToDate) {
|
||||||
|
this.renderDocument();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (changedProperties.has('viewHeight') || changedProperties.has('viewWidth')) {
|
||||||
|
this.adjustDePageScaling();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private adjustDePageScaling() {
|
||||||
|
if (this.printMode) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.viewWidth = this.clientWidth;
|
||||||
|
// Find all DePage instances within this DeDocument
|
||||||
|
const pages = this.shadowRoot.querySelectorAll('dedocument-page');
|
||||||
|
|
||||||
|
// Update each DePage instance's viewHeight and viewWidth
|
||||||
|
pages.forEach((page: DePage) => {
|
||||||
|
if (this.viewHeight) {
|
||||||
|
page.viewHeight = this.viewHeight;
|
||||||
|
}
|
||||||
|
if (this.viewWidth) {
|
||||||
|
page.viewWidth = this.viewWidth;
|
||||||
|
console.log('setting viewWidth: ', this.viewWidth);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -6,3 +6,6 @@ export * from './pagecontainer.js';
|
|||||||
export * from './pagecontent.js';
|
export * from './pagecontent.js';
|
||||||
export * from './pagefooter.js';
|
export * from './pagefooter.js';
|
||||||
export * from './pageheader.js';
|
export * from './pageheader.js';
|
||||||
|
export * from './viewer.js';
|
||||||
|
|
||||||
|
export * from './shared/index.js';
|
@ -23,6 +23,12 @@ declare global {
|
|||||||
export class DePage extends DeesElement {
|
export class DePage extends DeesElement {
|
||||||
public static demo = () => html` <dedocument-page .format="${'a4'}"></dedocument-page> `;
|
public static demo = () => html` <dedocument-page .format="${'a4'}"></dedocument-page> `;
|
||||||
|
|
||||||
|
@property()
|
||||||
|
viewWidth: number = null;
|
||||||
|
|
||||||
|
@property()
|
||||||
|
viewHeight: number = null;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: String,
|
type: String,
|
||||||
})
|
})
|
||||||
@ -41,7 +47,7 @@ export class DePage extends DeesElement {
|
|||||||
@property({
|
@property({
|
||||||
type: Object,
|
type: Object,
|
||||||
})
|
})
|
||||||
public letterData: tsclass.business.ILetter = shared.demoLetter;
|
public letterData: tsclass.business.ILetter = null;
|
||||||
|
|
||||||
@property({
|
@property({
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@ -58,7 +64,13 @@ export class DePage extends DeesElement {
|
|||||||
domtools.elementBasic.staticStyles,
|
domtools.elementBasic.staticStyles,
|
||||||
css`
|
css`
|
||||||
:host {
|
:host {
|
||||||
|
display: block;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#scaleWrapper {
|
||||||
|
transform-origin: top left;
|
||||||
|
}
|
||||||
|
|
||||||
.versionOverlay {
|
.versionOverlay {
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
@ -93,44 +105,52 @@ export class DePage extends DeesElement {
|
|||||||
|
|
||||||
public render(): TemplateResult {
|
public render(): TemplateResult {
|
||||||
return html`
|
return html`
|
||||||
<dedocument-pagecontainer .printMode=${this.printMode}>
|
<div id="scaleWrapper">
|
||||||
<dedocument-pageheader
|
<dedocument-pagecontainer .printMode=${this.printMode}>
|
||||||
.letterData=${this.letterData}
|
${this.letterData
|
||||||
.pageNumber="${this.pageNumber}"
|
|
||||||
.pageTotalNumber="${this.pageTotalNumber}"
|
|
||||||
></dedocument-pageheader>
|
|
||||||
${this.pageNumber === 1
|
|
||||||
? html`
|
|
||||||
<dedocument-letterheader
|
|
||||||
.pageNumber="${this.pageNumber}"
|
|
||||||
.letterData=${this.letterData}
|
|
||||||
.pageTotalNumber="${this.pageTotalNumber}"
|
|
||||||
></dedocument-letterheader>
|
|
||||||
`
|
|
||||||
: html``}
|
|
||||||
<dedocument-pagecontent
|
|
||||||
.pageNumber="${this.pageNumber}"
|
|
||||||
.pageTotalNumber="${this.pageTotalNumber}"
|
|
||||||
.letterData=${this.letterData}
|
|
||||||
><slot></slot
|
|
||||||
></dedocument-pagecontent>
|
|
||||||
<dedocument-pagefooter
|
|
||||||
.letterData=${this.letterData}
|
|
||||||
.pageNumber="${this.pageNumber}"
|
|
||||||
.pageTotalNumber="${this.pageTotalNumber}"
|
|
||||||
></dedocument-pagefooter>
|
|
||||||
<div class="versionOverlay">
|
|
||||||
${this.letterData.versionInfo.type === 'draft'
|
|
||||||
? html`
|
? html`
|
||||||
<div class="topInfo">
|
<dedocument-pageheader
|
||||||
Please note: THIS IS A DRAFT ONLY. NO RIGHTS CAN BE DERIVED FROM THIS.<br>
|
.letterData=${this.letterData}
|
||||||
-> Revision/Document version: ${this.letterData.versionInfo.version}
|
.pageNumber="${this.pageNumber}"
|
||||||
|
.pageTotalNumber="${this.pageTotalNumber}"
|
||||||
|
></dedocument-pageheader>
|
||||||
|
${this.pageNumber === 1
|
||||||
|
? html`
|
||||||
|
<dedocument-letterheader
|
||||||
|
.pageNumber="${this.pageNumber}"
|
||||||
|
.letterData=${this.letterData}
|
||||||
|
.pageTotalNumber="${this.pageTotalNumber}"
|
||||||
|
></dedocument-letterheader>
|
||||||
|
`
|
||||||
|
: html``}
|
||||||
|
<dedocument-pagecontent
|
||||||
|
.pageNumber="${this.pageNumber}"
|
||||||
|
.pageTotalNumber="${this.pageTotalNumber}"
|
||||||
|
.letterData=${this.letterData}
|
||||||
|
><slot></slot
|
||||||
|
></dedocument-pagecontent>
|
||||||
|
<dedocument-pagefooter
|
||||||
|
.letterData=${this.letterData}
|
||||||
|
.pageNumber="${this.pageNumber}"
|
||||||
|
.pageTotalNumber="${this.pageTotalNumber}"
|
||||||
|
></dedocument-pagefooter>
|
||||||
|
<div class="versionOverlay">
|
||||||
|
${this.letterData.versionInfo.type === 'draft'
|
||||||
|
? html`
|
||||||
|
<div class="topInfo">
|
||||||
|
Please note: THIS IS A DRAFT ONLY. NO RIGHTS CAN BE DERIVED FROM THIS.<br />
|
||||||
|
-> Revision/Document version: ${this.letterData.versionInfo.version}
|
||||||
|
</div>
|
||||||
|
<div class="bigDraftText">DRAFT</div>
|
||||||
|
`
|
||||||
|
: html``}
|
||||||
</div>
|
</div>
|
||||||
<div class="bigDraftText">DRAFT</div>
|
|
||||||
`
|
`
|
||||||
: html``}
|
: html`
|
||||||
</div>
|
<slot></slot>
|
||||||
</dedocument-pagecontainer>
|
`}
|
||||||
|
</dedocument-pagecontainer>
|
||||||
|
</div>
|
||||||
`;
|
`;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -139,4 +159,32 @@ export class DePage extends DeesElement {
|
|||||||
const pageContent = this.shadowRoot.querySelector('dedocument-pagecontent');
|
const pageContent = this.shadowRoot.querySelector('dedocument-pagecontent');
|
||||||
return pageContent.checkOverflow();
|
return pageContent.checkOverflow();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
updated(changedProperties: Map<string | number | symbol, unknown>): void {
|
||||||
|
super.updated(changedProperties);
|
||||||
|
if (changedProperties.has('viewHeight') || changedProperties.has('viewWidth')) {
|
||||||
|
this.adjustScaling();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private adjustScaling() {
|
||||||
|
console.log('page scale adjustment triggered.');
|
||||||
|
const scaleWrapper: HTMLDivElement = this.shadowRoot.querySelector('#scaleWrapper');
|
||||||
|
|
||||||
|
if (!scaleWrapper) return;
|
||||||
|
|
||||||
|
let scale = 1;
|
||||||
|
if (this.viewHeight) {
|
||||||
|
scale = this.viewHeight / shared.a4Height;
|
||||||
|
} else if (this.viewWidth) {
|
||||||
|
scale = this.viewWidth / shared.a4Width;
|
||||||
|
}
|
||||||
|
console.log(`new scale is ${scale}`);
|
||||||
|
scaleWrapper.style.transform = `scale(${scale})`;
|
||||||
|
|
||||||
|
// Adjust the outer dimensions so they match the scaled content
|
||||||
|
|
||||||
|
// this.style.width = `${shared.a4Width * scale}px`;
|
||||||
|
this.style.height = `${shared.a4Height * scale}px`;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -59,31 +59,33 @@ export const demoLetter: tsclass.business.ILetter = {
|
|||||||
deliveryDate: new Date().getTime(),
|
deliveryDate: new Date().getTime(),
|
||||||
periodOfPerformance: null,
|
periodOfPerformance: null,
|
||||||
printResult: null,
|
printResult: null,
|
||||||
|
currency: 'EUR',
|
||||||
|
notes: [],
|
||||||
|
type: 'debitnote',
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
name: 'Item with 19% VAT',
|
name: 'Item with 19% VAT',
|
||||||
unitQuantity: 1,
|
unitQuantity: 2,
|
||||||
unitNetPrice: 100,
|
unitNetPrice: 100,
|
||||||
unitType: 'hours',
|
unitType: 'hours',
|
||||||
vatPercentage: 19,
|
vatPercentage: 19,
|
||||||
currency: 'EUR',
|
position: 0,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Item with 7% VAT',
|
name: 'Item with 7% VAT',
|
||||||
unitQuantity: 1,
|
unitQuantity: 4,
|
||||||
unitNetPrice: 100,
|
unitNetPrice: 100,
|
||||||
unitType: 'hours',
|
unitType: 'hours',
|
||||||
vatPercentage: 7,
|
vatPercentage: 7,
|
||||||
currency: 'EUR',
|
position: 1,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Item with 7% VAT',
|
name: 'Item with 7% VAT',
|
||||||
unitQuantity: 1,
|
unitQuantity: 3,
|
||||||
unitNetPrice: 230,
|
unitNetPrice: 230,
|
||||||
unitType: 'hours',
|
unitType: 'hours',
|
||||||
vatPercentage: 7,
|
vatPercentage: 7,
|
||||||
currency: 'EUR',
|
position: 2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Item with 21% VAT',
|
name: 'Item with 21% VAT',
|
||||||
@ -91,7 +93,46 @@ export const demoLetter: tsclass.business.ILetter = {
|
|||||||
unitNetPrice: 230,
|
unitNetPrice: 230,
|
||||||
unitType: 'hours',
|
unitType: 'hours',
|
||||||
vatPercentage: 21,
|
vatPercentage: 21,
|
||||||
currency: 'EUR',
|
position: 3,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 0% VAT',
|
||||||
|
unitQuantity: 6,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 0,
|
||||||
|
position: 4,
|
||||||
|
},{
|
||||||
|
name: 'Item with 19% VAT',
|
||||||
|
unitQuantity: 8,
|
||||||
|
unitNetPrice: 100,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 19,
|
||||||
|
position: 5,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 7% VAT',
|
||||||
|
unitQuantity: 9,
|
||||||
|
unitNetPrice: 100,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 7,
|
||||||
|
position: 6,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 7% VAT',
|
||||||
|
unitQuantity: 4,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 7,
|
||||||
|
position: 8,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 21% VAT',
|
||||||
|
unitQuantity: 3,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 21,
|
||||||
|
position: 9,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Item with 0% VAT',
|
name: 'Item with 0% VAT',
|
||||||
@ -99,7 +140,55 @@ export const demoLetter: tsclass.business.ILetter = {
|
|||||||
unitNetPrice: 230,
|
unitNetPrice: 230,
|
||||||
unitType: 'hours',
|
unitType: 'hours',
|
||||||
vatPercentage: 0,
|
vatPercentage: 0,
|
||||||
currency: 'EUR',
|
position: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 0% VAT',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 0,
|
||||||
|
position: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 0% VAT',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 0,
|
||||||
|
position: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 0% VAT',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 0,
|
||||||
|
position: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 0% VAT',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 0,
|
||||||
|
position: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 0% VAT',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 0,
|
||||||
|
position: 10,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: 'Item with 0% VAT',
|
||||||
|
unitQuantity: 1,
|
||||||
|
unitNetPrice: 230,
|
||||||
|
unitType: 'hours',
|
||||||
|
vatPercentage: 0,
|
||||||
|
position: 10,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}
|
}
|
||||||
|
6
ts_web/elements/viewer.demo.ts
Normal file
6
ts_web/elements/viewer.demo.ts
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
import { html } from '@design.estate/dees-element';
|
||||||
|
import * as shared from './shared/index.js';
|
||||||
|
|
||||||
|
export const demoFunc = () => html`
|
||||||
|
<dedocument-viewer .letterData=${shared.demoLetter}></dedocument-viewer>
|
||||||
|
`;
|
83
ts_web/elements/viewer.ts
Normal file
83
ts_web/elements/viewer.ts
Normal file
@ -0,0 +1,83 @@
|
|||||||
|
import * as plugins from '../plugins.js';
|
||||||
|
|
||||||
|
import { DeesElement, css, cssManager, customElement, html } from '@design.estate/dees-element';
|
||||||
|
import { demoFunc } from './viewer.demo.js';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
interface HTMLElementTagNameMap {
|
||||||
|
'dedocument-viewer': DeDocumentViewer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@customElement('dedocument-viewer')
|
||||||
|
export class DeDocumentViewer extends DeesElement {
|
||||||
|
// DEMO
|
||||||
|
public static demo = demoFunc;
|
||||||
|
|
||||||
|
// INSTANCE
|
||||||
|
public letterData: plugins.tsclass.business.ILetter = null;
|
||||||
|
|
||||||
|
public static styles = [
|
||||||
|
cssManager.defaultStyles,
|
||||||
|
css`
|
||||||
|
.maincontainer {
|
||||||
|
position: relative;
|
||||||
|
height: 100%;
|
||||||
|
width: 100%;
|
||||||
|
background: ${cssManager.bdTheme('#eeeeeb', '#111')};
|
||||||
|
}
|
||||||
|
.controls {
|
||||||
|
top: 0px;
|
||||||
|
right: 0px;
|
||||||
|
left: 0px;
|
||||||
|
position: absolute;
|
||||||
|
height: 32px;
|
||||||
|
width: 100%;
|
||||||
|
background: ${cssManager.bdTheme('#eeeeeb', '#111111ee')};
|
||||||
|
box-shadow: 0px 2px 8px 0px #000000;
|
||||||
|
}
|
||||||
|
.controlsShadow {
|
||||||
|
position: absolute;
|
||||||
|
top: 32px;
|
||||||
|
right: 0px;
|
||||||
|
left: 0px;
|
||||||
|
height: 16px;
|
||||||
|
width: 100%;
|
||||||
|
position: absolute;
|
||||||
|
background: linear-gradient(to bottom, #111111cc 0%, #11111100 100%);
|
||||||
|
}
|
||||||
|
|
||||||
|
.viewport {
|
||||||
|
position: absolute;
|
||||||
|
padding: 16px;
|
||||||
|
padding-top: 48px;
|
||||||
|
padding-bottom: 0px;
|
||||||
|
top: 0px;
|
||||||
|
left: 0px;
|
||||||
|
right: 0px;
|
||||||
|
bottom: 0px;
|
||||||
|
overflow-y: scroll;
|
||||||
|
overscroll-behavior: contain;
|
||||||
|
}
|
||||||
|
`,
|
||||||
|
];
|
||||||
|
|
||||||
|
public render = () => {
|
||||||
|
return html`
|
||||||
|
<div class="maincontainer">
|
||||||
|
<div class="viewport">
|
||||||
|
${this.letterData
|
||||||
|
? html` <dedocument-dedocument .letterData=${this.letterData}></dedocument-dedocument> `
|
||||||
|
: html``}
|
||||||
|
</div>
|
||||||
|
<div class="controls"></div>
|
||||||
|
</div>
|
||||||
|
`;
|
||||||
|
};
|
||||||
|
|
||||||
|
public updated = (changedProperties: Map<string | number | symbol, unknown>) => {
|
||||||
|
super.updated(changedProperties);
|
||||||
|
if (changedProperties.has('letterData')) {
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user