-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathembed-pdf-template-builder.js
253 lines (225 loc) · 6.59 KB
/
embed-pdf-template-builder.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
// This script shows how to use Anvil's embedded PDF template builder feature.
//
// This script will:
//
// * Upload a new PDF to Anvil to create a PDF template (Cast object)
// * Generate an embeddable URL to the PDF template editor
// * Open the embedded experience in an iframe
//
// This script is runnable as is, all you need to do is supply your own API key
// in the ANVIL_API_KEY environment variable, and organization EID in the
// ANVIL_ORGANIZATION_EID env var. See the readme in this directory for steps to
// set up a .env file with these options.
//
// Once you have your environment variables set up, you will need to enable
// iframe embedding:
//
// 1. Enable embedding in your organization https://www.useanvil.com/docs/api/e-signatures/#enabling-iframe-embedding
// 2. Add http://localhost:8089 to the list of trusted domains
//
// To have it open the embedded experience in an iframe, start the static
// server in another terminal. From the root of this language directory, run:
//
// $ yarn serve:static
//
// OR
//
// $ npm run serve:static
//
// Then run this script!
//
// $ node examples/embed-pdf-template-builder.js
const fs = require('fs')
const path = require('path')
const Anvil = require('@anvilco/anvil')
const run = require('../lib/run')
const apiKey = process.env.ANVIL_API_KEY
const filePath = path.join(__dirname, '..', '..', 'static', 'sample-template-fillable.pdf')
const title = 'Test Upload'
const filename = 'Test Embedded Upload.pdf'
const mimetype = 'application/pdf'
const embedPageURL = 'http://localhost:8089/static/embedded-builder-iframe.html?url='
const anvilClient = new Anvil({
apiKey,
})
async function graphQLResponse (graphQLQuery) {
const { data, errors } = await graphQLQuery
if (errors) {
throw new Error(JSON.stringify(errors, null, 2))
}
return data
}
async function createCast (variables) {
const query = `
mutation CreateCast(
$title: String,
$file: Upload!,
$isTemplate: Boolean,
$detectFields: Boolean,
$allowedAliasIds: [String],
) {
createCast (
title: $title,
file: $file,
isTemplate: $isTemplate,
allowedAliasIds: $allowedAliasIds,
detectFields: $detectFields,
) {
eid
name
title
isTemplate
}
}
`
return graphQLResponse(
anvilClient.requestGraphQL({
query,
variables,
})
)
}
function generateEmbedURL (variables) {
const query = `
mutation GenerateEmbedURL(
$eid: String!,
$type: String!,
$validForSeconds: Int,
$metadata: JSON,
$options: JSON,
) {
generateEmbedURL(
eid: $eid
type: $type
validForSeconds: $validForSeconds
metadata: $metadata
options: $options
) {
url,
requestTokenEid
}
}
`
return graphQLResponse(
anvilClient.requestGraphQL({
query,
variables,
})
)
}
async function main () {
const fileBytes = fs.readFileSync(filePath)
const buffer = Buffer.from(fileBytes)
const file = Anvil.prepareGraphQLFile(buffer, {
filename, // Required with a buffer or stream
mimetype,
})
// Upload the PDF template
const createCastResponse = await createCast({
title,
file,
isTemplate: true,
})
const newPDFTemplate = createCastResponse.data.createCast
console.log(
'createCast response',
JSON.stringify(createCastResponse, null, 2)
)
// Generate an embed URL for the PDF Template
const generateResponse = await generateEmbedURL({
eid: newPDFTemplate.eid,
type: 'edit-pdf-template',
validForSeconds: 90 * 60, // 90 minutes
metadata: {
myUserId: '1234',
anythingElse: 'you want',
},
options: {
mode: 'preset-fields',
pageTitle: 'Title of the page',
title: 'Welcome',
description: 'Please drag fields onto the document',
selectionDescription:
'Select the field that best represents the box drawn.',
// Other possible copy changes
// finishButtonText: 'Custom text',
// selectionAddAnotherFieldText: 'Plz add another field',
// You can hide the title bar with showPageTitleBar. This removes the
// finish button so you can show your own finish button. You will need to
// submit the iframe with the `castEditSubmit` iframe event.
showPageTitleBar: false,
// Allow users to replace the underlying PDF
showReplaceDocumentAction: true,
// Show the field alignment tools for selected fields
showFieldAlignmentTools: true,
// Show the field styling tools for selected fields
showFieldStylingTools: true,
fields: [
// * `aliasId` can be anything you'd like
// * You will use the aliasId you choose to fill PDF data and assign signers to the field
// * https://www.useanvil.com/docs/api/fill-pdf/#field-ids
// * All types: https://www.useanvil.com/docs/api/fill-pdf/#all-field-types
{
name: 'Full name',
type: 'fullName',
aliasId: 'name',
required: true,
// optional fields
// alignment: 'center', // `left`, `center`, `right`
// fontSize: '12',
// fontWeight: 'boldItalic', // 'normal', `bold`, `boldItalic`, `italic`
// fontFamily: 'Futura', // Any google font, 'Helvetica', 'Times new roman', 'Courier'
// textColor: '#a00000',
},
{
name: 'Email',
type: 'email',
aliasId: 'email',
required: true,
},
{
name: 'Date of birth',
type: 'date',
aliasId: 'dob',
required: false,
// optional date fields:
format: 'MMMM Do YYYY', // see moment.js docs
},
{
name: 'Client signature',
type: 'signature',
aliasId: 'clientSignature',
required: false,
},
{
name: 'Client initials',
type: 'initial',
aliasId: 'clientInitials',
required: false,
},
{
name: 'Client signature date',
type: 'signatureDate',
aliasId: 'clientSignatureDate',
required: false,
},
],
},
})
const { url: embedURL } = generateResponse.data.generateEmbedURL
console.log(
'generateEmbedURL response',
JSON.stringify(generateResponse, null, 2)
)
// Pop open the embedded experience
//
// Please start the static server to make this work!
//
// $ yarn serve:static
//
// OR
//
// $ npm run serve:static
require('child_process').exec(`open ${embedPageURL}${embedURL}`)
}
run(main)