46 lines
1.2 KiB
JavaScript
46 lines
1.2 KiB
JavaScript
/**
|
|
* DO NOT EDIT THIS FILE.
|
|
* See the following change record for more information,
|
|
* https://www.drupal.org/node/2815083
|
|
* @preserve
|
|
**/
|
|
|
|
(Drupal => {
|
|
Drupal.Charts = Drupal.Charts || {};
|
|
Drupal.Charts.Configs = Drupal.Charts.Configs || [];
|
|
Drupal.Charts.Contents = class {
|
|
constructor() {
|
|
const charts_elements = document.querySelectorAll('[data-chart]');
|
|
charts_elements.forEach(function (el) {
|
|
const id = el.getAttribute('id');
|
|
Drupal.Charts.Configs[id] = JSON.parse(el.getAttribute('data-chart'));
|
|
Drupal.Charts.Configs[id].drupalChartDivElement = el;
|
|
Drupal.Charts.Configs[id].drupalChartDivId = id;
|
|
});
|
|
}
|
|
|
|
initialize(id) {
|
|
const event = new CustomEvent('drupalChartsConfigsInitialization', {
|
|
detail: Drupal.Charts.Configs[id]
|
|
});
|
|
Drupal.Charts.Configs[id].drupalChartDivElement.dispatchEvent(event);
|
|
}
|
|
|
|
static update(id, data) {
|
|
if (Drupal.Charts.Configs.hasOwnProperty(id)) {
|
|
Drupal.Charts.Configs[id] = data;
|
|
}
|
|
}
|
|
|
|
getData(id) {
|
|
if (Drupal.Charts.Configs.hasOwnProperty(id)) {
|
|
this.initialize(id);
|
|
return Drupal.Charts.Configs[id];
|
|
}
|
|
|
|
return {};
|
|
}
|
|
|
|
};
|
|
})(Drupal);
|