Source: src/js/views/maps/LayersPanelView.js

  1. "use strict";
  2. define([
  3. "backbone",
  4. "text!templates/maps/layers-panel.html",
  5. "views/maps/LayerCategoryListView",
  6. "views/maps/LayerListView",
  7. "views/maps/SearchInputView",
  8. ], (
  9. Backbone,
  10. Template,
  11. LayerCategoryListView,
  12. LayerListView,
  13. SearchInputView,
  14. ) => {
  15. /**
  16. * @class LayersPanelView
  17. * @classdesc LayersPanelView shows information about a map's layers and supports
  18. * searching. This view is used as a toolbar section.
  19. * @classcategory Views/Maps
  20. * @name LayersPanelView
  21. * @extends Backbone.View
  22. * @screenshot views/maps/LayersPanelView.png
  23. * @since 2.28.0
  24. * @constructs LayersPanelView
  25. */
  26. const LayersPanelView = Backbone.View.extend(
  27. /** @lends LayersPanelView.prototype */ {
  28. /**
  29. * The type of View this is
  30. * @type {string}
  31. */
  32. type: "LayersPanelView",
  33. /**
  34. * The HTML classes to use for this view's element
  35. * @type {string}
  36. */
  37. className: "layers-panel",
  38. /**
  39. * The HTML classes to use for this view's HTML elements.
  40. * @type {Object<string,string>}
  41. */
  42. classNames: {
  43. search: "layers-panel__search",
  44. layers: "layers-panel__layers",
  45. },
  46. /**
  47. * @typedef {Object} LayersPanelViewOptions
  48. * @property {Map} The Map model that contains layers information.
  49. */
  50. initialize(options) {
  51. this.map = options.model;
  52. },
  53. /**
  54. * Render the view by updating the HTML of the element.
  55. * The new HTML is computed from an HTML template that
  56. * is passed an object with relevant view state.
  57. * */
  58. render() {
  59. this.el.innerHTML = _.template(Template)({
  60. classNames: this.classNames,
  61. });
  62. if (this.map.get("layerCategories")?.length > 0) {
  63. this.layersView = new LayerCategoryListView({
  64. collection: this.map.get("layerCategories"),
  65. });
  66. } else {
  67. this.layersView = new LayerListView({
  68. collection: this.map.get("layers"),
  69. isCategorized: false,
  70. });
  71. }
  72. this.layersView.render();
  73. this.$(`.${this.classNames.layers}`).append(this.layersView.el);
  74. this.searchInput = new SearchInputView({
  75. placeholder: "Search all data layers",
  76. search: (text) => this.search(text),
  77. noMatchCallback: () => this.layersView.search(""),
  78. });
  79. this.searchInput.render();
  80. this.$(`.${this.classNames.search}`).append(this.searchInput.el);
  81. },
  82. /**
  83. * Search function for the SearchInputView.
  84. * @param {string} [text] - The search text from user input.
  85. * @returns {boolean} - True if there is a layer match.
  86. */
  87. search(text) {
  88. this.dismissLayerDetails();
  89. const matched = this.layersView.search(text);
  90. if (!matched) {
  91. this.searchInput.setError("No layers match your search");
  92. }
  93. return matched;
  94. },
  95. dismissLayerDetails() {
  96. this.map.getLayerGroups().forEach((mapAssets) => {
  97. mapAssets.forEach((layerModel) => {
  98. layerModel.set("selected", false);
  99. });
  100. });
  101. },
  102. },
  103. );
  104. return LayersPanelView;
  105. });