Sha256: a89015dd7970f5a96144b5b1bed5ea0788738c5a9ca96696a694bf9bdec5d295
Contents?: true
Size: 1.83 KB
Versions: 10
Compression:
Stored size: 1.83 KB
Contents
import MapMarkersController from "src/decidim/map/controller/markers" import MapStaticController from "src/decidim/map/controller/static" import MapDragMarkerController from "src/decidim/map/controller/drag_marker" /** * A factory method that creates a new map controller instance. This method * can be overridden in order to return different types of maps for * differently configured map elements. * * For instance, one map could pass an extra `type` configuration with the * value "custom" for the map element, this factory method would identify * it and then return a different controller for that map than the default. * This would allow this types of maps to function differently. * * An example how to use in the ERB view: * <%= dynamic_map_for type: "custom" do %> * <%= javascript_pack_tag "map_customization" %> * <% end %> * * And then the actual customization at `map_customization.js.es6`: * var originalCreateMapController = window.Decidim.createMapController; * window.Decidim.createMapController = (mapId, config) => { * if (config.type === "custom") { * // Obviously you need to implement CustomMapController for this to * // work. * return new window.Decidim.CustomMapController(mapId, config); * } * * return originalCreateMapController(mapId, config); * } * * @param {string} mapId The ID of the map element. * @param {Object} config The map configuration object. * @returns {MapController} The controller for the map. */ const createMapController = function(mapId, config) { if (config.type === "static") { return new MapStaticController(mapId, config); } else if (config.type === "drag-marker") { return new MapDragMarkerController(mapId, config); } return new MapMarkersController(mapId, config); } window.Decidim.createMapController = createMapController;
Version data entries
10 entries across 10 versions & 1 rubygems