-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputfieldBooks.module
350 lines (310 loc) · 11.9 KB
/
InputfieldBooks.module
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
<?php
/**
* ProcessWire Books Fieldtype
*
* created by Brendon Kozlowski, bytekick.com, 2017
* File: InputfieldBook.module
*
* Licensed under MIT
*/
class InputfieldBooks extends Inputfield {
#private $tableid;
protected $page;
protected $field;
public static function getModuleInfo() {
return array(
'title' => 'OpenLibrary Book Inputfield',
'version' => '0.0.1',
'author' => 'Brendon Kozlowski',
'summary' => "Provides input for the Book Fieldtype",
'requires' => 'FieldtypeBooks',
'icon' => 'book'
);
}
public function setPage(Page $page) {
$this->page = $page;
}
public function setField(Field $field) {
$this->field = $field;
}
/**
* Render a the HTML for an individual Book input
*
*/
protected function renderRow(OpenLibraryBook $book, $cnt, $class = 'Book') {
$name = $this->attr('name');
$isbn = "$book->isbn";
$title = $this->sanitizer->entities($book->title);
$author = $this->sanitizer->entities($book->author);
$callno = $this->callno ? $this->callno : '';
$pubdate = $book->pubdate > 0 ? date(OpenLibraryBook::dateFormat, $book->pubdate) : '';
$cover = $book->cover;
$summary = $this->sanitizer->entities($book->summary);
$rating = $this->rating ? number_format((float) $this->rating, 1) : '';
/*
$labels = array(
'title' => $this->_('Book Title'),
'isbn' => $this->_('ISBN'),
#'callno' => $this->_('Call Number'),
'author' => $this->_('Author'),
'pubdate' => $this->_('Publication Year'),
'summary' => $this->_('Summary Description'),
'cover' => $this->_('Cover Art URL'),
'rating' => $this->_('Rating Value')
);
foreach ($labels as $key => $label):
$out .= <<< _OUT
<div class="{$key}">
<label>
<strong>$label</strong><br />
<input type="text" />
</label>
</div>
_OUT;
endforeach;*/
$out = "
<li class='OpenLibraryBook$cnt $class'>
<div><label><strong>ISBN</strong><br /><input type='text' pattern='[0-9]{10}|[0-9]{13}' title='A 10 or 13 digit ISBN number is required.' name='{$name}_isbn[]' value='$isbn' /></label></div>
<div><label><strong>Book Title</strong><br /><input type='text' name='{$name}_title[]' value='$title' /></label></div>
<div><label><strong>Author</strong><br /><input type='text' name='{$name}_author[]' value='$author' /></label></div>
<div><label><strong>Call Number</strong><br /><input type='text' name='{$name}_callno[]' value='$callno' /></label></div>
<div><label><strong>Publication Year</strong><br /><input type='text' name='{$name}_pubdate[]' value='$pubdate' /></label></div>
<div><label><strong>Summary Description</strong><br /><textarea name='{$name}_summary[]'>$summary</textarea></label></div>
<div><label><strong>Cover Art URL</strong><br /><input type='url' name='{$name}_cover[]' value='$cover' /></label></div>
<div><label><strong>Rating</strong><br /><input type='text' name='{$name}_rating[]' value='$rating' /></label></div>
<div>
<a href='#' class='BookDel ui-helper-clearfix'><span class='ui-icon ui-icon-trash'></span></a>
<input type='hidden' name='{$name}_del[]' value='0' />
</div>
</li>
";
return $out;
}
/**
* While the method is required, if you don't need it, then just leave the implementation blank.
* Per the Module interface, init() is called after any configuration data has been populated to the Inputfield, but before render.
*/
public function init() {
require_once(dirname(__FILE__) . '/OpenLibraryBook.php');
parent::init();
// load any assets
$conf = $this->getModuleInfo();
$version = (int) $conf['version'];
#$this->config->styles->add($this->config->urls->InputfieldHandsontable . 'lib/handsontable.full.min.css?v=' . $v);
#$this->config->scripts->add($this->config->urls->InputfieldHandsontable . 'lib/handsontable.full.min.js?v=' . $v);
#$this->config->scripts->add($this->config->urls->InputfieldHandsontable . 'FieldtypeHandsontable.js?v=' . $v);
// Load Main JS File
$this->config->scripts->add($this->config->urls->FieldtypeBooks . "OpenLibraryBook.js?v=" . $version);
}
/**
* Render the HTML input element(s) markup, ready for insertion in an HTML form.
* This is a method that Inputfield module classes are required to implement.
* @return string
*/
public function ___render() {
$out = null;
// Begin the list
$list = '<ul class="Book BookList InputfieldBooks">';
// Template for creating new book entries
#$list .= $this->renderRow(new OpenLibraryBook(), 0, 'Book BookTemplate');
foreach ($this->attr('value') as $count => $book) {
$list .= $this->renderRow($book, $count);
}
// End the list
$list .= '</ul>';
$out = "<ul class='InputfieldBooks gridBooks'>$list</ul>";
// Add the form fields for entering new book data
$out .= '<div id="book-form">';
$fieldset = $this->modules->get('InputfieldForm');
#$fieldset->label = 'Book #1';
// ISBN
$field = $this->modules->get('InputfieldText');
$field->label = __('ISBN');
$field->attr('id+name', 'isbn');
$field->attr('maxlength', 13);
$field->notes = 'A 10 or 13 digit ISBN. 13 digit ISBN is preferred.';
#$field->value = '';
#$field->columnWidth = 50;
$fieldset->add($field);
// BOOK FORM BUTTON -- must be processed via JS
# $button = $this->modules->get('InputfieldButton');
# $button->attr('id', 'isbn_search');
# $button->class .= ' InputfieldBooksFind';
# $button->icon = 'search';
# $button->value = $this->_('Find by ISBN');
# $button->setSmall()->setSecondary();
# $field->columnWidth = 50;
# $fieldset->add($button);
// RIGHT
/* $field = $this->modules->get('InputfieldInteger');
$field->label = __('Publication Year');
$field->attr('id+name', 'pubdate');
$field->attr('maxlength', 4);
$field->attr('pattern', '\d{4}');
$field->attr('placeholder', 'YYYY');
#$field->value = '';
$field->columnWidth = 50;
$fieldset->add($field);
// RIGHT
$field = $this->modules->get('InputfieldText');
$field->label = __('Call Number');
$field->attr('id+name', 'callno');
#$field->value = '';
#$field->columnWidth = 25;
$fieldset->add($field);
*/
/*
// RIGHT
$field = $this->modules->get('InputfieldMarkup');
$field->label = 'Book Cover Thumbnail';
$field->attr('id+name', 'cover');
$field->notes = 'Book cover image generated automatically from the ISBN.';
$field->value = '<div class="book-jacket">Book Cover Not Found</div>';
$field->columnWidth = 50;
$fieldset->add($field);
*/
/*
// LEFT
$field = $this->modules->get('InputfieldText');
$field->label = __('Title');
$field->attr('id+name', 'title');
#$field->value = '';
#$field->columnWidth = 50;
$fieldset->add($field);
// RIGHT
$field = $this->modules->get('InputfieldText');
$field->label = __('Rating');
$field->attr('id+name', 'rating');
#$field->value = '';
#$field->columnWidth = 50;
$fieldset->add($field);
// LEFT
$field = $this->modules->get('InputfieldText');
$field->label = __('Author');
$field->attr('id+name', 'author');
#$field->value = '';
#$field->columnWidth = 50;
$fieldset->add($field);
// LEFT
$field = $this->modules->get('InputfieldTextarea');
$field->label = __('Summary Description');
$field->attr('id+name', 'summary');
#$field->value = '';
#$field->columnWidth = 50;
$fieldset->add($field);
// Add a button for adding additional books
$button = $this->modules->get('InputfieldButton');
$button->attr('id', $this->attr('name') . '_new');
$button->class .= ' InputfieldBooksAdd';
$button->icon = 'plus-sign';
$button->value = $this->_('Add New Book');
$fieldset->add($button);
// FULL WIDTH BUTTON
$button = $this->modules->get('InputfieldButton');
$button->attr('id', $this->attr('name') . '_new');
$button->class .= ' InputfieldBooksAdd';
$button->icon = 'plus';
$button->value = __('Add Book');
$button->setSmall()->setSecondary();
$button->attr('data-panel-id', 'book-form');
$button->attr('data-tab-text', __('Adding a Book'));
$button->addClass('pw-panel');
#$fieldset->add($button);
#$out .= $button->render();
*/
// TITLE
$field = $this->modules->get('InputfieldText');
$field->label = __('Title');
$field->attr('id+name', 'title');
$fieldset->add($field);
// AUTHOR
$field = $this->modules->get('InputfieldText');
$field->label = __('Author');
$field->attr('id+name', 'author');
$fieldset->add($field);
// SUMMARY DESCRIPTION
$field = $this->modules->get('InputfieldTextarea');
$field->label = __('Summary Description');
$field->attr('id+name', 'summary');
$fieldset->add($field);
// PUBLICATION YEAR
$field = $this->modules->get('InputfieldInteger');
$field->label = __('Publication Year');
$field->attr('id+name', 'pubdate');
$field->attr('maxlength', 4);
$field->attr('pattern', '\d{4}');
$field->attr('placeholder', 'YYYY');
$field->attr('min', 0000);
$field->attr('max', date('Y'));
$fieldset->add($field);
// RATING
$field = $this->modules->get('InputfieldText');
$field->label = __('Rating');
$field->attr('id+name', 'rating');
$fieldset->add($field);
// CALL NUMBER
$field = $this->modules->get('InputfieldText');
$field->label = __('Call Number');
$field->attr('id+name', 'callno');
$fieldset->add($field);
// BOOK FORM BUTTON -- must be processed via JS
$button = $this->modules->get('InputfieldButton');
$button->attr('id', $this->attr('name') . '_add');
$button->class .= ' InputfieldBooksAdd';
$button->icon = 'plus-sign';
$button->value = $this->_('Add New Book');
$fieldset->add($button);
// Add a button for adding additional books
$button = $this->modules->get('InputfieldButton');
$button->attr('id', $this->attr('name') . '_new');
$button->class .= ' InputfieldBooksAddPanel';
$button->icon = 'plus-circle';
$button->value = __('Add Book');
$button->setSmall()->setSecondary();
$button->attr('data-panel-id', 'book-form');
#$button->attr('data-href', $this->config->urls->admin . 'test/');
$button->attr('data-tab-text', __('Adding a Book'));
$button->addClass('pw-panel');
return $out . $fieldset->render() . '</div>' . $button->render();
}
/**
* Process input for the Books inputs
*
*/
public function ___processInput(WireInputData $input) {
bdb($input);
if (!$this->page || !$this->field) {
throw new WireException("This inputfield requires that you set valid 'page' and 'field' properties to it.");
}
$name = $this->attr('name');
$books = $this->field->type->getBlankValue($this->page, $this->field);
$numDeleted = 0;
foreach ($input->{"{$name}_title"} as $count => $title){
#if (!$count) continue; // template for 'new' item is the first, so we can ignore it
// Check if the item is being deleted
if ($input->{"{$name}_del"}[$count]) {
// if it's being deleted, we just skip it
$numDeleted++;
continue;
}
// Create the $book and add it to our $books
$book = new OpenLibraryBook();
$book->title = $title;
$book->isbn = $input->{"{$name}_isbn"}[$count];
$book->author = $input->{"{$name}_author"}[$count];
$book->callno = $input->{"{$name}_callno"}[$count];
$book->pubdate = $input->{"{$name}_pubdate"}[$count];
$book->cover = $input->{"{$name}_cover"}[$count];
$book->summary = $input->{"{$name}_summary"}[$count];
$book->rating = $input->{"{$name}_rating"}[$count];
$books->add($book);
}
// If the string values of the processed events are different from the previous,
// or if any events have been deleted, then flag this Inputfield as changed
// so that it will be automatically saved with the page
if("$books" != "$this->value" || $numDeleted) {
$this->attr('value', $books);
$this->trackChange('value');
}
}
}