-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathusing-other-library.html
211 lines (189 loc) · 8.71 KB
/
using-other-library.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>FormValidation example - Adding dynamic field</title>
<meta charset="utf-8" />
<meta content="width=device-width,initial-scale=1" name="viewport" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pikaday/css/pikaday.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css"
/>
<link rel="stylesheet" href="https://unpkg.com/tachyons@4.10.0/css/tachyons.min.css" />
<!-- Replace with your path -->
<link rel="stylesheet" href="/vendors/@form-validation/umd/styles/index.min.css" />
</head>
<body>
<form id="demoForm" method="post">
<div class="cf mb2">
<div class="fl w-100">
<div class="fl w-10 pa2">Task(s)</div>
<div class="fl w-40 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
name="task[0].title"
placeholder="Title"
/>
</div>
<div class="fl w-30 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
name="task[0].dueDate"
placeholder="Due date"
/>
</div>
<div class="fl w-10 ph2">
<button type="button" class="ba b--black-20 bg-green white ph3 pv2 br2" id="addButton">
+
</button>
</div>
</div>
</div>
<!-- Template -->
<div class="cf mb2" id="template" style="display: none">
<div class="fl w-100">
<div class="fl w-10 pa2"></div>
<div class="fl w-40 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
data-name="task.title"
placeholder="Title"
/>
</div>
<div class="fl w-30 mr2">
<input
type="text"
class="input-reset ba b--black-20 pa2 mb2 db w-100"
data-name="task.dueDate"
placeholder="Due date"
/>
</div>
<div class="fl w-10 ph2">
<button type="button" class="ba b--black-20 bg-green white ph3 pv2 br2 js-remove-button">
-
</button>
</div>
</div>
</div>
<div class="cf mb2">
<div class="fl w-100">
<div class="fl w-10 pa2"></div>
<div class="fl w-50">
<button type="submit" class="ba b--black-20 bg-blue white ph3 pv2 br2">Submit</button>
</div>
</div>
</div>
</form>
<script src="https://cdn.jsdelivr.net/npm/pikaday/pikaday.js"></script>
<!-- Replace with your path -->
<script src="/vendors/@form-validation/umd/bundle/popular.min.js"></script>
<script src="/vendors/@form-validation/umd/plugin-tachyons/index.min.js"></script>
<script>
document.addEventListener('DOMContentLoaded', function (e) {
const titleValidators = {
validators: {
notEmpty: {
message: 'The task is required',
},
},
};
const dueDateValidators = {
validators: {
notEmpty: {
message: 'The due date is required',
},
date: {
format: 'YYYY/MM/DD',
min: new Date(),
message: 'The due date is not valid',
},
},
};
let rowIndex = 0;
const demoForm = document.getElementById('demoForm');
const attachPickAdayPicker = function (fieldName) {
new Pikaday({
field: demoForm.querySelector('[name="' + fieldName + '"]'),
format: 'YYYY/MM/DD',
toString: function (date, format) {
const day = date.getDate();
const month = date.getMonth() + 1;
const year = date.getFullYear();
return year + '/' + month + '/' + day;
},
onSelect: function () {
// Revalidate the date field
if (fv) {
fv.revalidateField(fieldName);
}
},
});
};
const fv = FormValidation.formValidation(demoForm, {
fields: {
'task[0].title': titleValidators,
'task[0].dueDate': dueDateValidators,
},
plugins: {
submitButton: new FormValidation.plugins.SubmitButton(),
trigger: new FormValidation.plugins.Trigger(),
tachyons: new FormValidation.plugins.Tachyons(),
icon: new FormValidation.plugins.Icon({
valid: 'fa fa-check',
invalid: 'fa fa-times',
validating: 'fa fa-refresh',
}),
},
}).on('core.field.added', function (e) {
if (e.field === 'task[' + rowIndex + '].dueDate') {
// The added field is due date
attachPickAdayPicker(e.field);
}
});
// Attach pickaday to the first existing due date
attachPickAdayPicker('task[0].dueDate');
const removeRow = function (rowIndex) {
const row = demoForm.querySelector('[data-row-index="' + rowIndex + '"]');
// Remove field
fv.removeField('task[' + rowIndex + '].title').removeField('task[' + rowIndex + '].dueDate');
// Remove row
row.parentNode.removeChild(row);
};
const template = document.getElementById('template');
document.getElementById('addButton').addEventListener('click', function () {
rowIndex++;
const clone = template.cloneNode(true);
clone.removeAttribute('id');
// Show the row
clone.style.display = 'block';
clone.setAttribute('data-row-index', rowIndex);
// Insert before the template
template.before(clone);
clone
.querySelector('[data-name="task.title"]')
.setAttribute('name', 'task[' + rowIndex + '].title');
clone
.querySelector('[data-name="task.dueDate"]')
.setAttribute('name', 'task[' + rowIndex + '].dueDate');
// Add new fields
// Note that we also pass the validator rules for new field as the third parameter
fv.addField('task[' + rowIndex + '].title', titleValidators).addField(
'task[' + rowIndex + '].dueDate',
dueDateValidators
);
// Handle the click event of removeButton
const removeBtn = clone.querySelector('.js-remove-button');
removeBtn.setAttribute('data-row-index', rowIndex);
removeBtn.addEventListener('click', function (e) {
// Get the row index
const index = e.target.getAttribute('data-row-index');
removeRow(index);
});
});
});
</script>
</body>
</html>