-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathChartJS.php
More file actions
446 lines (398 loc) · 13.5 KB
/
ChartJS.php
File metadata and controls
446 lines (398 loc) · 13.5 KB
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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
<?php
/**
* Base class for sidebar settigns of ChartJS based charts.
*
* @category Visualizer
* @package Render
* @subpackage Sidebar
*
* @since 3.2.0
* @abstract
*/
abstract class Visualizer_Render_Sidebar_ChartJS extends Visualizer_Render_Sidebar {
/**
* The array of available legend positions.
*
* @since 1.0.0
*
* @access protected
* @var array
*/
protected $_legendPositions;
/**
* The constructor.
*/
public function __construct( $data = array() ) {
$this->_library = 'chartjs';
parent::__construct( $data );
$this->_legendPositions = array(
'left' => esc_html__( 'Left of the chart', 'visualizer' ),
'right' => esc_html__( 'Right of the chart', 'visualizer' ),
'top' => esc_html__( 'Above the chart', 'visualizer' ),
'bottom' => esc_html__( 'Below the chart', 'visualizer' ),
'bottom' => esc_html__( 'Below the chart', 'visualizer' ),
'none' => esc_html__( 'Omit the legend', 'visualizer' ),
);
}
/**
* Renders concrete series settings for the Bar chart.
*
* @since 3.3.0
*
* @access protected
* @param int $index The series index.
*/
protected function _renderChartTypeSeries( $index ) {
// empty.
}
/**
* Renders settings specific to the Bar chart.
*
* @since 3.3.0
*
* @access protected
*/
protected function _renderChartTypeSettings() {
// empty
}
/**
* Registers additional hooks.
*
* @access protected
*/
protected function hooks() {
if ( $this->_library === 'chartjs' ) {
add_filter( 'visualizer_assets_render', array( $this, 'load_chartjs_assets' ), 10, 2 );
}
}
/**
* Loads the assets.
*/
public function load_chartjs_assets( $deps, $is_frontend ) {
$this->load_dependent_assets( array( 'moment', 'numeral' ) );
wp_register_script( 'chartjs', VISUALIZER_ABSURL . 'js/lib/chartjs.min.js', array( 'numeral', 'moment' ), null, true );
wp_register_script(
'visualizer-render-chartjs-lib',
VISUALIZER_ABSURL . 'js/render-chartjs.js',
array(
'chartjs',
),
Visualizer_Plugin::VERSION,
true
);
return array_merge(
$deps,
array( 'visualizer-render-chartjs-lib' )
);
}
/**
* Renders series settings group.
*
* @since 3.3.0
*
* @access protected
*/
protected function _renderSeriesSettings() {
self::_renderGroupStart( esc_html__( 'Series Settings', 'visualizer' ) );
self::_renderSectionStart();
self::_renderSectionDescription( esc_html__( 'If you have just updated/modified the chart data, you may need to save it before the new data reflects in the settings.', 'visualizer' ), 'viz-info-msg' );
self::_renderSectionEnd();
for ( $i = 1, $cnt = count( $this->__series ); $i < $cnt; $i++ ) {
if ( ! empty( $this->__series[ $i ]['label'] ) ) {
self::_renderSectionStart( esc_html( $this->__series[ $i ]['label'] ), false );
$this->_renderSeries( $i - 1 );
self::_renderSectionEnd();
}
}
self::_renderGroupEnd();
}
/**
* Renders concrete series settings.
*
* @since 3.3.0
*
* @access protected
* @param int $index The series index.
*/
protected function _renderSeries( $index ) {
$this->_renderFormatField( $index );
$this->_renderChartTypeSeries( $index );
}
/**
* Renders template.
*
* @since 3.3.0
*
* @access protected
*/
protected function _toHTML() {
$this->_renderGeneralSettings();
$this->_renderAxesSettings();
$this->_renderChartTypeSettings();
$this->_renderSeriesSettings();
$this->_renderViewSettings();
$this->_renderAdvancedSettings();
}
/**
* Renders chart title settings.
*
* @since 3.3.0
*
* @access protected
*/
protected function _renderChartTitleSettings() {
self::_renderTextItem(
esc_html__( 'Chart Title', 'visualizer' ),
'title[text]',
isset( $this->title['text'] ) ? $this->title['text'] : '',
esc_html__( 'Text to display above the chart.', 'visualizer' )
);
self::_renderColorPickerItem(
esc_html__( 'Chart Title Color', 'visualizer' ),
'title[fontColor]',
isset( $this->title['fontColor'] ) ? $this->title['fontColor'] : '',
'#000'
);
echo '<div class="viz-section-delimiter"></div>';
self::_renderTextAreaItem(
esc_html__( 'Chart Description', 'visualizer' ),
'description',
$this->description,
sprintf(
// translators: %1$s - HTML link tag, %2$s - HTML closing link tag.
esc_html__( 'Description to display in the structured data schema as explained %1$shere%2$s', 'visualizer' ),
'<a href="https://developers.google.com/search/docs/data-types/dataset#dataset" target="_blank">',
'</a>'
)
);
}
/**
* Renders chart general settings group.
*
* @since 3.3.0
*
* @access protected
*/
protected function _renderGeneralSettings() {
self::_renderGroupStart( esc_html__( 'General Settings', 'visualizer' ) );
self::_renderSectionStart();
self::_renderSectionDescription( esc_html__( 'Configure title, font styles, tooltip, legend and else settings for the chart.', 'visualizer' ) );
self::_renderSectionEnd();
self::_renderSectionStart( esc_html__( 'Title', 'visualizer' ), false );
$this->_renderChartTitleSettings();
self::_renderSectionEnd();
self::_renderSectionStart( esc_html__( 'Font Styles', 'visualizer' ), false );
echo '<div class="viz-section-item">';
echo '<a class="more-info" href="javascript:;">[?]</a>';
echo '<b>', esc_html__( 'Font Family And Size', 'visualizer' ), '</b>';
echo '<table class="viz-section-table" cellspacing="0" cellpadding="0" border="0">';
echo '<tr>';
echo '<td class="viz-section-table-column">';
echo '<select name="fontName" class="control-select">';
echo '<option></option>';
foreach ( self::$_fontFamilies as $font => $label ) {
echo '<option value="', $font, '"', selected( $font, $this->fontName, false ), '>';
echo $label;
echo '</option>';
}
echo '</select>';
echo '</td>';
echo '<td class="viz-section-table-column">';
echo '<select name="fontSize" class="control-select">';
echo '<option></option>';
for ( $i = 7; $i <= 20; $i++ ) {
echo '<option value="', $i, '"', selected( $i, $this->fontSize, false ), '>', $i, '</option>';
}
echo '</select>';
echo '</td>';
echo '</tr>';
echo '</table>';
echo '<p class="viz-section-description">';
esc_html_e( 'The default font family and size for all text in the chart.', 'visualizer' );
echo '</p>';
echo '</div>';
self::_renderSectionEnd();
self::_renderSectionStart( esc_html__( 'Legend', 'visualizer' ), false );
self::_renderSelectItem(
esc_html__( 'Position', 'visualizer' ),
'legend[position]',
// let's have a default otherwise the chart behaves weird when hovering in edit mode
isset( $this->legend['position'] ) ? $this->legend['position'] : 'top',
$this->_legendPositions,
esc_html__( 'Sets the legend position relative to the chart.', 'visualizer' )
);
self::_renderCheckboxItem(
esc_html__( 'Show datasets in reverse order', 'visualizer' ),
'legend[reverse]',
isset( $this->legend['reverse'] ) ? $this->legend['reverse'] : false,
'true',
esc_html__( 'Legend will show datasets in reverse order.', 'visualizer' )
);
echo '<div class="viz-section-item">';
echo '<a class="more-info" href="javascript:;">[?]</a>';
echo '<b>', esc_html__( 'Font Family And Size', 'visualizer' ), '</b>';
echo '<table class="viz-section-table" cellspacing="0" cellpadding="0" border="0">';
echo '<tr>';
echo '<td class="viz-section-table-column">';
echo '<select name="legend[labels][fontName]" class="control-select">';
echo '<option></option>';
foreach ( self::$_fontFamilies as $font => $label ) {
echo '<option value="', $font, '"', selected( $font, $this->legend['labels']['fontName'], false ), '>';
echo $label;
echo '</option>';
}
echo '</select>';
echo '</td>';
echo '<td class="viz-section-table-column">';
echo '<select name="legend[labels][fontSize]" class="control-select">';
echo '<option></option>';
for ( $i = 7; $i <= 20; $i++ ) {
echo '<option value="', $i, '"', selected( $i, $this->legend['labels']['fontSize'], false ), '>', $i, '</option>';
}
echo '</select>';
echo '</td>';
echo '</tr>';
echo '</table>';
self::_renderColorPickerItem(
esc_html__( 'Font Color', 'visualizer' ),
'legend[labels][fontColor]',
isset( $this->legend['labels']['fontColor'] ) ? $this->legend['labels']['fontColor'] : null,
'#000'
);
echo '</div>';
self::_renderSectionEnd();
self::_renderSectionStart( esc_html__( 'Tooltip', 'visualizer' ), false );
$this->_renderTooltipSettigns();
self::_renderSectionEnd();
$this->_renderAnimationSettings();
self::_renderSectionStart( esc_html__( 'License & Creator', 'visualizer' ), false );
self::_renderTextItem(
esc_html__( 'License', 'visualizer' ),
'license',
$this->license,
''
);
self::_renderTextItem(
esc_html__( 'Creator', 'visualizer' ),
'creator',
$this->creator,
''
);
self::_renderSectionEnd();
self::_renderChartImageSettings();
self::_renderGroupEnd();
}
/**
* Renders animation settings section.
*
* @access protected
*/
protected function _renderAnimationSettings() {
if ( ! $this->_supportsAnimation ) {
return;
}
self::_renderSectionStart( esc_html__( 'Animation', 'visualizer' ), false );
self::_renderTextItem(
esc_html__( 'Duration', 'visualizer' ),
'animation[duration]',
isset( $this->animation['duration'] ) ? $this->animation['duration'] : 1000,
esc_html__( 'The duration of the animation, in milliseconds', 'visualizer' ),
1000,
'number',
array( 'min' => 1000 )
);
self::_renderSelectItem(
esc_html__( 'Easing', 'visualizer' ),
'animation[easing]',
isset( $this->animation['easing'] ) ? $this->animation['easing'] : null,
array(
'linear' => esc_html__( 'Constant speed', 'visualizer' ),
'easeInQuad' => esc_html__( 'easeInQuad', 'visualizer' ),
'easeOutQuad' => esc_html__( 'easeOutQuad', 'visualizer' ),
'easeInOutQuad' => esc_html__( 'easeInOutQuad', 'visualizer' ),
'easeInCubic' => esc_html__( 'easeInCubic', 'visualizer' ),
'easeOutCubic' => esc_html__( 'easeOutCubic', 'visualizer' ),
'easeInOutCubic' => esc_html__( 'easeInOutCubic', 'visualizer' ),
'easeInQuart' => esc_html__( 'easeInQuart', 'visualizer' ),
'easeOutQuart' => esc_html__( 'easeOutQuart', 'visualizer' ),
'easeInOutQuart' => esc_html__( 'easeInOutQuart', 'visualizer' ),
'easeInQuint' => esc_html__( 'easeInQuint', 'visualizer' ),
'easeOutQuint' => esc_html__( 'easeOutQuint', 'visualizer' ),
),
esc_html__( 'The easing function applied to the animation.', 'visualizer' )
);
self::_renderSectionEnd();
}
/**
* Renders tooltip settings section.
*
* @since 1.4.0
*
* @access protected
*/
protected function _renderTooltipSettigns() {
self::_renderCheckboxItem(
esc_html__( 'Trigger', 'visualizer' ),
'tooltip[intersect]',
$this->tooltip['intersect'],
1,
esc_html__( 'Determines if the tooltip should only display when the mouse intersects with an element.', 'visualizer' )
);
}
/**
* Add the correct description for the manual configuration box.
*/
protected function _renderManualConfigDescription() {
self::_renderSectionStart();
self::_renderSectionDescription(
'<span class="viz-gvlink">' . sprintf(
// translators: %1$s - HTML link tag, %2$s - HTML closing link tag, %3$s - HTML link tag, %4$s - HTML closing link tag.
__( 'Configure the graph by providing configuration variables right from the %1$sChartJS API%2$s. You can refer to %3$sCommon Snippets%4$s for examples.', 'visualizer' ),
'<a href="https://www.chartjs.org/docs/latest/configuration/" target="_blank">',
'</a>',
'<a href="https://docs.themeisle.com/article/728-manual-configuration" target="_blank">',
'</a>'
) . '</span>'
);
}
/**
* Add the correct example for the manual configuration box.
*/
protected function _renderManualConfigExample() {
return '{
"cutoutPercentage": 5,
"rotation": 60
}';
}
/**
* Renders chart view settings group.
*
* @since 3.3.0
*
* @access protected
*/
protected function _renderViewSettings() {
self::_renderGroupStart( esc_html__( 'Chart Size', 'visualizer' ) );
self::_renderSectionStart();
self::_renderSectionDescription( esc_html__( 'Configure the total size of the chart. Two formats are supported: a number, or a number followed by %. A simple number is a value in pixels; a number followed by % is a percentage.', 'visualizer' ) );
echo '<div class="viz-section-item">';
echo '<a class="more-info" href="javascript:;">[?]</a>';
echo '<b>', esc_html__( 'Width And Height Of Chart', 'visualizer' ), '</b>';
echo '<table class="viz-section-table" cellspacing="0" cellpadding="0" border="0">';
echo '<tr>';
echo '<td class="viz-section-table-column">';
echo '<input type="text" name="width" class="control-text" value="', esc_attr( $this->width ), '" placeholder="100%">';
echo '</td>';
echo '<td class="viz-section-table-column">';
echo '<input type="text" name="height" class="control-text" value="', esc_attr( $this->height ), '" placeholder="400">';
echo '</td>';
echo '</tr>';
echo '</table>';
echo '<p class="viz-section-description">';
esc_html_e( 'Determines the total width and height of the chart. This will only show in the front-end.', 'visualizer' );
echo '</p>';
echo '</div>';
self::_renderSectionEnd();
self::_renderGroupEnd();
}
}