-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindividualForm.js
294 lines (227 loc) · 6.96 KB
/
individualForm.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
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
module.exports = `
# This turtle file defined the forms used in the contacts management
#
# Individuals and orgs are in one file as they share some
# forms (address, etc.) and interact with each other (roles)
# Now hand-edited, was originally made using form editor.
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#>.
@prefix dct: <http://purl.org/dc/terms/>.
@prefix owl: <http://www.w3.org/2002/07/owl#>.
@prefix ui: <http://www.w3.org/ns/ui#>.
@prefix schema: <http://schema.org/>.
@prefix solid: <http://www.w3.org/ns/solid/terms#>.
@prefix vcard: <http://www.w3.org/2006/vcard/ns#>.
@prefix pp: <http://paymentpointers.org/ns#>.
@prefix : <#>.
# Ontology additions or interpretations needed for the form to work well
# The ontology file doesn't make them disjoint. This makes the selector be a choice.
vcard:TelephoneType owl:disjointUnionOf ( vcard:Cell vcard:Home vcard:Work) .
vcard:Type owl:disjointUnionOf (vcard:Home vcard:Work) . # for email
# Better field labels
vcard:Cell ui:label "mobile"@en . # app will imake nitial caps if nec
vcard:hasAddress ui:label "address"@en .
vcard:bday ui:label "born"@en.
vcard:hasEmail ui:label "email"@en .
vcard:hasTelephone ui:label "phone"@en .
vcard:note ui:label "notes"@en .
# Ontology data to drive the classifier
solid:InterestingOrganization owl:disjointUnionOf (
# Airline - a Corpration
# Consortium - a Corporation or a NGO
schema:Corporation
schema:EducationalOrganization
# FundingScheme - eh?
schema:GovernmentOrganization
# LibrarySystem
# LocalBusiness - Corporation
schema:MedicalOrganization
schema:NGO
# NewsMediaOrganization - a Corporation or a NGO
schema:MusicGroup # e.g. a band
schema:Project # like Solid
schema:SportsOrganization # a Team
) .
# The forms themselves
vcard:Individual
ui:creationForm :form1 .
# The addressComment, etc., fields with a comment before each type of field
# were originally partly because the labels on the fields were clumsy like "hasAddress".
# This is fixed by adding the ui:label to the properties above, so let's try
# removing the little micro-headings
# For org:
:orgDetailsForm a ui:Form ; dct:title "Contact details for an organozation";
ui:parts (
:OrgClassifier
:fullNameField
:addresses
:eMails
:telephones
:noteField ) .
# For individual:
:form1
dct:title "Contact Details for a person" ;
a ui:Form ;
ui:part
:fullNameField, :roleField, :orgNameField,
:paymentPointerField,
# :addressesComment,
:addresses,
# :emailComment,
:eMails,
# :telephoneComment,
:telephones,
# :noteComment,
:noteField ;
ui:parts (
:fullNameField :roleField :orgNameField
:paymentPointerField
# :addressesComment
:addresses
# :emailComment
:eMails
# :telephoneComment
:telephones :birthdayField
# :noteComment
:noteField ) .
:fullNameField
a ui:SingleLineTextField ;
ui:label "Name";
ui:maxLength "128" ;
ui:property vcard:fn ;
ui:size "40" .
:roleField
a ui:SingleLineTextField ;
ui:suppressEmptyUneditable true;
ui:maxLength "128" ;
ui:property vcard:role ;
ui:size "40" .
:orgNameField
a ui:SingleLineTextField ;
ui:suppressEmptyUneditable true;
ui:maxLength "128" ;
ui:property vcard:organization-name ;
ui:size "40" .
:paymentPointerField
a ui:SingleLineTextField ;
ui:maxLength "128" ;
ui:property pp:PaymentPointer ;
ui:size "40" .
:addressesComment
a ui:Comment ;
ui:suppressIfUneditable true;
ui:contents "Address" .
:addresses
dct:title "Address details" ;
a ui:Multiple ;
ui:part :oneAddress ;
ui:property vcard:hasAddress .
:oneAddress
a ui:Group ;
ui:parts ( :id1409437207443 :id1409437292400 :id1409437421996 :id1409437467649 :id1409437569420 :id1409437646712 ).
:id1409437207443
a ui:SingleLineTextField ;
ui:maxLength "128" ;
ui:property vcard:street-address ;
ui:size "40" .
:id1409437292400
a ui:SingleLineTextField ;
ui:maxLength "128" ;
ui:property vcard:locality ;
ui:size "40" .
:id1409437421996
a ui:SingleLineTextField ;
ui:maxLength "25" ;
ui:property vcard:postal-code ;
ui:size "25" .
:id1409437467649
a ui:SingleLineTextField ;
ui:maxLength "128" ;
ui:property vcard:region ;
ui:size "40" .
:id1409437569420
a ui:SingleLineTextField ;
ui:maxLength "128" ;
ui:property vcard:country-name ;
ui:size "40" .
:id1409437646712
a ui:Classifier ;
ui:from rdf:Class ;
ui:property rdf:type .
##############################
:emailComment
a ui:Comment ;
ui:suppressIfUneditable true;
ui:contents "Email" .
:eMails
a ui:Multiple ;
ui:part :oneEMail ;
ui:property vcard:hasEmail .
:oneEMail
a ui:Group ; # hint: side by side is good
ui:part :emailValue, :emailType ;
ui:parts ( :emailType :emailValue ).
:emailValue
a ui:EmailField ; ui:label "email";
ui:property vcard:value ;
ui:size "50" .
:emailType
a ui:Classifier ;
ui:canMintNew "0" ;
ui:category vcard:Type ;
ui:from vcard:Type ;
ui:property rdf:type .
##############################
:telephoneComment
a ui:Comment ;
ui:suppressIfUneditable true;
ui:contents "Phones" .
:telephones
a ui:Multiple ;
ui:part :onetelephone ;
ui:property vcard:hasTelephone .
:onetelephone
a ui:Group ;
ui:part :telephoneValue, :telephoneType ;
ui:parts ( :telephoneType :telephoneValue ).
:telephoneValue
a ui:PhoneField ;
ui:property vcard:value ;
ui:size "50" .
:telephoneType
a ui:Classifier ;
ui:canMintNew "0" ;
ui:category vcard:TelephoneType ;
ui:from vcard:Type ;
ui:property rdf:type .
##############################
:birthdayField
a ui:DateField;
ui:label "Born";
ui:suppressEmptyUneditable true;
ui:property vcard:bday .
##############################
:noteComment
a ui:Comment ;
ui:suppressIfUneditable true;
ui:contents "General Notes" .
:noteField
a ui:MultiLineTextField ;
ui:suppressEmptyUneditable true;
ui:property vcard:note .
############ organization forms
:OrganizationCreationForm a ui:Form; schema:name "Form for editing a role" ;
ui:parts ( :OrgClassifier :homePageURIField ) .
:OrgClassifier a ui:Classifier; ui:label "What sort of organization?"@en;
ui:category solid:InterestingOrganization .
:instituteNameField
a ui:SingleLineTextField ;
ui:label "Institute Name";
ui:maxLength "200" ;
ui:property schema:name ;
ui:size "80" .
:homePageURIField a ui:NamedNodeURIField;
ui:property schema:url . # @@ ??
:instituteTypeField a ui:Classifier;
ui:label "What sort of organization";
ui:category solid:InterestingOrganization .
`