1. /**
  2. * @module meteoJS/modelviewer/display/selectNavigation
  3. */
  4. import $ from 'jquery';
  5. import Simple from './Simple.js';
  6. /**
  7. * @classdesc
  8. */
  9. export class SelectNavigation extends Simple {
  10. constructor({ ignoreVariableCollections = [],
  11. selectCaption = false,
  12. navigationClass = undefined,
  13. selectDivClass = undefined,
  14. selectClass = undefined } = {}) {
  15. super();
  16. this.options = {
  17. ignoreVariableCollections: new Set(ignoreVariableCollections),
  18. selectCaption,
  19. navigationClass,
  20. selectDivClass,
  21. selectClass
  22. };
  23. /**
  24. * @type undefined|jQuery
  25. * @private
  26. */
  27. this.navigationNode = undefined;
  28. /**
  29. * @type Map<module:meteoJS/modelviewer/variableCollection.variableCollection,jQuery>
  30. * @private
  31. */
  32. this.selectNodes = new Map();
  33. }
  34. /**
  35. * @override
  36. */
  37. onInit() {
  38. if (this.parentNode === undefined)
  39. return;
  40. this.navigationNode = $('<div>').addClass(this.options.navigationClass);
  41. this.resourceNode = $('<div>');
  42. $(this.parentNode).empty().append(this.navigationNode, this.resourceNode);
  43. if (this.modelviewer !== undefined)
  44. this.modelviewer.resources.variableCollections
  45. .filter(collection => !this.options.ignoreVariableCollections.has(collection) && collection.count > 0)
  46. .forEach(collection => this._appendSelectNode(collection));
  47. this._changeSelected();
  48. }
  49. onChangeVisibleResource({ variable } = {}) {
  50. super.onChangeVisibleResource({ variable });
  51. this._changeSelected();
  52. }
  53. onAppendVariable(variable) {
  54. if (this.selectNodes.has(variable.variableCollection))
  55. this._appendOptionNode(this.selectNodes.get(variable.variableCollection), variable);
  56. else
  57. this._appendSelectNode(variable.variableCollection);
  58. this._changeSelected();
  59. }
  60. _appendSelectNode(variableCollection) {
  61. let selectNode = $('<select>').addClass(this.options.selectClass);
  62. selectNode.on('change', () => {
  63. let variable = variableCollection.getItemById(selectNode.val());
  64. this.container.exchangeDisplayVariable = [ variable ];
  65. });
  66. if (this.options.selectCaption) {
  67. let captionOption = $('<option>').text(variableCollection.name).attr('disabled', 'disabled').prop('selected', 'selected');
  68. selectNode.append(captionOption);
  69. }
  70. variableCollection.variables.forEach(variable => {
  71. this._appendOptionNode(selectNode, variable);
  72. });
  73. this.navigationNode.append($('<div>').addClass(this.options.selectDivClass).append(selectNode));
  74. this.selectNodes.set(variableCollection, selectNode);
  75. }
  76. _appendOptionNode(selectNode, variable) {
  77. let option =
  78. $('<option>')
  79. .attr('value', variable.id)
  80. .text(variable.name)
  81. .addClass(this.options.optionsClass);
  82. selectNode.append(option);
  83. }
  84. _changeSelected() {
  85. for (let variableCollection of this.selectNodes.keys()) {
  86. if (!this.selectNodes.has(variableCollection))
  87. continue;
  88. let variable = this.container.visibleResource.getVariableByVariableCollection(variableCollection);
  89. this.selectNodes.get(variableCollection).val(variable.id);
  90. }
  91. }
  92. }
  93. export default SelectNavigation;