Skip to content

Commit c2fc9ee

Browse files
committed
initial commit
0 parents  commit c2fc9ee

30 files changed

+14548
-0
lines changed

.github/workflows/playwright.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Playwright Tests
2+
on:
3+
push:
4+
branches: [ main, master ]
5+
pull_request:
6+
branches: [ main, master ]
7+
jobs:
8+
test:
9+
timeout-minutes: 60
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: lts/*
16+
- name: Install dependencies
17+
run: npm install -g pnpm && pnpm install
18+
- name: Install Playwright Browsers
19+
run: pnpm exec playwright install --with-deps
20+
- name: Run Playwright tests
21+
run: pnpm exec playwright test
22+
- uses: actions/upload-artifact@v4
23+
if: ${{ !cancelled() }}
24+
with:
25+
name: playwright-report
26+
path: playwright-report/
27+
retention-days: 30

.gitignore

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
node_modules/
2+
/test-results/
3+
/playwright-report/
4+
/blob-report/
5+
/playwright/.cache/

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 20.9.0

examples/angular/.editorconfig

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Editor configuration, see https://editorconfig.org
2+
root = true
3+
4+
[*]
5+
charset = utf-8
6+
indent_style = space
7+
indent_size = 2
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true
10+
11+
[*.ts]
12+
quote_type = single
13+
ij_typescript_use_double_quotes = false
14+
15+
[*.md]
16+
max_line_length = off
17+
trim_trailing_whitespace = false

examples/angular/.gitignore

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# See https://docs.github.com/get-started/getting-started-with-git/ignoring-files for more about ignoring files.
2+
3+
# Compiled output
4+
/dist
5+
/tmp
6+
/out-tsc
7+
/bazel-out
8+
9+
# Node
10+
/node_modules
11+
npm-debug.log
12+
yarn-error.log
13+
14+
# IDEs and editors
15+
.idea/
16+
.project
17+
.classpath
18+
.c9/
19+
*.launch
20+
.settings/
21+
*.sublime-workspace
22+
23+
# Visual Studio Code
24+
.vscode/*
25+
!.vscode/settings.json
26+
!.vscode/tasks.json
27+
!.vscode/launch.json
28+
!.vscode/extensions.json
29+
.history/*
30+
31+
# Miscellaneous
32+
/.angular/cache
33+
.sass-cache/
34+
/connect.lock
35+
/coverage
36+
/libpeerconnection.log
37+
testem.log
38+
/typings
39+
40+
# System files
41+
.DS_Store
42+
Thumbs.db

examples/angular/.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodejs 22.0.0

examples/angular/README.md

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# Nutrient Web SDK Angular Example
2+
3+
This example shows how Nutrient Web SDK can be integrated in an Angular project. This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 13.0.2., although some simplifications have been made to focus on integrating PSPDFKit. For more guided instructions, check out our [blog post](https://www.nutrient.io/blog/2021/how-to-build-an-angular-pdf-viewer/).
4+
5+
## Prerequisites
6+
7+
- [Node.js](https://nodejs.org)
8+
9+
## Support, Issues and License Questions
10+
11+
PSPDFKit offers support for customers with an active SDK license via [https://www.nutrient.io/support/request](https://www.nutrient.io/support/request)
12+
13+
Are you evaluating our SDK? That's great, we're happy to help out! To make sure this is fast, please use a work email and have someone from your company fill out our sales form: [https://www.nutrient.io/sales](https://www.nutrient.io/sales)
14+
15+
## Getting Started
16+
17+
Clone the repo:
18+
19+
```bash
20+
git clone https://github.com/PSPDFKit/pspdfkit-web-example-angular
21+
cd pspdfkit-web-example-angular
22+
```
23+
24+
Install the project dependencies:
25+
26+
```bash
27+
npm install
28+
```
29+
30+
## Running the Example
31+
32+
```bash
33+
npm start
34+
```
35+
36+
The example will now be running at `http://localhost:4200`
37+
38+
## Troubleshooting
39+
40+
If you encounter any issues running Nutrient Web SDK in an Angular application, please check our dedicated [Troubleshooting guide](https://www.nutrient.io/guides/web/current/troubleshooting/common-issues) to see if there is already a solution.

examples/angular/angular.json

+90
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
1+
{
2+
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
3+
"version": 1,
4+
"newProjectRoot": "projects",
5+
"projects": {
6+
"pspdfkit-web-example-angular": {
7+
"projectType": "application",
8+
"schematics": {},
9+
"root": "",
10+
"sourceRoot": "src",
11+
"prefix": "app",
12+
"architect": {
13+
"build": {
14+
"builder": "@angular-devkit/build-angular:application",
15+
"options": {
16+
"outputPath": "dist/pspdfkit-web-example-angular",
17+
"index": "src/index.html",
18+
"browser": "src/main.ts",
19+
"polyfills": ["zone.js"],
20+
"tsConfig": "tsconfig.app.json",
21+
"assets": [
22+
"src/favicon.ico",
23+
"src/assets",
24+
{
25+
"glob": "**/*",
26+
"input": "./node_modules/pspdfkit/dist/pspdfkit-lib/",
27+
"output": "./assets/pspdfkit-lib/"
28+
}
29+
],
30+
"styles": ["src/styles.css"],
31+
"scripts": []
32+
},
33+
"configurations": {
34+
"production": {
35+
"budgets": [
36+
{
37+
"type": "initial",
38+
"maximumWarning": "500kB",
39+
"maximumError": "10MB"
40+
},
41+
{
42+
"type": "anyComponentStyle",
43+
"maximumWarning": "2kB",
44+
"maximumError": "4kB"
45+
}
46+
],
47+
"outputHashing": "all"
48+
},
49+
"development": {
50+
"optimization": false,
51+
"extractLicenses": false,
52+
"sourceMap": true
53+
}
54+
},
55+
"defaultConfiguration": "production"
56+
},
57+
"serve": {
58+
"builder": "@angular-devkit/build-angular:dev-server",
59+
"configurations": {
60+
"production": {
61+
"buildTarget": "pspdfkit-web-example-angular:build:production"
62+
},
63+
"development": {
64+
"buildTarget": "pspdfkit-web-example-angular:build:development"
65+
}
66+
},
67+
"defaultConfiguration": "development"
68+
},
69+
"extract-i18n": {
70+
"builder": "@angular-devkit/build-angular:extract-i18n"
71+
},
72+
"test": {
73+
"builder": "@angular-devkit/build-angular:karma",
74+
"options": {
75+
"polyfills": ["zone.js", "zone.js/testing"],
76+
"tsConfig": "tsconfig.spec.json",
77+
"assets": [
78+
{
79+
"glob": "**/*",
80+
"input": "public"
81+
}
82+
],
83+
"styles": ["src/styles.css"],
84+
"scripts": []
85+
}
86+
}
87+
}
88+
}
89+
}
90+
}

0 commit comments

Comments
 (0)