-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.vue
More file actions
628 lines (596 loc) · 15.4 KB
/
App.vue
File metadata and controls
628 lines (596 loc) · 15.4 KB
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
<script setup lang="ts">
import { ref } from "vue";
import { DynamicForm, JSONSchema } from "@quickflo/quickforms-vue";
import { createQuasarRegistry, QuasarFormOptions } from "../src/index";
import Showcase from "./Showcase.vue";
const showShowcase = ref(true);
const registry = createQuasarRegistry();
// Global Quasar defaults applied to all components
const formOptions: QuasarFormOptions = {
registry,
validateOnMount: false,
componentDefaults: {
global: {
outlined: true, // Apply outlined style to ALL Quasar components
dense: false, // Apply dense mode to ALL components
},
input: {
// Add clearable button to all inputs
clearable: false,
},
select: {
clearable: true,
},
checkbox: {
color: "green",
},
},
// QuickForms convenience features
quickformsDefaults: {
input: {
iconColor: "grey-7",
iconSize: "sm",
},
array: {
// Global defaults for all arrays (can be overridden per-field)
addButtonPosition: "bottom-left",
addButton: {
// Full QBtn props supported!
color: "primary",
outline: true,
},
removeButton: {
color: "negative",
},
},
},
};
const formData = ref({});
const schema: JSONSchema = {
type: "object",
title: "Comprehensive Form Demo",
description: "Demonstrating all QuickForms Quasar features",
properties: {
name: {
type: "string",
title: "Full Name",
description: "Enter your full name",
minLength: 2,
// dense and outlined come from global defaults
},
email: {
type: "string",
format: "email",
title: "Email Address",
"x-quasar-props": {
outlined: true,
color: "primary",
},
},
age: {
type: "number",
title: "Age",
minimum: 0,
maximum: 120,
"x-quasar-props": {
dense: false,
outlined: true,
suffix: "years",
},
},
bio: {
type: "string",
title: "Biography",
format: "textarea",
description: "Tell us about yourself",
maxLength: 500,
"x-quasar-props": {
rows: 4,
dense: false,
},
},
country: {
type: "string",
enum: ["USA", "Canada", "UK", "Germany", "France", "Japan"],
title: "Country",
"x-quasar-props": {
dense: false,
color: "secondary",
},
},
notifications: {
type: "boolean",
title: "Enable email notifications",
"x-quasar-props": {
color: "primary",
},
},
birthdate: {
type: "string",
format: "date",
title: "Birth Date",
"x-quasar-props": {
dense: false,
},
},
appointmentTime: {
type: "string",
format: "time",
title: "Appointment Time",
"x-quasar-props": {
dense: false,
},
},
eventDateTime: {
type: "string",
format: "date-time",
title: "Event Date & Time",
description: "ISO 8601 format (YYYY-MM-DDTHH:mm:ss)",
"x-quasar-props": {
dense: true,
// Customize format if needed:
// mask: 'YYYY-MM-DD hh:mm A', // 12-hour with AM/PM
// format24h: false, // Enable 12-hour mode
},
},
priority: {
type: "string",
enum: ["low", "medium", "high"],
title: "Priority Level",
"x-enum-labels": {
low: "Low Priority",
medium: "Medium Priority",
high: "High Priority",
},
"x-quasar-props": {
dense: false,
},
},
tags: {
type: "array",
title: "Tags",
description: "Simple array with custom add button",
items: {
type: "string",
title: "Tag",
minLength: 1,
},
"x-quickforms-quasar": {
addButtonPosition: "top-right",
addButton: {
label: "Add Tag",
icon: "add_circle",
color: "secondary",
},
removeButton: {
icon: "delete",
},
},
},
// === ARRAY OF OBJECTS ===
teamMembers: {
type: "array",
title: "Team Members",
description: "Array of objects with custom labels and positioning",
items: {
type: "object",
title: "Team Member",
properties: {
name: {
type: "string",
title: "Name",
minLength: 2,
},
role: {
type: "string",
title: "Role",
enum: ["Developer", "Designer", "Manager", "QA"],
},
email: {
type: "string",
format: "email",
title: "Email",
},
startDate: {
type: "string",
format: "date",
title: "Start Date",
},
},
required: ["name", "role"],
},
minItems: 0,
maxItems: 5,
"x-item-label": "{{name}} - {{role}}",
"x-quickforms-quasar": {
addButtonPosition: "bottom-right",
addButton: {
label: "Add Team Member",
icon: "person_add",
color: "positive",
// Can use ANY QBtn prop: size, fab, push, unelevated, etc.
},
removeButton: {
icon: "person_remove",
color: "negative",
},
},
},
// === ARRAY WITH DIFFERENT BUTTON POSITIONS ===
todos: {
type: "array",
title: "Todo List (Add button: bottom-left)",
items: {
type: "object",
properties: {
task: {
type: "string",
title: "Task",
},
priority: {
type: "string",
enum: ["low", "medium", "high"],
title: "Priority",
},
completed: {
type: "boolean",
title: "Completed",
},
},
},
"x-item-label": "{{task}}",
"x-quickforms-quasar": {
addButtonPosition: "bottom-left",
addButton: {
label: "Add Todo",
},
},
},
// === ARRAY WITH TOP-LEFT BUTTON ===
notes: {
type: "array",
title: "Notes (Add button: top-left)",
description: "Demonstrates top-left button positioning",
items: {
type: "string",
title: "Note",
},
"x-quickforms-quasar": {
addButtonPosition: "top-left",
addButton: {
label: "New Note",
icon: "note_add",
},
},
},
// === CONST FIELD (HIDDEN) ===
credentialType: {
const: "gcp_service_account",
title: "Credential Type",
description: "This field is automatically hidden and set!",
// User never sees or interacts with this
},
// === ENUM WITH AUTOCOMPLETE ===
framework: {
type: "string",
title: "Preferred Framework",
description: "Many options - autocomplete automatically enabled",
enum: [
"Vue.js",
"React",
"Angular",
"Svelte",
"SolidJS",
"Qwik",
"Alpine.js",
"Lit",
"Preact",
"Ember.js",
],
"x-enum-labels": {
"Vue.js": "🟢 Vue.js - Progressive Framework",
React: "⚛️ React - UI Library",
Angular: "🔴 Angular - Full Framework",
Svelte: "🧡 Svelte - Compiler",
SolidJS: "🔵 SolidJS - Fine-Grained Reactivity",
Qwik: "⚡ Qwik - Resumable",
"Alpine.js": "🏔️ Alpine.js - Minimal",
Lit: "🔥 Lit - Web Components",
Preact: "💜 Preact - Lightweight React",
"Ember.js": "🐹 Ember.js - Convention over Config",
},
},
// === PASSWORD FIELD WITH ICON ===
password: {
type: "string",
format: "password",
title: "Password",
description: "Password field with show/hide toggle and prepend icon",
minLength: 8,
"x-quasar-props": {
dense: false,
},
"x-quickforms-quasar": {
prependIcon: "lock",
iconColor: "grey-7",
},
},
// === TEXT FIELD WITH ICONS ===
username: {
type: "string",
title: "Username",
description: "Input field with prepend icon",
minLength: 3,
"x-quickforms-quasar": {
prependIcon: "person",
iconColor: "primary",
},
},
// === SEARCH FIELD WITH APPEND ICON ===
search: {
type: "string",
title: "Search",
description: "Input with append icon",
"x-quickforms-quasar": {
appendIcon: "search",
iconColor: "grey-6",
iconSize: "md",
},
},
// === JSON EDITOR (AUTO-DETECTED) ===
customConfig: {
type: "object",
title: "Custom Configuration",
description: "Freeform JSON object (auto-detected via additionalProperties)",
additionalProperties: {},
"x-rows": 8,
},
// === JSON EDITOR (EXPLICIT WITH CUSTOMIZATION) ===
metadata: {
type: "object",
title: "Metadata",
description: "Explicit JSON editor via x-render extension with custom props",
"x-render": "jsoneditor",
"x-rows": 6,
"x-quasar-props": {
dense: false,
color: "secondary",
},
"x-quickforms-quasar": {
prependIcon: "settings",
iconColor: "primary",
},
},
// === KEY-VALUE EDITOR (RECORD TYPE) ===
additionalParams: {
type: "object",
title: "Additional Parameters",
description: "Dynamic key-value pairs (Record<string, string>)",
additionalProperties: {
type: "string",
},
},
// === KEY-VALUE EDITOR (OAUTH EXAMPLE) ===
oauthHeaders: {
type: "object",
title: "Custom OAuth Headers",
description: "Add custom headers for OAuth requests",
additionalProperties: {
type: "string",
},
},
// === URL FIELD ===
website: {
type: "string",
format: "url",
title: "Website",
description: "URL validation",
"x-quasar-props": {
dense: false,
},
},
// === NUMBER WITH PREFIX/SUFFIX ===
salary: {
type: "number",
title: "Annual Salary",
minimum: 0,
maximum: 1000000,
"x-quasar-props": {
dense: false,
prefix: "$",
suffix: "USD",
},
},
// === TEXTAREA ===
comments: {
type: "string",
format: "textarea",
title: "Additional Comments",
maxLength: 500,
"x-quasar-props": {
dense: false,
rows: 3,
counter: true,
},
},
// === MULTI-SELECT (Array with enum) ===
skills: {
type: "array",
title: "Skills",
description: "Select multiple skills - autocomplete enabled with chips",
items: {
enum: [
"JavaScript",
"TypeScript",
"Vue.js",
"React",
"Node.js",
"Python",
"Go",
"Rust",
"Docker",
"Kubernetes",
],
"x-enum-labels": { JavaScript: "JS" },
},
uniqueItems: true,
minItems: 1,
maxItems: 5,
},
// === NESTED OBJECT ===
address: {
type: "object",
title: "Address Information",
description: "Nested object fields",
properties: {
street: {
type: "string",
title: "Street Address",
"x-quasar-props": {
dense: false,
},
},
city: {
type: "string",
title: "City",
"x-quasar-props": {
dense: false,
},
},
zip: {
type: "string",
title: "ZIP Code",
pattern: "^[0-9]{5}$",
"x-quasar-props": {
dense: false,
mask: "#####",
},
},
},
},
// === ONEOF (CONDITIONAL) ===
paymentMethod: {
type: "object",
title: "Payment Method",
oneOf: [
{
title: "Credit Card",
properties: {
type: { const: "credit_card" },
cardNumber: {
type: "string",
title: "Card Number",
pattern: "^[0-9]{16}$",
},
cvv: {
type: "string",
title: "CVV",
pattern: "^[0-9]{3}$",
},
},
required: ["cardNumber", "cvv"],
},
{
title: "Bank Transfer",
properties: {
type: { const: "bank_transfer" },
accountNumber: {
type: "string",
title: "Account Number",
},
routingNumber: {
type: "string",
title: "Routing Number",
},
},
required: ["accountNumber", "routingNumber"],
},
{
title: "PayPal",
properties: {
type: { const: "paypal" },
email: {
type: "string",
format: "email",
title: "PayPal Email",
},
},
required: ["email"],
},
],
},
},
required: ["name", "email"],
};
const handleSubmit = () => {
console.log("Form Data:", formData.value);
};
</script>
<template>
<Showcase v-if="showShowcase" @back="showShowcase = false" />
<q-layout v-else view="hHh lpR fFf">
<q-header elevated class="bg-primary text-white">
<q-toolbar>
<q-toolbar-title> QuickForms Quasar Demo </q-toolbar-title>
<q-btn flat label="View Showcase" @click="showShowcase = true" icon="visibility" />
</q-toolbar>
</q-header>
<q-page-container>
<q-page class="q-pa-md">
<div class="row justify-center">
<div class="col-12 col-md-8 col-lg-6">
<q-card>
<q-card-section>
<div class="text-h5">QuickForms Feature Showcase</div>
<div class="text-subtitle2 text-grey q-mb-sm">
Comprehensive examples of all QuickForms Quasar features
</div>
<q-banner dense class="bg-blue-1 text-blue-9" rounded>
<template #avatar>
<q-icon name="info" color="blue" />
</template>
<div class="text-caption">
<strong>Features shown:</strong> Icon customization
(prepend/append), array button positioning (top/bottom,
left/right), arrays of objects, custom item labels, password
show/hide toggle, const fields (hidden), autocomplete,
nested objects, oneOf (conditional), date/time pickers, and
more!
</div>
</q-banner>
</q-card-section>
<q-separator />
<q-card-section>
<DynamicForm
v-model="formData"
class="q-pa-md q-gutter-md"
:schema="schema"
:options="formOptions"
/>
</q-card-section>
<q-separator />
</q-card>
<q-card class="q-mt-md">
<q-card-section>
<div class="text-h6">Form Data (JSON)</div>
</q-card-section>
<q-card-section>
<pre class="text-caption">{{
JSON.stringify(formData, null, 2)
}}</pre>
</q-card-section>
</q-card>
</div>
</div>
</q-page>
</q-page-container>
</q-layout>
</template>
<style scoped>
pre {
background-color: #f5f5f5;
padding: 1rem;
border-radius: 4px;
overflow-x: auto;
}
</style>