decidim-core 0.22.0 → 0.23.3

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of decidim-core might be problematic. Click here for more details.

Files changed (334) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/config/decidim_core_manifest.js +5 -0
  3. data/app/assets/javascripts/decidim.js.es6 +2 -0
  4. data/app/assets/javascripts/decidim/ajax_modals.js.es6 +3 -3
  5. data/app/assets/javascripts/decidim/confirm.js.es6 +3 -2
  6. data/app/assets/javascripts/decidim/core/bundle.js +1 -1
  7. data/app/assets/javascripts/decidim/core/bundle.js.map +1 -1
  8. data/app/assets/javascripts/decidim/diff_mode_dropdown.js.es6 +18 -4
  9. data/app/assets/javascripts/decidim/editor.js.es6 +4 -4
  10. data/app/assets/javascripts/decidim/geocoding.js.es6 +60 -0
  11. data/app/assets/javascripts/decidim/geocoding/attach_input.js.es6 +106 -0
  12. data/app/assets/javascripts/decidim/geocoding/format_address.js.es6 +29 -0
  13. data/app/assets/javascripts/decidim/geocoding/provider/here.js.es6 +107 -0
  14. data/app/assets/javascripts/decidim/geocoding/provider/photon.js.es6 +77 -0
  15. data/app/assets/javascripts/decidim/map.js.es6 +34 -124
  16. data/app/assets/javascripts/decidim/map/controller.js.es6 +92 -0
  17. data/app/assets/javascripts/decidim/map/controller/markers.js.es6 +65 -0
  18. data/app/assets/javascripts/decidim/map/controller/static.es6 +48 -0
  19. data/app/assets/javascripts/decidim/map/factory.js.es6 +51 -0
  20. data/app/assets/javascripts/decidim/map/icon.js.es6 +31 -0
  21. data/app/assets/javascripts/decidim/map/legacy.js.es6 +87 -0
  22. data/app/assets/javascripts/decidim/map/provider/default.js.es6 +22 -0
  23. data/app/assets/javascripts/decidim/map/provider/here.js.es6 +22 -0
  24. data/app/assets/javascripts/decidim/security/selfxss_warning.js.es6 +19 -0
  25. data/app/assets/stylesheets/decidim/_decidim.scss +2 -0
  26. data/app/assets/stylesheets/decidim/layouts/_home.scss +5 -0
  27. data/app/assets/stylesheets/decidim/modules/_cards.scss +15 -0
  28. data/app/assets/stylesheets/decidim/modules/_forms.scss +14 -0
  29. data/app/assets/stylesheets/decidim/modules/_layout.scss +11 -3
  30. data/app/assets/stylesheets/decidim/modules/_map.scss +35 -0
  31. data/app/assets/stylesheets/decidim/modules/_progress-bar.scss +4 -0
  32. data/app/assets/stylesheets/decidim/modules/_reveal.scss +5 -0
  33. data/app/assets/stylesheets/decidim/modules/_status-labels.scss +2 -1
  34. data/app/cells/decidim/author/flag.erb +1 -1
  35. data/app/cells/decidim/author/profile_inline.erb +2 -2
  36. data/app/cells/decidim/author_cell.rb +5 -2
  37. data/app/cells/decidim/card_cell.rb +21 -7
  38. data/app/cells/decidim/card_m/show.erb +1 -1
  39. data/app/cells/decidim/card_m_cell.rb +6 -4
  40. data/app/cells/decidim/collapsible_authors_cell.rb +1 -1
  41. data/app/cells/decidim/content_blocks/sub_hero/show.erb +3 -1
  42. data/app/cells/decidim/diff/diff_mode_html.erb +5 -5
  43. data/app/cells/decidim/follow_button/show.erb +6 -6
  44. data/app/cells/decidim/follow_button_cell.rb +8 -0
  45. data/app/cells/decidim/progress_bar/show.erb +11 -4
  46. data/app/cells/decidim/progress_bar_cell.rb +20 -1
  47. data/app/cells/decidim/tos_page/announcement.erb +0 -1
  48. data/app/cells/decidim/tos_page/form.erb +17 -0
  49. data/app/cells/decidim/translation_bar/show.erb +6 -0
  50. data/app/cells/decidim/translation_bar_cell.rb +52 -0
  51. data/app/cells/decidim/version_cell.rb +1 -1
  52. data/app/cells/decidim/versions_list_cell.rb +1 -1
  53. data/app/commands/decidim/amendable/accept.rb +9 -3
  54. data/app/commands/decidim/amendable/create_draft.rb +2 -0
  55. data/app/commands/decidim/amendable/update_draft.rb +2 -0
  56. data/app/commands/decidim/attachment_methods.rb +20 -5
  57. data/app/commands/decidim/destroy_account.rb +1 -0
  58. data/app/commands/decidim/gallery_methods.rb +16 -9
  59. data/app/commands/decidim/messaging/reply_to_conversation.rb +1 -1
  60. data/app/commands/decidim/multiple_attachments_methods.rb +56 -0
  61. data/app/controllers/concerns/decidim/devise_controllers.rb +1 -0
  62. data/app/controllers/concerns/decidim/filter_resource.rb +24 -6
  63. data/app/controllers/concerns/decidim/flaggable.rb +20 -0
  64. data/app/controllers/concerns/decidim/force_authentication.rb +1 -0
  65. data/app/controllers/concerns/decidim/impersonate_users.rb +1 -1
  66. data/app/controllers/concerns/decidim/needs_snippets.rb +20 -0
  67. data/app/controllers/concerns/decidim/paginable.rb +5 -1
  68. data/app/controllers/concerns/decidim/withdrawable.rb +20 -0
  69. data/app/controllers/decidim/application_controller.rb +16 -0
  70. data/app/controllers/decidim/components/base_controller.rb +6 -1
  71. data/app/controllers/decidim/cookie_policy_controller.rb +6 -3
  72. data/app/controllers/decidim/messaging/conversations_controller.rb +5 -2
  73. data/app/forms/decidim/account_form.rb +5 -1
  74. data/app/forms/decidim/amendable/create_form.rb +1 -1
  75. data/app/forms/decidim/amendable/form.rb +44 -3
  76. data/app/forms/decidim/attachment_form.rb +6 -1
  77. data/app/forms/decidim/user_group_form.rb +5 -1
  78. data/app/helpers/decidim/cells_helper.rb +3 -15
  79. data/app/helpers/decidim/check_boxes_tree_helper.rb +21 -12
  80. data/app/helpers/decidim/cookies_helper.rb +1 -1
  81. data/app/helpers/decidim/decidim_form_helper.rb +1 -1
  82. data/app/helpers/decidim/filter_params_helper.rb +30 -0
  83. data/app/helpers/decidim/map_helper.rb +86 -23
  84. data/app/helpers/decidim/orders_helper.rb +6 -1
  85. data/app/helpers/decidim/paginate_helper.rb +1 -8
  86. data/app/helpers/decidim/sanitize_helper.rb +8 -0
  87. data/app/helpers/decidim/scopes_helper.rb +5 -5
  88. data/app/helpers/decidim/translations_helper.rb +7 -1
  89. data/app/jobs/decidim/data_portability_export_job.rb +3 -3
  90. data/app/jobs/decidim/machine_translation_fields_job.rb +30 -0
  91. data/app/jobs/decidim/machine_translation_resource_job.rb +113 -0
  92. data/app/jobs/decidim/machine_translation_save_job.rb +33 -0
  93. data/app/jobs/decidim/open_data_job.rb +1 -1
  94. data/app/mailers/decidim/application_mailer.rb +1 -0
  95. data/app/mailers/decidim/reported_mailer.rb +8 -1
  96. data/app/models/decidim/action_log.rb +1 -1
  97. data/app/models/decidim/area.rb +3 -0
  98. data/app/models/decidim/area_type.rb +4 -0
  99. data/app/models/decidim/attachment.rb +30 -2
  100. data/app/models/decidim/attachment_collection.rb +3 -0
  101. data/app/models/decidim/authorization.rb +3 -0
  102. data/app/models/decidim/category.rb +4 -0
  103. data/app/models/decidim/component.rb +7 -0
  104. data/app/models/decidim/content_block.rb +11 -1
  105. data/app/models/decidim/contextual_help_section.rb +4 -0
  106. data/app/models/decidim/follow.rb +3 -1
  107. data/app/models/decidim/messaging/message.rb +1 -1
  108. data/app/models/decidim/moderation.rb +1 -1
  109. data/app/models/decidim/newsletter.rb +3 -0
  110. data/app/models/decidim/oauth_application.rb +2 -0
  111. data/app/models/decidim/organization.rb +54 -10
  112. data/app/models/decidim/scope.rb +4 -1
  113. data/app/models/decidim/scope_type.rb +3 -0
  114. data/app/models/decidim/share_token.rb +49 -0
  115. data/app/models/decidim/static_page.rb +4 -1
  116. data/app/models/decidim/static_page_topic.rb +3 -0
  117. data/app/models/decidim/user.rb +11 -3
  118. data/app/models/decidim/user_base_entity.rb +6 -2
  119. data/app/permissions/decidim/permissions.rb +9 -0
  120. data/app/presenters/decidim/admin_log/component_presenter.rb +2 -2
  121. data/app/presenters/decidim/admin_log/moderation_presenter.rb +2 -2
  122. data/app/presenters/decidim/admin_log/organization_presenter.rb +2 -2
  123. data/app/presenters/decidim/admin_log/user_presenter.rb +2 -2
  124. data/app/presenters/decidim/log/base_presenter.rb +10 -2
  125. data/app/presenters/decidim/log/value_types/default_presenter.rb +1 -1
  126. data/app/presenters/decidim/official_author_presenter.rb +36 -0
  127. data/app/presenters/decidim/resource_locator_presenter.rb +63 -12
  128. data/app/queries/decidim/similar_emendations.rb +4 -4
  129. data/app/scrubbers/decidim/newsletter_scrubber.rb +31 -0
  130. data/app/scrubbers/decidim/user_input_scrubber.rb +1 -1
  131. data/app/serializers/decidim/importers/participatory_space_components_importer.rb +1 -1
  132. data/app/services/decidim/base_diff_renderer.rb +17 -0
  133. data/app/services/decidim/open_data_exporter.rb +2 -0
  134. data/app/services/decidim/resource_search.rb +95 -6
  135. data/app/services/decidim/static_map_generator.rb +10 -26
  136. data/app/services/decidim/tokenizer.rb +38 -0
  137. data/app/services/decidim/traceability.rb +3 -0
  138. data/app/uploaders/decidim/application_uploader.rb +19 -1
  139. data/app/uploaders/decidim/attachment_uploader.rb +23 -17
  140. data/app/uploaders/decidim/banner_image_uploader.rb +1 -1
  141. data/app/uploaders/decidim/hero_image_uploader.rb +1 -1
  142. data/app/uploaders/decidim/homepage_image_uploader.rb +1 -1
  143. data/app/uploaders/decidim/image_uploader.rb +6 -2
  144. data/app/uploaders/decidim/oauth_application_logo_uploader.rb +1 -1
  145. data/app/uploaders/decidim/official_image_footer_uploader.rb +1 -1
  146. data/app/uploaders/decidim/official_image_header_uploader.rb +1 -1
  147. data/app/uploaders/decidim/organization_logo_uploader.rb +1 -1
  148. data/app/uploaders/decidim/record_image_uploader.rb +15 -0
  149. data/app/validators/etiquette_validator.rb +0 -7
  150. data/app/validators/geocoding_validator.rb +9 -4
  151. data/app/validators/passthru_validator.rb +111 -0
  152. data/app/validators/scope_belongs_to_component_validator.rb +16 -0
  153. data/app/validators/uploader_content_type_validator.rb +44 -0
  154. data/app/views/decidim/authorization_modals/_content.html.erb +2 -2
  155. data/app/views/decidim/devise/registrations/new.html.erb +3 -1
  156. data/app/views/decidim/devise/sessions/new.html.erb +3 -1
  157. data/app/views/decidim/messaging/conversations/_error_modal.html.erb +21 -0
  158. data/app/views/decidim/messaging/conversations/error.js.erb +10 -0
  159. data/app/views/decidim/newsletter_mailer/newsletter.html.erb +1 -1
  160. data/app/views/decidim/notification_mailer/event_received.html.erb +2 -2
  161. data/app/views/decidim/pages/_standalone.html.erb +1 -1
  162. data/app/views/decidim/pages/_tabbed.html.erb +1 -1
  163. data/app/views/decidim/reported_mailer/report.html.erb +49 -3
  164. data/app/views/decidim/scopes/_scopes_picker_input.html.erb +15 -14
  165. data/app/views/decidim/searches/_filters.html.erb +1 -0
  166. data/app/views/decidim/shared/_login_modal.html.erb +14 -3
  167. data/app/views/decidim/shared/_static_map.html.erb +1 -1
  168. data/app/views/layouts/decidim/_head.html.erb +2 -0
  169. data/app/views/layouts/decidim/_js_configuration.html.erb +7 -1
  170. data/config/locales/am-ET.yml +1 -0
  171. data/config/locales/ar.yml +3 -4
  172. data/config/locales/bg.yml +1508 -0
  173. data/config/locales/ca.yml +36 -9
  174. data/config/locales/cs.yml +54 -27
  175. data/config/locales/da.yml +1 -0
  176. data/config/locales/de.yml +156 -128
  177. data/config/locales/el.yml +0 -4
  178. data/config/locales/en.yml +30 -3
  179. data/config/locales/eo.yml +92 -0
  180. data/config/locales/es-MX.yml +29 -2
  181. data/config/locales/es-PY.yml +28 -1
  182. data/config/locales/es.yml +44 -17
  183. data/config/locales/et.yml +1 -0
  184. data/config/locales/eu.yml +9 -4
  185. data/config/locales/fi-plain.yml +28 -1
  186. data/config/locales/fi.yml +34 -7
  187. data/config/locales/fr-CA.yml +32 -4
  188. data/config/locales/fr.yml +65 -37
  189. data/config/locales/ga-IE.yml +0 -8
  190. data/config/locales/gl.yml +10 -5
  191. data/config/locales/hr.yml +1 -0
  192. data/config/locales/hu.yml +7 -5
  193. data/config/locales/id-ID.yml +3 -4
  194. data/config/locales/is-IS.yml +3 -9
  195. data/config/locales/is.yml +463 -0
  196. data/config/locales/it.yml +37 -9
  197. data/config/locales/ja-JP.yml +25 -16
  198. data/config/locales/ja.yml +1605 -0
  199. data/config/locales/ko-KR.yml +1 -0
  200. data/config/locales/ko.yml +1 -0
  201. data/config/locales/lt.yml +1 -0
  202. data/config/locales/{lv-LV.yml → lv.yml} +2 -5
  203. data/config/locales/mt.yml +1 -0
  204. data/config/locales/nl.yml +34 -12
  205. data/config/locales/no.yml +150 -8
  206. data/config/locales/om-ET.yml +1 -0
  207. data/config/locales/pl.yml +89 -72
  208. data/config/locales/pt-BR.yml +4 -5
  209. data/config/locales/pt.yml +10 -4
  210. data/config/locales/ro-RO.yml +10 -4
  211. data/config/locales/ru.yml +3 -10
  212. data/config/locales/si-LK.yml +1 -0
  213. data/config/locales/sk.yml +3 -5
  214. data/config/locales/sl.yml +8 -7
  215. data/config/locales/so-SO.yml +1 -0
  216. data/config/locales/sr-CS.yml +0 -9
  217. data/config/locales/sv.yml +19 -8
  218. data/config/locales/sw-KE.yml +1 -0
  219. data/config/locales/ti-ER.yml +1 -0
  220. data/config/locales/tr-TR.yml +588 -247
  221. data/config/locales/uk.yml +3 -11
  222. data/config/locales/vi-VN.yml +1 -0
  223. data/config/locales/vi.yml +1 -0
  224. data/config/locales/zh-CN.yml +1584 -0
  225. data/config/locales/zh-TW.yml +1 -0
  226. data/db/migrate/20200525184143_add_enable_machine_translation_to_decidim_organizations.rb +7 -0
  227. data/db/migrate/20200702073419_create_decidim_share_tokens.rb +16 -0
  228. data/db/migrate/20200707132401_add_comments_max_length_to_decidim_organization.rb +7 -0
  229. data/db/migrate/20200730142511_add_file_upload_settings_to_decidim_organizations.rb +36 -0
  230. data/db/migrate/20200806092109_add_machine_translation_display_priority_to_organizations.rb +17 -0
  231. data/db/migrate/20201004160335_remove_notifications_with_continuity_badge.rb +9 -0
  232. data/db/seeds.rb +12 -6
  233. data/lib/decidim/authorable.rb +22 -1
  234. data/lib/decidim/authorization_form_builder.rb +7 -0
  235. data/lib/decidim/coauthorable.rb +22 -0
  236. data/lib/decidim/component_manifest.rb +1 -1
  237. data/lib/decidim/content_processor.rb +52 -29
  238. data/lib/decidim/content_renderers/base_renderer.rb +1 -1
  239. data/lib/decidim/content_renderers/hashtag_renderer.rb +2 -0
  240. data/lib/decidim/content_renderers/link_renderer.rb +4 -1
  241. data/lib/decidim/content_renderers/user_group_renderer.rb +3 -1
  242. data/lib/decidim/content_renderers/user_renderer.rb +3 -1
  243. data/lib/decidim/core.rb +67 -12
  244. data/lib/decidim/core/engine.rb +65 -21
  245. data/lib/decidim/core/test.rb +8 -0
  246. data/lib/decidim/core/test/factories.rb +34 -8
  247. data/lib/decidim/core/test/shared_examples/admin_log_presenter_examples.rb +34 -0
  248. data/lib/decidim/core/test/shared_examples/amendable/accept_amendment_examples.rb +4 -4
  249. data/lib/decidim/core/test/shared_examples/amendable_proposals_interface_examples.rb +8 -8
  250. data/lib/decidim/core/test/shared_examples/comments_examples.rb +52 -1
  251. data/lib/decidim/core/test/shared_examples/counts_commentators_as_newsletter_participants.rb +31 -0
  252. data/lib/decidim/core/test/shared_examples/embed_resource_examples.rb +49 -0
  253. data/lib/decidim/core/test/shared_examples/follows_examples.rb +3 -3
  254. data/lib/decidim/core/test/shared_examples/manage_component_share_tokens.rb +83 -0
  255. data/lib/decidim/core/test/shared_examples/map_examples.rb +186 -0
  256. data/lib/decidim/core/test/shared_examples/preview_component_with_share_token_examples.rb +55 -0
  257. data/lib/decidim/core/test/shared_examples/resource_search_examples.rb +200 -0
  258. data/lib/decidim/core/test/shared_examples/scopable_resource_examples.rb +43 -0
  259. data/lib/decidim/core/test/shared_examples/scope_helper_examples.rb +12 -1
  260. data/lib/decidim/core/test/shared_examples/searchable_participatory_space_examples.rb +2 -2
  261. data/lib/decidim/core/test/shared_examples/searchable_results_examples.rb +15 -2
  262. data/lib/decidim/core/test/shared_examples/simple_event.rb +7 -0
  263. data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +1 -0
  264. data/lib/decidim/core/test/shared_examples/traceable_interface_examples.rb +1 -1
  265. data/lib/decidim/core/test/shared_examples/uncommentable_component_examples.rb +1 -1
  266. data/lib/decidim/core/version.rb +1 -1
  267. data/lib/decidim/diffy_extension.rb +21 -0
  268. data/lib/decidim/events/base_event.rb +29 -11
  269. data/lib/decidim/exporters.rb +7 -0
  270. data/lib/decidim/exporters/csv.rb +15 -1
  271. data/lib/decidim/exporters/excel.rb +1 -1
  272. data/lib/decidim/exporters/export_manifest.rb +29 -0
  273. data/lib/decidim/exporters/pdf.rb +56 -0
  274. data/lib/decidim/file_validator_humanizer.rb +98 -0
  275. data/lib/decidim/form_builder.rb +68 -56
  276. data/lib/decidim/geocodable.rb +79 -0
  277. data/lib/decidim/has_attachments.rb +10 -0
  278. data/lib/decidim/has_private_users.rb +1 -1
  279. data/lib/decidim/has_upload_validations.rb +36 -0
  280. data/lib/decidim/map.rb +214 -0
  281. data/lib/decidim/map/autocomplete.rb +67 -0
  282. data/lib/decidim/map/dynamic_map.rb +89 -0
  283. data/lib/decidim/map/frontend.rb +97 -0
  284. data/lib/decidim/map/geocoding.rb +115 -0
  285. data/lib/decidim/map/provider.rb +12 -0
  286. data/lib/decidim/map/provider/autocomplete/here.rb +20 -0
  287. data/lib/decidim/map/provider/autocomplete/osm.rb +20 -0
  288. data/lib/decidim/map/provider/dynamic_map/here.rb +51 -0
  289. data/lib/decidim/map/provider/dynamic_map/osm.rb +13 -0
  290. data/lib/decidim/map/provider/geocoding/here.rb +58 -0
  291. data/lib/decidim/map/provider/geocoding/osm.rb +30 -0
  292. data/lib/decidim/map/provider/here.rb +21 -0
  293. data/lib/decidim/map/provider/osm.rb +22 -0
  294. data/lib/decidim/map/provider/static_map/here.rb +35 -0
  295. data/lib/decidim/map/provider/static_map/osm.rb +29 -0
  296. data/lib/decidim/map/static_map.rb +133 -0
  297. data/lib/decidim/map/utility.rb +38 -0
  298. data/lib/decidim/newsletter_participant.rb +2 -4
  299. data/lib/decidim/organization_settings.rb +267 -0
  300. data/lib/decidim/paddable.rb +11 -4
  301. data/lib/decidim/resource_manifest.rb +1 -1
  302. data/lib/decidim/scopable.rb +9 -6
  303. data/lib/decidim/scopable_component.rb +29 -1
  304. data/lib/decidim/scopable_participatory_space.rb +19 -0
  305. data/lib/decidim/scopable_resource.rb +21 -0
  306. data/lib/decidim/search_resource_fields_mapper.rb +17 -4
  307. data/lib/decidim/searchable.rb +6 -0
  308. data/lib/decidim/settings_manifest.rb +2 -1
  309. data/lib/decidim/shareable_with_token.rb +27 -0
  310. data/lib/decidim/snippets.rb +30 -0
  311. data/lib/decidim/translatable_attributes.rb +42 -4
  312. data/lib/decidim/translatable_resource.rb +78 -0
  313. data/lib/decidim/view_model.rb +1 -0
  314. data/lib/premailer/adapter/decidim.rb +33 -0
  315. data/lib/tasks/decidim_locales_tasks.rake +35 -0
  316. data/lib/tasks/decidim_tasks.rake +1 -0
  317. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.bg.js +14 -0
  318. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.da.js +14 -0
  319. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.eo.js +17 -0
  320. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.et.js +18 -0
  321. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.fr-CA.js +16 -0
  322. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ga.js +15 -0
  323. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.hr.js +13 -0
  324. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.is.js +14 -0
  325. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ja.js +16 -0
  326. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lt.js +16 -0
  327. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.lv.js +17 -0
  328. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.mt.js +15 -0
  329. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sl.js +14 -0
  330. data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sr.js +16 -0
  331. metadata +149 -30
  332. data/app/cells/decidim/tos_page/sticky_form.erb +0 -29
  333. data/app/helpers/decidim/multi_translation_helper.rb +0 -0
  334. data/lib/decidim/hashtaggable.rb +0 -24
@@ -0,0 +1,51 @@
1
+ // = require decidim/map/controller
2
+ // = require decidim/map/controller/markers
3
+ // = require decidim/map/controller/static
4
+ // = require_self
5
+
6
+ ((exports) => {
7
+ exports.Decidim = exports.Decidim || {};
8
+
9
+ const { MapMarkersController, MapStaticController } = exports.Decidim;
10
+
11
+ /**
12
+ * A factory method that creates a new map controller instance. This method
13
+ * can be overridden in order to return different types of maps for
14
+ * differently configured map elements.
15
+ *
16
+ * For instance, one map could pass an extra `type` configuration with the
17
+ * value "custom" for the map element, this factory method would identify
18
+ * it and then return a different controller for that map than the default.
19
+ * This would allow this types of maps to function differently.
20
+ *
21
+ * An example how to use in the ERB view:
22
+ * <%= dynamic_map_for type: "custom" do %>
23
+ * <%= javascript_include_tag "map_customization" %>
24
+ * <% end %>
25
+ *
26
+ * And then the actual customization at `map_customization.js.es6`:
27
+ * var originalCreateMapController = window.Decidim.createMapController;
28
+ * window.Decidim.createMapController = (mapId, config) => {
29
+ * if (config.type === "custom") {
30
+ * // Obviously you need to implement CustomMapController for this to
31
+ * // work.
32
+ * return new window.Decidim.CustomMapController(mapId, config);
33
+ * }
34
+ *
35
+ * return originalCreateMapController(mapId, config);
36
+ * }
37
+ *
38
+ * @param {string} mapId The ID of the map element.
39
+ * @param {Object} config The map configuration object.
40
+ * @returns {MapController} The controller for the map.
41
+ */
42
+ const createMapController = (mapId, config) => {
43
+ if (config.type === "static") {
44
+ return new MapStaticController(mapId, config);
45
+ }
46
+
47
+ return new MapMarkersController(mapId, config);
48
+ }
49
+
50
+ exports.Decidim.createMapController = createMapController;
51
+ })(window);
@@ -0,0 +1,31 @@
1
+ ((exports) => {
2
+ const L = exports.L; // eslint-disable-line
3
+
4
+ L.DivIcon.SVGIcon.DecidimIcon = L.DivIcon.SVGIcon.extend({
5
+ options: {
6
+ fillColor: "#ef604d",
7
+ opacity: 0
8
+ },
9
+ _createPathDescription: function() {
10
+ return "M14 1.17a11.685 11.685 0 0 0-11.685 11.685c0 11.25 10.23 20.61 10.665 21a1.5 1.5 0 0 0 2.025 0c0.435-.435 10.665-9.81 10.665-21A11.685 11.685 0 0 0 14 1.17Zm0 17.415A5.085 5.085 0 1 1 19.085 13.5 5.085 5.085 0 0 1 14 18.585Z";
11
+ },
12
+ _createCircle: function() {
13
+ return ""
14
+ },
15
+ // Improved version of the _createSVG, essentially the same as in later
16
+ // versions of Leaflet. It adds the `px` values after the width and height
17
+ // CSS making the focus borders work correctly across all browsers.
18
+ _createSVG: function() {
19
+ const path = this._createPath();
20
+ const circle = this._createCircle();
21
+ const text = this._createText();
22
+ const className = `${this.options.className}-svg`;
23
+
24
+ const style = `width:${this.options.iconSize.x}px; height:${this.options.iconSize.y}px;`;
25
+
26
+ const svg = `<svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="${className}" style="${style}">${path}${circle}${text}</svg>`;
27
+
28
+ return svg;
29
+ }
30
+ });
31
+ })(window);
@@ -0,0 +1,87 @@
1
+ // = require leaflet
2
+ // = require leaflet-tilelayer-here
3
+ // = require leaflet-svg-icon
4
+ // = require leaflet.markercluster
5
+ // = require decidim/map/factory
6
+ // = require_self
7
+
8
+ /**
9
+ * @deprecated
10
+ *
11
+ * This adds support for the legacy style of map configuration and the methods
12
+ * available globally. This is not really needed unless someone is still relying
13
+ * on these methods or the have customizations that are hard to update.
14
+ */
15
+ ((exports) => {
16
+ exports.Decidim = exports.Decidim || {};
17
+
18
+ const legacyMapSupport = ($map) => {
19
+ const hereAppId = $map.data("here-app-id");
20
+ const hereAppCode = $map.data("here-app-code");
21
+ const hereApiKey = $map.data("here-api-key");
22
+
23
+ let mapApiConfig = null;
24
+ if (hereApiKey) {
25
+ mapApiConfig = { apiKey: hereApiKey };
26
+ } else if (hereAppId && hereAppCode) {
27
+ mapApiConfig = {
28
+ appId: hereAppId,
29
+ appCode: hereAppCode
30
+ };
31
+ } else {
32
+ throw new Error("Legacy map support: Please provide the HERE API configuration");
33
+ }
34
+
35
+ const markersData = $map.data("markers-data");
36
+
37
+ let markerColor = getComputedStyle(document.documentElement).getPropertyValue("--primary");
38
+ if (!markerColor || markerColor.length < 1) {
39
+ markerColor = "#ef604d";
40
+ }
41
+
42
+ // Configure the map element with the new style
43
+ const mapConfig = {
44
+ markerColor,
45
+ popupTemplateId: "marker-popup",
46
+ markers: markersData,
47
+ tileLayer: mapApiConfig
48
+ }
49
+
50
+ $map.data("decidim-map", mapConfig);
51
+
52
+ exports.Decidim.mapConfiguration = $.extend({
53
+ markerColor: markerColor
54
+ }, mapApiConfig);
55
+ };
56
+
57
+ const loadMap = (mapId, markersData) => {
58
+ // Allow the configured map service to configure the map, e.g. attaching the
59
+ // tile layer to the map.
60
+ const $map = $(`#${mapId}`);
61
+ $map.data("markers-data", markersData);
62
+ legacyMapSupport($map);
63
+
64
+ const mapData = $map.data("decidim-map");
65
+ const ctrl = exports.Decidim.createMapController(mapId, mapData);
66
+ const map = ctrl.load();
67
+
68
+ L.tileLayer.here(mapData.tileLayer).addTo(map);
69
+
70
+ ctrl.start();
71
+
72
+ exports.Decidim.currentMap = map;
73
+
74
+ return map;
75
+ };
76
+
77
+ $(() => {
78
+ const $map = $("#map");
79
+ if ($map.length > 0) {
80
+ loadMap($map.attr("id"), $map.data("markers-data"));
81
+ }
82
+ });
83
+
84
+ exports.Decidim.loadMap = loadMap;
85
+ exports.Decidim.currentMap = null;
86
+ exports.Decidim.mapConfiguration = {};
87
+ })(window);
@@ -0,0 +1,22 @@
1
+ // = require leaflet
2
+ // = require leaflet-svg-icon
3
+ // = require leaflet.markercluster
4
+ // = require_self
5
+ // = require decidim/map
6
+
7
+ /**
8
+ * NOTE:
9
+ * This has to load before decidim/map in order for it to apply correctly when
10
+ * the map is initialized. The document.ready handler set by this script has to
11
+ * be registered before decidim/map registers its own.
12
+ */
13
+ ((exports) => {
14
+ const $ = exports.$; // eslint-disable-line
15
+
16
+ $(() => {
17
+ $("[data-decidim-map]").on("configure.decidim", (_ev, map, mapConfig) => {
18
+ const tilesConfig = mapConfig.tileLayer;
19
+ L.tileLayer(tilesConfig.url, tilesConfig.options).addTo(map);
20
+ });
21
+ });
22
+ })(window);
@@ -0,0 +1,22 @@
1
+ // = require leaflet
2
+ // = require leaflet-tilelayer-here
3
+ // = require leaflet-svg-icon
4
+ // = require leaflet.markercluster
5
+ // = require_self
6
+ // = require decidim/map
7
+
8
+ /**
9
+ * NOTE:
10
+ * This has to load before decidim/map in order for it to apply correctly when
11
+ * the map is initialized. The document.ready handler set by this script has to
12
+ * be registered before decidim/map registers its own.
13
+ */
14
+ ((exports) => {
15
+ const $ = exports.$; // eslint-disable-line
16
+
17
+ $(() => {
18
+ $("[data-decidim-map]").on("configure.decidim", (_ev, map, mapConfig) => {
19
+ L.tileLayer.here(mapConfig.tileLayer).addTo(map);
20
+ });
21
+ });
22
+ })(window);
@@ -0,0 +1,19 @@
1
+ ((exports) => {
2
+ const console = exports.console;
3
+
4
+ if (!console) {
5
+ return;
6
+ }
7
+
8
+ $(() => {
9
+ const config = exports.Decidim.config;
10
+ const allMessages = config.get("messages");
11
+ if (!allMessages) {
12
+ return;
13
+ }
14
+ const messages = allMessages.selfxssWarning;
15
+
16
+ console.log(`%c${messages.title}`, "color:#f00;font-weight:bold;font-size:50px;");
17
+ console.log(`%c${messages.description}`, "font-size:24px;");
18
+ });
19
+ })(window)
@@ -5,6 +5,8 @@
5
5
  @import "decidim/utils/settings";
6
6
 
7
7
  @include foundation-everything($flex: false);
8
+ @include foundation-prototype-display;
9
+ @include foundation-prototype-spacing;
8
10
 
9
11
  @import "decidim/utils/fontface";
10
12
  @import "decidim/utils/helpers";
@@ -195,6 +195,11 @@
195
195
  padding: 4rem 0;
196
196
  text-align: center;
197
197
 
198
+ ul,
199
+ ol{
200
+ list-style-position: inside;
201
+ }
202
+
198
203
  .heading3{
199
204
  @include breakpoint(medium down){
200
205
  font-size: 1.3em;
@@ -1084,3 +1084,18 @@ a .card__title{
1084
1084
  }
1085
1085
  }
1086
1086
  }
1087
+
1088
+ // card row
1089
+ .card__row{
1090
+ @include flex;
1091
+ @include flex-align($x: left, $y: null);
1092
+
1093
+ > *{
1094
+ padding: $global-margin;
1095
+ flex: 0 0 25%;
1096
+
1097
+ &:not(:nth-child(4n)){
1098
+ border-right: $card-border;
1099
+ }
1100
+ }
1101
+ }
@@ -18,6 +18,20 @@ $help-text-margin-top: ($form-spacing * .5) * -1;
18
18
  padding: .5rem 1rem;
19
19
  }
20
20
 
21
+ label,
22
+ .field{
23
+ &.has-tribute{
24
+ position: relative;
25
+
26
+ .tribute-container{
27
+ top: auto;
28
+ margin-top: -$form-spacing;
29
+ max-width: none;
30
+ width: 100%;
31
+ }
32
+ }
33
+ }
34
+
21
35
  .help-text{
22
36
  display: block;
23
37
  line-height: 1.2;
@@ -13,15 +13,15 @@
13
13
  }
14
14
 
15
15
  .wrapper-mini{
16
- padding: 1.2rem 1rem;
16
+ padding: 1.2rem 1rem 0;
17
17
  position: relative;
18
18
 
19
19
  @include breakpoint(medium){
20
- padding: 2rem 1.5rem;
20
+ padding: 2rem 1.5rem 0;
21
21
  }
22
22
 
23
23
  @include breakpoint(large){
24
- padding: 3rem 4rem;
24
+ padding: 3rem 4rem 0;
25
25
  }
26
26
  }
27
27
 
@@ -72,3 +72,11 @@ body{
72
72
  margin-right: -.5rem;
73
73
  }
74
74
  }
75
+
76
+ .translation-bar{
77
+ a.button{
78
+ margin-bottom: 0;
79
+ margin-top: -4px;
80
+ margin-right: 5px;
81
+ }
82
+ }
@@ -93,3 +93,38 @@
93
93
  min-width: 12em;
94
94
  }
95
95
  }
96
+
97
+ .static-map{
98
+ cursor: pointer;
99
+ height: 120px;
100
+ width: 120px;
101
+
102
+ .leaflet-popup-pane,
103
+ .leaflet-control{
104
+ cursor: pointer;
105
+ }
106
+
107
+ &:focus{
108
+ outline: $anchor-outline-focus;
109
+ outline-color: var(--highlight);
110
+ outline-offset: $anchor-outline-offset;
111
+ }
112
+
113
+ &,
114
+ .leaflet-control-attribution{
115
+ a{
116
+ &:hover,
117
+ &:focus{
118
+ text-decoration: none;
119
+ outline: none;
120
+ }
121
+ }
122
+ }
123
+
124
+ &,
125
+ &.leaflet-touch{
126
+ .leaflet-control-attribution{
127
+ font-size: .55rem;
128
+ }
129
+ }
130
+ }
@@ -66,4 +66,8 @@
66
66
  text-transform: uppercase;
67
67
  }
68
68
  }
69
+
70
+ &.progress__bar--horizontal{
71
+ margin-bottom: .35rem;
72
+ }
69
73
  }
@@ -26,6 +26,11 @@
26
26
  display: flex;
27
27
  justify-content: center;
28
28
  padding: 10px 0 50px; // bottom padding is needed to avoid hiding buttons on mobiles because of https://stackoverflow.com/questions/37112218/css3-100vh-not-constant-in-mobile-browser
29
+
30
+ @include breakpoint(medium){
31
+ padding-bottom: 0;
32
+ margin-bottom: -1rem;
33
+ }
29
34
  }
30
35
  }
31
36
 
@@ -11,7 +11,8 @@
11
11
  }
12
12
 
13
13
  .proposal-status,
14
- .collaborative-draft-status{
14
+ .collaborative-draft-status,
15
+ .project-status{
15
16
  float: left;
16
17
  margin-right: .5rem;
17
18
  }
@@ -1,4 +1,4 @@
1
- <% if flagable? %>
1
+ <% if flaggable? %>
2
2
  <button type="button" class="link-alt" data-open="<%= current_user.present? ? "flagModal" : "loginModal" %>" title="<%= t("report", scope: "decidim.proposals.proposals.show") %>" aria-controls="<%= current_user.present? ? "flagModal" : "loginModal" %>" aria-haspopup="true" tabindex="0">
3
3
  <%= icon "flag", aria_hidden: true, class: "icon--small", role: "img", "aria-hidden": true %>
4
4
  <span class="show-for-sr">
@@ -18,7 +18,7 @@
18
18
  data-allow-html="true"
19
19
  data-template-classes="light expanded"
20
20
  data-tip-text='<%= h render(:profile_minicard) %>'>
21
- <%= model.name %>
21
+ <%= author_name %>
22
22
  </span>
23
23
 
24
24
  <% if model.badge.present? %>
@@ -28,7 +28,7 @@
28
28
  <% end %>
29
29
  <% else %>
30
30
  <span class="author__name">
31
- <%= model.name %>
31
+ <%= author_name %>
32
32
  </span>
33
33
 
34
34
  <% if model.badge.present? %>
@@ -18,6 +18,10 @@ module Decidim
18
18
 
19
19
  delegate :current_user, to: :controller, prefix: false
20
20
 
21
+ def author_name
22
+ options[:author_name_text] || model.name
23
+ end
24
+
21
25
  def show
22
26
  render
23
27
  end
@@ -56,7 +60,6 @@ module Decidim
56
60
 
57
61
  def creation_date?
58
62
  return unless from_context
59
- return unless proposals_controller? || collaborative_drafts_controller? || posts_controller?
60
63
  return unless show_action? && (from_context.respond_to?(:published_at) || from_context.respond_to?(:created_at))
61
64
 
62
65
  true
@@ -83,7 +86,7 @@ module Decidim
83
86
  def actionable?
84
87
  return false if options[:has_actions] == false
85
88
 
86
- (user_author? && posts_controller?) || withdrawable? || flagable?
89
+ withdrawable? || flaggable?
87
90
  end
88
91
 
89
92
  def user_author?