1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* Provides a tagging interface, storing links between tag DataObjects and a parent DataObject. |
5
|
|
|
* |
6
|
|
|
* @package forms |
7
|
|
|
* @subpackage fields |
8
|
|
|
*/ |
9
|
|
|
class TagField extends DropdownField |
|
|
|
|
10
|
|
|
{ |
11
|
|
|
/** |
12
|
|
|
* @var array |
13
|
|
|
*/ |
14
|
|
|
public static $allowed_actions = array( |
15
|
|
|
'suggest', |
16
|
|
|
); |
17
|
|
|
|
18
|
|
|
/** |
19
|
|
|
* @var bool |
20
|
|
|
*/ |
21
|
|
|
protected $shouldLazyLoad = false; |
22
|
|
|
|
23
|
|
|
/** |
24
|
|
|
* @var int |
25
|
|
|
*/ |
26
|
|
|
protected $lazyLoadItemLimit = 10; |
27
|
|
|
|
28
|
|
|
/** |
29
|
|
|
* @var bool |
30
|
|
|
*/ |
31
|
|
|
protected $canCreate = true; |
32
|
|
|
|
33
|
|
|
/** |
34
|
|
|
* @var string |
35
|
|
|
*/ |
36
|
|
|
protected $titleField = 'Title'; |
37
|
|
|
|
38
|
|
|
/** |
39
|
|
|
* @var bool |
40
|
|
|
*/ |
41
|
|
|
protected $isMultiple = true; |
42
|
|
|
|
43
|
|
|
/** |
44
|
|
|
* @param string $name |
45
|
|
|
* @param string $title |
46
|
|
|
* @param null|DataList $source |
47
|
|
|
* @param null|DataList $value |
48
|
|
|
*/ |
49
|
|
|
public function __construct($name, $title = '', $source = null, $value = null) |
50
|
|
|
{ |
51
|
|
|
parent::__construct($name, $title, $source, $value); |
|
|
|
|
52
|
|
|
} |
53
|
|
|
|
54
|
|
|
/** |
55
|
|
|
* @return bool |
56
|
|
|
*/ |
57
|
|
|
public function getShouldLazyLoad() |
58
|
|
|
{ |
59
|
|
|
return $this->shouldLazyLoad; |
60
|
|
|
} |
61
|
|
|
|
62
|
|
|
/** |
63
|
|
|
* @param bool $shouldLazyLoad |
64
|
|
|
* |
65
|
|
|
* @return static |
66
|
|
|
*/ |
67
|
|
|
public function setShouldLazyLoad($shouldLazyLoad) |
68
|
|
|
{ |
69
|
|
|
$this->shouldLazyLoad = $shouldLazyLoad; |
70
|
|
|
|
71
|
|
|
return $this; |
72
|
|
|
} |
73
|
|
|
|
74
|
|
|
/** |
75
|
|
|
* @return int |
76
|
|
|
*/ |
77
|
|
|
public function getLazyLoadItemLimit() |
78
|
|
|
{ |
79
|
|
|
return $this->lazyLoadItemLimit; |
80
|
|
|
} |
81
|
|
|
|
82
|
|
|
/** |
83
|
|
|
* @param int $lazyLoadItemLimit |
84
|
|
|
* |
85
|
|
|
* @return static |
86
|
|
|
*/ |
87
|
|
|
public function setLazyLoadItemLimit($lazyLoadItemLimit) |
88
|
|
|
{ |
89
|
|
|
$this->lazyLoadItemLimit = $lazyLoadItemLimit; |
90
|
|
|
|
91
|
|
|
return $this; |
92
|
|
|
} |
93
|
|
|
|
94
|
|
|
/** |
95
|
|
|
* @return bool |
96
|
|
|
*/ |
97
|
|
|
public function getIsMultiple() |
98
|
|
|
{ |
99
|
|
|
return $this->isMultiple; |
100
|
|
|
} |
101
|
|
|
|
102
|
|
|
/** |
103
|
|
|
* @param bool $isMultiple |
104
|
|
|
* |
105
|
|
|
* @return static |
106
|
|
|
*/ |
107
|
|
|
public function setIsMultiple($isMultiple) |
108
|
|
|
{ |
109
|
|
|
$this->isMultiple = $isMultiple; |
110
|
|
|
|
111
|
|
|
return $this; |
112
|
|
|
} |
113
|
|
|
|
114
|
|
|
/** |
115
|
|
|
* @return bool |
116
|
|
|
*/ |
117
|
|
|
public function getCanCreate() |
118
|
|
|
{ |
119
|
|
|
return $this->canCreate; |
120
|
|
|
} |
121
|
|
|
|
122
|
|
|
/** |
123
|
|
|
* @param bool $canCreate |
124
|
|
|
* |
125
|
|
|
* @return static |
126
|
|
|
*/ |
127
|
|
|
public function setCanCreate($canCreate) |
128
|
|
|
{ |
129
|
|
|
$this->canCreate = $canCreate; |
130
|
|
|
|
131
|
|
|
return $this; |
132
|
|
|
} |
133
|
|
|
|
134
|
|
|
/** |
135
|
|
|
* @return string |
136
|
|
|
*/ |
137
|
|
|
public function getTitleField() |
138
|
|
|
{ |
139
|
|
|
return $this->titleField; |
140
|
|
|
} |
141
|
|
|
|
142
|
|
|
/** |
143
|
|
|
* @param string $titleField |
144
|
|
|
* |
145
|
|
|
* @return $this |
146
|
|
|
*/ |
147
|
|
|
public function setTitleField($titleField) |
148
|
|
|
{ |
149
|
|
|
$this->titleField = $titleField; |
150
|
|
|
|
151
|
|
|
return $this; |
152
|
|
|
} |
153
|
|
|
|
154
|
|
|
/** |
155
|
|
|
* {@inheritdoc} |
156
|
|
|
*/ |
157
|
|
View Code Duplication |
public function Field($properties = array()) |
|
|
|
|
158
|
|
|
{ |
159
|
|
|
Requirements::css(TAG_FIELD_DIR . '/css/select2.min.css'); |
160
|
|
|
Requirements::css(TAG_FIELD_DIR . '/css/TagField.css'); |
161
|
|
|
|
162
|
|
|
Requirements::javascript(THIRDPARTY_DIR . '/jquery/jquery.js'); |
163
|
|
|
Requirements::javascript(THIRDPARTY_DIR . '/jquery-entwine/dist/jquery.entwine-dist.js'); |
164
|
|
|
Requirements::javascript(TAG_FIELD_DIR . '/js/select2.js'); |
165
|
|
|
Requirements::javascript(TAG_FIELD_DIR . '/js/TagField.js'); |
166
|
|
|
|
167
|
|
|
$this->addExtraClass('ss-tag-field'); |
168
|
|
|
|
169
|
|
|
if ($this->getIsMultiple()) { |
170
|
|
|
$this->setAttribute('multiple', 'multiple'); |
171
|
|
|
} |
172
|
|
|
|
173
|
|
|
if ($this->shouldLazyLoad) { |
174
|
|
|
$this->setAttribute('data-ss-tag-field-suggest-url', $this->getSuggestURL()); |
175
|
|
|
} else { |
176
|
|
|
$properties = array_merge($properties, array( |
177
|
|
|
'Options' => $this->getOptions() |
178
|
|
|
)); |
179
|
|
|
} |
180
|
|
|
|
181
|
|
|
return $this |
182
|
|
|
->customise($properties) |
183
|
|
|
->renderWith(array("templates/TagField")); |
184
|
|
|
} |
185
|
|
|
|
186
|
|
|
/** |
187
|
|
|
* @return string |
188
|
|
|
*/ |
189
|
|
|
protected function getSuggestURL() |
190
|
|
|
{ |
191
|
|
|
return Controller::join_links($this->Link(), 'suggest'); |
192
|
|
|
} |
193
|
|
|
|
194
|
|
|
/** |
195
|
|
|
* @return ArrayList |
196
|
|
|
*/ |
197
|
|
|
protected function getOptions() |
198
|
|
|
{ |
199
|
|
|
$options = ArrayList::create(); |
200
|
|
|
|
201
|
|
|
$source = $this->getSource(); |
202
|
|
|
|
203
|
|
|
if(!$source) { |
204
|
|
|
$source = new ArrayList(); |
205
|
|
|
} |
206
|
|
|
|
207
|
|
|
$dataClass = $source->dataClass(); |
208
|
|
|
|
209
|
|
|
$values = $this->Value(); |
210
|
|
|
|
211
|
|
|
if(!$values) { |
212
|
|
|
return $options; |
213
|
|
|
} |
214
|
|
|
|
215
|
|
|
if(is_array($values)) { |
216
|
|
|
$values = DataList::create($dataClass)->filter('Title', $values); |
217
|
|
|
} |
218
|
|
|
|
219
|
|
|
$ids = $values->column('Title'); |
220
|
|
|
|
221
|
|
|
$titleField = $this->getTitleField(); |
222
|
|
|
|
223
|
|
|
foreach($source as $object) { |
224
|
|
|
$options->push( |
225
|
|
|
ArrayData::create(array( |
226
|
|
|
'Title' => $object->$titleField, |
227
|
|
|
'Value' => $object->Title, |
228
|
|
|
'Selected' => in_array($object->Title, $ids), |
229
|
|
|
)) |
230
|
|
|
); |
231
|
|
|
} |
232
|
|
|
|
233
|
|
|
return $options; |
234
|
|
|
} |
235
|
|
|
|
236
|
|
|
/** |
237
|
|
|
* {@inheritdoc} |
238
|
|
|
*/ |
239
|
|
|
public function setValue($value, $source = null) |
240
|
|
|
{ |
241
|
|
|
if ($source instanceof DataObject) { |
242
|
|
|
$name = $this->getName(); |
243
|
|
|
|
244
|
|
|
if ($source->hasMethod($name)) { |
245
|
|
|
$value = $source->$name()->column('Title'); |
246
|
|
|
} |
247
|
|
|
} elseif ($value instanceof SS_List) { |
248
|
|
|
$value = $value->column('Title'); |
249
|
|
|
} |
250
|
|
|
|
251
|
|
|
if (!is_array($value)) { |
252
|
|
|
return parent::setValue($value); |
253
|
|
|
} |
254
|
|
|
|
255
|
|
|
return parent::setValue(array_filter($value)); |
256
|
|
|
} |
257
|
|
|
|
258
|
|
|
/** |
259
|
|
|
* {@inheritdoc} |
260
|
|
|
*/ |
261
|
|
|
public function getAttributes() |
262
|
|
|
{ |
263
|
|
|
return array_merge( |
264
|
|
|
parent::getAttributes(), |
265
|
|
|
array('name' => $this->getName() . '[]') |
266
|
|
|
); |
267
|
|
|
} |
268
|
|
|
|
269
|
|
|
/** |
270
|
|
|
* {@inheritdoc} |
271
|
|
|
*/ |
272
|
|
|
public function saveInto(DataObjectInterface $record) |
273
|
|
|
{ |
274
|
|
|
parent::saveInto($record); |
275
|
|
|
|
276
|
|
|
$name = $this->getName(); |
277
|
|
|
|
278
|
|
|
$titleField = $this->getTitleField(); |
279
|
|
|
|
280
|
|
|
$source = $this->getSource(); |
281
|
|
|
|
282
|
|
|
$values = $this->Value(); |
283
|
|
|
|
284
|
|
|
$relation = $record->$name(); |
285
|
|
|
|
286
|
|
|
$ids = array(); |
287
|
|
|
|
288
|
|
|
if(!$values) { |
289
|
|
|
$values = array(); |
290
|
|
|
} |
291
|
|
|
|
292
|
|
|
if(empty($record) || empty($source) || empty($titleField)) { |
293
|
|
|
return; |
294
|
|
|
} |
295
|
|
|
|
296
|
|
|
if(!$record->hasMethod($name)) { |
297
|
|
|
throw new Exception( |
298
|
|
|
sprintf("%s does not have a %s method", get_class($record), $name) |
299
|
|
|
); |
300
|
|
|
} |
301
|
|
|
|
302
|
|
|
foreach ($values as $key => $value) { |
303
|
|
|
// Get or create record |
304
|
|
|
$record = $this->getOrCreateTag($value); |
305
|
|
|
if($record) { |
306
|
|
|
$ids[] = $record->ID; |
307
|
|
|
$values[$key] = $record->Title; |
308
|
|
|
} |
309
|
|
|
} |
310
|
|
|
|
311
|
|
|
$relation->setByIDList(array_filter($ids)); |
312
|
|
|
|
313
|
|
|
} |
314
|
|
|
|
315
|
|
|
/** |
316
|
|
|
* Get or create tag with the given value |
317
|
|
|
* |
318
|
|
|
* @param string $term |
319
|
|
|
* @return DataObject |
320
|
|
|
*/ |
321
|
|
|
protected function getOrCreateTag($term) |
322
|
|
|
{ |
323
|
|
|
// Check if existing record can be found |
324
|
|
|
$source = $this->getSource(); |
325
|
|
|
$titleField = $this->getTitleField(); |
326
|
|
|
$record = $source |
327
|
|
|
->filter($titleField, $term) |
328
|
|
|
->first(); |
329
|
|
|
if($record) { |
330
|
|
|
return $record; |
331
|
|
|
} |
332
|
|
|
|
333
|
|
|
// Create new instance if not yet saved |
334
|
|
|
if ($this->getCanCreate()) { |
335
|
|
|
$dataClass = $source->dataClass(); |
336
|
|
|
$record = Injector::inst()->create($dataClass); |
337
|
|
|
$record->{$titleField} = $term; |
338
|
|
|
$record->write(); |
339
|
|
|
return $record; |
340
|
|
|
} else { |
341
|
|
|
return false; |
|
|
|
|
342
|
|
|
} |
343
|
|
|
} |
344
|
|
|
|
345
|
|
|
/** |
346
|
|
|
* Returns a JSON string of tags, for lazy loading. |
347
|
|
|
* |
348
|
|
|
* @param SS_HTTPRequest $request |
349
|
|
|
* |
350
|
|
|
* @return SS_HTTPResponse |
351
|
|
|
*/ |
352
|
|
|
public function suggest(SS_HTTPRequest $request) |
353
|
|
|
{ |
354
|
|
|
$tags = $this->getTags($request->getVar('term')); |
355
|
|
|
|
356
|
|
|
$response = new SS_HTTPResponse(); |
357
|
|
|
$response->addHeader('Content-Type', 'application/json'); |
358
|
|
|
$response->setBody(json_encode(array('items' => $tags))); |
359
|
|
|
|
360
|
|
|
return $response; |
361
|
|
|
} |
362
|
|
|
|
363
|
|
|
/** |
364
|
|
|
* Returns array of arrays representing tags. |
365
|
|
|
* |
366
|
|
|
* @param string $term |
367
|
|
|
* |
368
|
|
|
* @return array |
369
|
|
|
*/ |
370
|
|
|
protected function getTags($term) |
371
|
|
|
{ |
372
|
|
|
/** |
373
|
|
|
* @var DataList $source |
374
|
|
|
*/ |
375
|
|
|
$source = $this->getSource(); |
376
|
|
|
|
377
|
|
|
$titleField = $this->getTitleField(); |
378
|
|
|
|
379
|
|
|
$query = $source |
380
|
|
|
->filter($titleField . ':PartialMatch:nocase', $term) |
381
|
|
|
->sort($titleField) |
382
|
|
|
->limit($this->getLazyLoadItemLimit()); |
383
|
|
|
|
384
|
|
|
// Map into a distinct list |
385
|
|
|
$items = array(); |
386
|
|
|
$titleField = $this->getTitleField(); |
387
|
|
|
foreach ($query->map('ID', $titleField) as $id => $title) { |
388
|
|
|
$items[$title] = array( |
389
|
|
|
'id' => $title, |
390
|
|
|
'text' => $title |
391
|
|
|
); |
392
|
|
|
} |
393
|
|
|
|
394
|
|
|
return array_values($items); |
395
|
|
|
} |
396
|
|
|
|
397
|
|
|
/** |
398
|
|
|
* DropdownField assumes value will be a scalar so we must |
399
|
|
|
* override validate. This only applies to Silverstripe 3.2+ |
400
|
|
|
* |
401
|
|
|
* @param Validator $validator |
402
|
|
|
* @return bool |
403
|
|
|
*/ |
404
|
|
|
public function validate($validator) |
405
|
|
|
{ |
406
|
|
|
return true; |
407
|
|
|
} |
408
|
|
|
} |
409
|
|
|
|
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.