@projectcaluma/ember-form 14.6.0 → 14.7.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -55,12 +55,8 @@
|
|
|
55
55
|
<p class="uk-text-meta uk-margin-small">
|
|
56
56
|
{{t "caluma.form.error.details"}}
|
|
57
57
|
</p>
|
|
58
|
-
<pre
|
|
59
|
-
|
|
60
|
-
>
|
|
61
|
-
{{~format-graphql-error
|
|
62
|
-
this.save.last.error
|
|
63
|
-
~}}
|
|
58
|
+
<pre class="uk-margin-remove">
|
|
59
|
+
{{~format-graphql-error this.save.last.error~}}
|
|
64
60
|
</pre>
|
|
65
61
|
</div>
|
|
66
62
|
{{/if}}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{{#if @validateOnEnter}}
|
|
2
2
|
<div {{in-viewport onEnter=this.validate}}>
|
|
3
|
-
{{yield this.isValid this.validate}}
|
|
3
|
+
{{yield this.isValid this.validate this.isValidating}}
|
|
4
4
|
</div>
|
|
5
5
|
{{else}}
|
|
6
|
-
{{yield this.isValid this.validate}}
|
|
6
|
+
{{yield this.isValid this.validate this.isValidating}}
|
|
7
7
|
{{/if}}
|
|
@@ -39,6 +39,10 @@ export default class DocumentValidity extends Component {
|
|
|
39
39
|
.every((f) => f.isValid);
|
|
40
40
|
}
|
|
41
41
|
|
|
42
|
+
get isValidating() {
|
|
43
|
+
return this._validate.isRunning;
|
|
44
|
+
}
|
|
45
|
+
|
|
42
46
|
@restartableTask
|
|
43
47
|
*_validate() {
|
|
44
48
|
const saveTasks = this.args.document.fields
|
|
@@ -52,9 +56,15 @@ export default class DocumentValidity extends Component {
|
|
|
52
56
|
// itself are finished
|
|
53
57
|
yield Promise.all(saveTasks);
|
|
54
58
|
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
59
|
+
yield Promise.all(
|
|
60
|
+
this.args.document.fields.map(async (field) => {
|
|
61
|
+
await field.validate.linked().perform();
|
|
62
|
+
|
|
63
|
+
if (field.question.hasFormatValidators) {
|
|
64
|
+
await field.save.linked().perform();
|
|
65
|
+
}
|
|
66
|
+
}),
|
|
67
|
+
);
|
|
58
68
|
|
|
59
69
|
if (this.isValid) {
|
|
60
70
|
this.args.onValid?.();
|
|
@@ -15,12 +15,7 @@ fragment SimpleQuestion on Question {
|
|
|
15
15
|
}
|
|
16
16
|
placeholder
|
|
17
17
|
formatValidators {
|
|
18
|
-
|
|
19
|
-
node {
|
|
20
|
-
slug
|
|
21
|
-
regex
|
|
22
|
-
}
|
|
23
|
-
}
|
|
18
|
+
totalCount
|
|
24
19
|
}
|
|
25
20
|
hintText
|
|
26
21
|
}
|
|
@@ -33,12 +28,7 @@ fragment SimpleQuestion on Question {
|
|
|
33
28
|
}
|
|
34
29
|
placeholder
|
|
35
30
|
formatValidators {
|
|
36
|
-
|
|
37
|
-
node {
|
|
38
|
-
slug
|
|
39
|
-
regex
|
|
40
|
-
}
|
|
41
|
-
}
|
|
31
|
+
totalCount
|
|
42
32
|
}
|
|
43
33
|
hintText
|
|
44
34
|
}
|
|
@@ -50,6 +40,9 @@ fragment SimpleQuestion on Question {
|
|
|
50
40
|
value
|
|
51
41
|
}
|
|
52
42
|
placeholder
|
|
43
|
+
formatValidators {
|
|
44
|
+
totalCount
|
|
45
|
+
}
|
|
53
46
|
hintText
|
|
54
47
|
}
|
|
55
48
|
... on FloatQuestion {
|
|
@@ -61,6 +54,9 @@ fragment SimpleQuestion on Question {
|
|
|
61
54
|
value
|
|
62
55
|
}
|
|
63
56
|
placeholder
|
|
57
|
+
formatValidators {
|
|
58
|
+
totalCount
|
|
59
|
+
}
|
|
64
60
|
hintText
|
|
65
61
|
}
|
|
66
62
|
... on ChoiceQuestion {
|
|
@@ -79,6 +75,9 @@ fragment SimpleQuestion on Question {
|
|
|
79
75
|
id
|
|
80
76
|
value
|
|
81
77
|
}
|
|
78
|
+
formatValidators {
|
|
79
|
+
totalCount
|
|
80
|
+
}
|
|
82
81
|
hintText
|
|
83
82
|
}
|
|
84
83
|
... on MultipleChoiceQuestion {
|
|
@@ -97,12 +96,21 @@ fragment SimpleQuestion on Question {
|
|
|
97
96
|
id
|
|
98
97
|
value
|
|
99
98
|
}
|
|
99
|
+
formatValidators {
|
|
100
|
+
totalCount
|
|
101
|
+
}
|
|
100
102
|
hintText
|
|
101
103
|
}
|
|
102
104
|
... on DynamicChoiceQuestion {
|
|
105
|
+
formatValidators {
|
|
106
|
+
totalCount
|
|
107
|
+
}
|
|
103
108
|
hintText
|
|
104
109
|
}
|
|
105
110
|
... on DynamicMultipleChoiceQuestion {
|
|
111
|
+
formatValidators {
|
|
112
|
+
totalCount
|
|
113
|
+
}
|
|
106
114
|
hintText
|
|
107
115
|
}
|
|
108
116
|
... on DateQuestion {
|
|
@@ -110,6 +118,9 @@ fragment SimpleQuestion on Question {
|
|
|
110
118
|
id
|
|
111
119
|
value
|
|
112
120
|
}
|
|
121
|
+
formatValidators {
|
|
122
|
+
totalCount
|
|
123
|
+
}
|
|
113
124
|
hintText
|
|
114
125
|
}
|
|
115
126
|
... on StaticQuestion {
|
|
@@ -120,6 +131,9 @@ fragment SimpleQuestion on Question {
|
|
|
120
131
|
hintText
|
|
121
132
|
}
|
|
122
133
|
... on FilesQuestion {
|
|
134
|
+
formatValidators {
|
|
135
|
+
totalCount
|
|
136
|
+
}
|
|
123
137
|
hintText
|
|
124
138
|
}
|
|
125
139
|
... on ActionButtonQuestion {
|
package/addon/lib/question.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@projectcaluma/ember-form",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.7.0",
|
|
4
4
|
"description": "Ember addon for rendering Caluma forms.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -39,13 +39,13 @@
|
|
|
39
39
|
"luxon": "^3.5.0",
|
|
40
40
|
"reactiveweb": "^1.3.0",
|
|
41
41
|
"tracked-toolbox": "^2.0.0",
|
|
42
|
-
"@projectcaluma/ember-core": "^14.
|
|
42
|
+
"@projectcaluma/ember-core": "^14.7.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@ember/optional-features": "2.
|
|
45
|
+
"@ember/optional-features": "2.3.0",
|
|
46
46
|
"@ember/test-helpers": "4.0.4",
|
|
47
47
|
"@embroider/test-setup": "4.0.0",
|
|
48
|
-
"@faker-js/faker": "10.
|
|
48
|
+
"@faker-js/faker": "10.2.0",
|
|
49
49
|
"@glimmer/component": "1.1.2",
|
|
50
50
|
"@glimmer/tracking": "1.1.2",
|
|
51
51
|
"broccoli-asset-rev": "3.0.0",
|
|
@@ -61,23 +61,25 @@
|
|
|
61
61
|
"ember-load-initializers": "3.0.1",
|
|
62
62
|
"ember-qunit": "9.0.4",
|
|
63
63
|
"ember-resolver": "13.1.1",
|
|
64
|
+
"ember-sinon-qunit": "7.5.0",
|
|
64
65
|
"ember-source": "6.1.0",
|
|
65
66
|
"ember-source-channel-url": "3.0.0",
|
|
66
67
|
"ember-try": "4.0.0",
|
|
67
68
|
"loader.js": "4.7.0",
|
|
68
69
|
"miragejs": "0.1.48",
|
|
69
|
-
"qunit": "2.
|
|
70
|
+
"qunit": "2.25.0",
|
|
70
71
|
"qunit-dom": "3.5.0",
|
|
71
|
-
"sass": "1.
|
|
72
|
-
"
|
|
72
|
+
"sass": "1.97.3",
|
|
73
|
+
"sinon": "21.0.1",
|
|
74
|
+
"uikit": "3.25.6",
|
|
73
75
|
"uuid": "13.0.0",
|
|
74
|
-
"webpack": "5.
|
|
75
|
-
"@projectcaluma/ember-
|
|
76
|
-
"@projectcaluma/ember-
|
|
76
|
+
"webpack": "5.104.1",
|
|
77
|
+
"@projectcaluma/ember-testing": "14.7.0",
|
|
78
|
+
"@projectcaluma/ember-workflow": "14.7.0"
|
|
77
79
|
},
|
|
78
80
|
"peerDependencies": {
|
|
79
81
|
"ember-source": ">= 4.0.0",
|
|
80
|
-
"@projectcaluma/ember-workflow": "^14.
|
|
82
|
+
"@projectcaluma/ember-workflow": "^14.7.0"
|
|
81
83
|
},
|
|
82
84
|
"dependenciesMeta": {
|
|
83
85
|
"@projectcaluma/ember-core": {
|