Skip to content
Snippets Groups Projects
Commit 8a0d645a authored by Daniel Cothran's avatar Daniel Cothran
Browse files

Make Charts API Example module use plugins, since the render files were...

Make Charts API Example module use plugins, since the render files were deleted. Now more closely resembles Charts Blocks.
parent 20953df2
No related branches found
No related tags found
No related merge requests found
...@@ -286,8 +286,6 @@ function charts_settings_form($form, $defaults = [], $field_options = [], $paren ...@@ -286,8 +286,6 @@ function charts_settings_form($form, $defaults = [], $field_options = [], $paren
if ($field_options) { if ($field_options) {
$first_field = key($field_options); $first_field = key($field_options);
/* $form['#theme'] = 'charts_settings_fields'; */
$form['fields'] = [ $form['fields'] = [
'#title' => t('Charts fields'), '#title' => t('Charts fields'),
'#type' => 'fieldset', '#type' => 'fieldset',
......
...@@ -35,6 +35,7 @@ function charts_api_example_theme() { ...@@ -35,6 +35,7 @@ function charts_api_example_theme() {
'categories' => [], 'categories' => [],
'seriesData' => [], 'seriesData' => [],
'options' => [], 'options' => [],
'id' => '',
], ],
], ],
]; ];
...@@ -44,8 +45,7 @@ function charts_api_example_theme() { ...@@ -44,8 +45,7 @@ function charts_api_example_theme() {
* Implements template_preprocess_charts_api_example(). * Implements template_preprocess_charts_api_example().
*/ */
function template_preprocess_charts_api_example(&$variables) { function template_preprocess_charts_api_example(&$variables) {
$moduleSelector = new ModuleSelector($variables['library'], $variables['categories'], $variables['seriesData'], $variables['options'], [], 'xyz'); $plugin_manager = \Drupal::service('plugin.manager.charts');
if ($moduleSelector->moduleExists()) { $plugin = $plugin_manager->createInstance($variables['library']);
$moduleSelector->buildVariables($variables); $plugin->buildVariables($variables['options'], $variables['categories'], $variables['seriesData'], [], $variables, 'xyz');
}
} }
...@@ -37,6 +37,8 @@ class ChartsApiExample extends ControllerBase implements ContainerInjectionInter ...@@ -37,6 +37,8 @@ class ChartsApiExample extends ControllerBase implements ContainerInjectionInter
drupal_set_message($this->t('You need to first configure Charts default settings')); drupal_set_message($this->t('You need to first configure Charts default settings'));
return []; return [];
} }
// Customize options here.
$options = [ $options = [
'type' => $this->chartSettings['type'], 'type' => $this->chartSettings['type'],
'title' => $this->t('Chart title'), 'title' => $this->t('Chart title'),
......
{% set library, height, width = 'charts_' ~ chart_type ~ '/' ~ chart_type, options.height, options.width %} {% set library, height, width = 'charts_' ~ library ~ '/' ~ library, options.height, options.width %}
{{ attach_library("#{ library }") }} {{ attach_library("#{ library }") }}
<p>Edit charts_api_example.html.twig to delete this message. To change the <div {{ attributes }} {{ content_attributes }} style="{% if width is not empty %}width:{{ width }}px;{% endif %}{% if height is not empty %}height:{{ height }}px;{% endif %}"></div>
library used by this file, change the <a href="{{ url('charts.settings',{}) }}">default settings</a>.
</p>
<div {{ attributes }} {{ content_attributes }} style="width:{{ width }};height:{{ height }};"></div>
...@@ -26,7 +26,6 @@ class ChartsBlock extends BlockBase { ...@@ -26,7 +26,6 @@ class ChartsBlock extends BlockBase {
// Get the default chart values. // Get the default chart values.
$defaults = \Drupal::state()->get('charts_default_settings', []); $defaults = \Drupal::state()->get('charts_default_settings', []);
$defaults += charts_default_settings(); $defaults += charts_default_settings();
foreach ($defaults as $default_key => $default_value) { foreach ($defaults as $default_key => $default_value) {
$options[$default_key]['default'] = $default_value; $options[$default_key]['default'] = $default_value;
...@@ -247,12 +246,9 @@ class ChartsBlock extends BlockBase { ...@@ -247,12 +246,9 @@ class ChartsBlock extends BlockBase {
]; ];
} }
/** // Creates a UUID for the chart ID.
* @todo: refactor the way this id is produced to ensure uniqueness. $uuid_service = \Drupal::service('uuid');
*/ $chartId = 'chart-' . $uuid_service->generate();
$chartId = strtolower($this->label());
$chartId = preg_replace('/[^a-z0-9_]+/', '_', $chartId);
$chartId = preg_replace('/_+/', '_', $chartId);
$build = [ $build = [
'#theme' => 'charts_blocks', '#theme' => 'charts_blocks',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment