decidim 0.0.1 → 0.0.2

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

Potentially problematic release.


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

Files changed (313) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +4 -5
  3. data/.eslintignore +2 -0
  4. data/.eslintrc.json +2 -0
  5. data/.gitignore +1 -0
  6. data/.inch.yml +5 -0
  7. data/.mention-bot +8 -0
  8. data/.rubocop.yml +8 -31
  9. data/.ruby-version +1 -1
  10. data/.travis.yml +24 -14
  11. data/Dockerfile +1 -3
  12. data/Gemfile +1 -3
  13. data/Gemfile.lock +175 -138
  14. data/README.md +63 -5
  15. data/Rakefile +1 -1
  16. data/codecov.yml +1 -0
  17. data/decidim-admin/Rakefile +1 -1
  18. data/decidim-admin/app/assets/javascripts/decidim/admin/application.js.es6 +0 -1
  19. data/decidim-admin/app/assets/stylesheets/decidim/admin/_foundation_and_overrides.scss +1 -0
  20. data/decidim-admin/app/assets/stylesheets/decidim/admin/_icons.scss +9 -0
  21. data/decidim-admin/app/assets/stylesheets/decidim/admin/application.scss +1 -0
  22. data/decidim-admin/app/commands/decidim/admin/create_feature.rb +3 -1
  23. data/decidim-admin/app/commands/decidim/admin/create_participatory_process.rb +26 -14
  24. data/decidim-admin/app/commands/decidim/admin/destroy_feature.rb +5 -0
  25. data/decidim-admin/app/commands/decidim/admin/destroy_participatory_process_step.rb +29 -0
  26. data/decidim-admin/app/commands/decidim/admin/update_feature.rb +47 -0
  27. data/decidim-admin/app/commands/decidim/admin/update_organization.rb +3 -1
  28. data/decidim-admin/app/controllers/decidim/admin/features_controller.rb +37 -2
  29. data/decidim-admin/app/controllers/decidim/admin/participatory_process_step_activations_controller.rb +0 -16
  30. data/decidim-admin/app/controllers/decidim/admin/participatory_process_steps_controller.rb +10 -3
  31. data/decidim-admin/app/controllers/decidim/admin/static_pages_controller.rb +4 -4
  32. data/decidim-admin/app/controllers/decidim/admin/user_groups_controller.rb +32 -0
  33. data/decidim-admin/app/controllers/decidim/admin/users_controller.rb +87 -0
  34. data/decidim-admin/app/forms/decidim/admin/category_form.rb +1 -7
  35. data/decidim-admin/app/forms/decidim/admin/feature_form.rb +26 -0
  36. data/decidim-admin/app/forms/decidim/admin/organization_form.rb +2 -0
  37. data/decidim-admin/app/forms/decidim/admin/participatory_process_step_form.rb +1 -1
  38. data/decidim-admin/app/forms/decidim/admin/static_page_form.rb +2 -3
  39. data/decidim-admin/app/models/decidim/admin/abilities/admin_user.rb +6 -0
  40. data/decidim-admin/app/views/decidim/admin/features/_feature.html.erb +4 -1
  41. data/decidim-admin/app/views/decidim/admin/features/_form.html.erb +49 -0
  42. data/decidim-admin/app/views/decidim/admin/features/_settings_fields.html.erb +5 -0
  43. data/decidim-admin/app/views/decidim/admin/features/edit.html.erb +9 -0
  44. data/decidim-admin/app/views/decidim/admin/features/index.html.erb +6 -0
  45. data/decidim-admin/app/views/decidim/admin/features/new.html.erb +1 -1
  46. data/decidim-admin/app/views/decidim/admin/organization/_form.html.erb +8 -0
  47. data/decidim-admin/app/views/decidim/admin/participatory_process_attachments/_form.html.erb +1 -1
  48. data/decidim-admin/app/views/decidim/admin/participatory_process_steps/index.html.erb +2 -6
  49. data/decidim-admin/app/views/decidim/admin/user_groups/index.html.erb +32 -0
  50. data/decidim-admin/app/views/decidim/admin/users/_form.html.erb +6 -0
  51. data/decidim-admin/app/views/decidim/admin/users/index.html.erb +54 -0
  52. data/decidim-admin/app/views/decidim/admin/users/new.html.erb +11 -0
  53. data/decidim-admin/app/views/layouts/decidim/admin/_sidebar.html.erb +2 -0
  54. data/decidim-admin/app/views/layouts/decidim/admin/participatory_process.html.erb +1 -1
  55. data/decidim-admin/config/i18n-tasks.yml +1 -0
  56. data/decidim-admin/config/locales/ca.yml +103 -5
  57. data/decidim-admin/config/locales/en.yml +57 -4
  58. data/decidim-admin/config/locales/es.yml +103 -5
  59. data/decidim-admin/config/routes.rb +11 -0
  60. data/decidim-admin/decidim-admin.gemspec +2 -3
  61. data/decidim-admin/lib/decidim/admin/features/base_controller.rb +7 -3
  62. data/decidim-admin/lib/decidim/admin/test/factories.rb +8 -0
  63. data/decidim-admin/spec/commands/create_category_spec.rb +2 -1
  64. data/decidim-admin/spec/commands/create_feature_spec.rb +21 -2
  65. data/decidim-admin/spec/commands/create_participatory_process_spec.rb +13 -1
  66. data/decidim-admin/spec/commands/create_static_page_spec.rb +1 -1
  67. data/decidim-admin/spec/commands/destroy_participatory_process_step_spec.rb +45 -0
  68. data/decidim-admin/spec/commands/update_category_spec.rb +2 -1
  69. data/decidim-admin/spec/commands/update_feature_spec.rb +79 -0
  70. data/decidim-admin/spec/commands/update_organization_spec.rb +3 -2
  71. data/decidim-admin/spec/commands/update_static_page_spec.rb +3 -2
  72. data/decidim-admin/spec/factories.rb +2 -9
  73. data/decidim-admin/spec/features/admin_manages_features_spec.rb +84 -2
  74. data/decidim-admin/spec/features/admin_manages_organization_admins_spec.rb +71 -0
  75. data/decidim-admin/spec/features/admin_manages_user_groups_spec.rb +24 -0
  76. data/decidim-admin/spec/forms/category_form_spec.rb +3 -7
  77. data/decidim-admin/spec/forms/organization_form_spec.rb +8 -2
  78. data/decidim-admin/spec/forms/participatory_process_form_spec.rb +2 -1
  79. data/decidim-admin/spec/forms/participatory_process_step_form_spec.rb +2 -21
  80. data/decidim-admin/spec/forms/scope_form_spec.rb +1 -1
  81. data/decidim-admin/spec/forms/static_page_form_spec.rb +2 -7
  82. data/decidim-admin/spec/models/abilities/admin_user_spec.rb +22 -0
  83. data/decidim-admin/spec/shared/manage_process_attachments_examples.rb +2 -1
  84. data/decidim-admin/spec/shared/manage_process_steps_examples.rb +2 -15
  85. data/decidim-admin/spec/spec_helper.rb +3 -1
  86. data/decidim-api/Rakefile +1 -1
  87. data/decidim-api/decidim-api.gemspec +3 -3
  88. data/decidim-api/spec/factories.rb +2 -2
  89. data/decidim-api/spec/spec_helper.rb +3 -1
  90. data/decidim-comments/Rakefile +1 -1
  91. data/decidim-comments/app/assets/javascripts/decidim/comments/bundle.js +0 -0
  92. data/decidim-comments/app/commands/decidim/comments/vote_comment.rb +38 -0
  93. data/decidim-comments/app/frontend/application/icon.component.jsx +9 -4
  94. data/decidim-comments/app/frontend/application/icon.component.test.jsx +12 -2
  95. data/decidim-comments/app/frontend/comments/add_comment_form.component.jsx +43 -11
  96. data/decidim-comments/app/frontend/comments/add_comment_form.mutation.graphql +1 -4
  97. data/decidim-comments/app/frontend/comments/comment.component.jsx +67 -7
  98. data/decidim-comments/app/frontend/comments/comment.component.test.jsx +49 -1
  99. data/decidim-comments/app/frontend/comments/comment_data.fragment.graphql +3 -0
  100. data/decidim-comments/app/frontend/comments/comment_order_selector.component.jsx +51 -6
  101. data/decidim-comments/app/frontend/comments/comment_order_selector.component.test.jsx +12 -1
  102. data/decidim-comments/app/frontend/comments/comment_thread.component.jsx +11 -5
  103. data/decidim-comments/app/frontend/comments/comment_thread.component.test.jsx +13 -3
  104. data/decidim-comments/app/frontend/comments/comment_thread.fragment.graphql +1 -3
  105. data/decidim-comments/app/frontend/comments/comments.component.jsx +37 -11
  106. data/decidim-comments/app/frontend/comments/comments.component.test.jsx +44 -7
  107. data/decidim-comments/app/frontend/comments/comments.query.graphql +2 -2
  108. data/decidim-comments/app/frontend/comments/down_vote.fragment.graphql +6 -0
  109. data/decidim-comments/app/frontend/comments/down_vote.mutation.graphql +7 -0
  110. data/decidim-comments/app/frontend/comments/down_vote_button.component.jsx +84 -0
  111. data/decidim-comments/app/frontend/comments/down_vote_button.component.test.jsx +48 -0
  112. data/decidim-comments/app/frontend/comments/up_vote.fragment.graphql +6 -0
  113. data/decidim-comments/app/frontend/comments/up_vote.mutation.graphql +7 -0
  114. data/decidim-comments/app/frontend/comments/up_vote_button.component.jsx +84 -0
  115. data/decidim-comments/app/frontend/comments/up_vote_button.component.test.jsx +48 -0
  116. data/decidim-comments/app/frontend/comments/vote_button.component.jsx +19 -0
  117. data/decidim-comments/app/frontend/comments/vote_button_component.test.jsx +38 -0
  118. data/decidim-comments/app/frontend/support/generate_comments_data.js +7 -2
  119. data/decidim-comments/app/helpers/decidim/comments/comments_helper.rb +1 -1
  120. data/decidim-comments/app/models/decidim/comments/application_record.rb +9 -0
  121. data/decidim-comments/app/models/decidim/comments/comment.rb +19 -4
  122. data/decidim-comments/app/models/decidim/comments/comment_vote.rb +22 -0
  123. data/decidim-comments/app/models/decidim/comments/seed.rb +27 -0
  124. data/decidim-comments/app/queries/decidim/comments/comments_with_replies.rb +88 -0
  125. data/decidim-comments/app/resolvers/decidim/comments/vote_comment_resolver.rb +20 -0
  126. data/decidim-comments/app/types/decidim/comments/comment_mutation_type.rb +19 -0
  127. data/decidim-comments/app/types/decidim/comments/comment_type.rb +38 -2
  128. data/decidim-comments/config/locales/en.yml +1 -0
  129. data/decidim-comments/db/migrate/20161130143508_create_comments.rb +4 -2
  130. data/decidim-comments/db/migrate/20161219150806_create_comment_votes.rb +13 -0
  131. data/decidim-comments/decidim-comments.gemspec +0 -3
  132. data/decidim-comments/lib/decidim/comments/mutation_extensions.rb +9 -0
  133. data/decidim-comments/lib/decidim/comments/query_extensions.rb +3 -5
  134. data/decidim-comments/lib/decidim/comments/test/factories.rb +22 -0
  135. data/decidim-comments/spec/commands/vote_comment_spec.rb +124 -0
  136. data/decidim-comments/spec/factories.rb +2 -9
  137. data/decidim-comments/spec/features/comments_spec.rb +37 -0
  138. data/decidim-comments/spec/models/comment_spec.rb +34 -0
  139. data/decidim-comments/spec/models/comment_vote_spec.rb +44 -0
  140. data/decidim-comments/spec/models/seed_spec.rb +19 -0
  141. data/decidim-comments/spec/queries/comments_with_replies_spec.rb +86 -0
  142. data/decidim-comments/spec/spec_helper.rb +3 -1
  143. data/decidim-comments/spec/support/dummy.rb +1 -1
  144. data/decidim-comments/spec/types/comment_mutation_type_spec.rb +46 -0
  145. data/decidim-comments/spec/types/comment_type_spec.rb +57 -3
  146. data/{decidim-api → decidim-comments}/spec/types/mutation_type_spec.rb +11 -0
  147. data/decidim-dev/README.md +7 -11
  148. data/decidim-dev/decidim-dev.gemspec +5 -4
  149. data/decidim-dev/lib/decidim/dev.rb +20 -0
  150. data/decidim-dev/lib/decidim/dev/assets/Exampledocument.docx +0 -0
  151. data/decidim-dev/lib/decidim/dev/assets/Exampledocument.odt +0 -0
  152. data/decidim-dev/lib/decidim/dev/assets/Exampledocument.pdf +0 -0
  153. data/decidim-dev/lib/decidim/dev/assets/avatar.svg +14 -0
  154. data/decidim-dev/lib/decidim/dev/assets/city.jpeg +0 -0
  155. data/decidim-dev/lib/decidim/dev/assets/city2.jpeg +0 -0
  156. data/decidim-dev/lib/decidim/dev/assets/city3.jpeg +0 -0
  157. data/decidim-dev/lib/decidim/dev/assets/malicious.jpg +0 -0
  158. data/decidim-dev/lib/decidim/{common_rake.rb → dev/common_rake.rb} +1 -1
  159. data/decidim-dev/lib/decidim/{dummy_authorization_handler.rb → dev/dummy_authorization_handler.rb} +4 -4
  160. data/decidim-dev/lib/decidim/{test → dev/test}/authorization_shared_examples.rb +0 -8
  161. data/decidim-dev/lib/decidim/{test → dev/test}/base_spec_helper.rb +4 -1
  162. data/decidim-dev/lib/decidim/{test → dev/test}/i18n_spec.rb +1 -1
  163. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/action_mailer.rb +0 -0
  164. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/active_job.rb +0 -0
  165. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/authenticated_controller_context.rb +0 -0
  166. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/authorization_handlers.rb +1 -1
  167. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/capybara.rb +3 -10
  168. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/database_cleaner.rb +0 -0
  169. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/engine_routes.rb +0 -0
  170. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/factory_girl.rb +0 -0
  171. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/feature.rb +10 -0
  172. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/feature_context.rb +2 -2
  173. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/helpers.rb +4 -0
  174. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/i18n.rb +1 -0
  175. data/decidim-dev/lib/decidim/dev/test/rspec_support/phantomjs_polyfills/bind-polyfill.js +18 -0
  176. data/decidim-dev/lib/decidim/dev/test/rspec_support/phantomjs_polyfills/object-assign-polyfill.js +24 -0
  177. data/decidim-dev/lib/decidim/dev/test/rspec_support/phantomjs_polyfills/promise.js +233 -0
  178. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/translation_helpers.rb +0 -0
  179. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/warden.rb +0 -0
  180. data/decidim-dev/lib/decidim/{test → dev/test}/rspec_support/wisper.rb +0 -0
  181. data/decidim-dev/lib/generators/decidim/dummy_generator.rb +2 -2
  182. data/decidim-dev/lib/generators/decidim/templates/decidim_dev.rb +2 -0
  183. data/decidim-meetings/Rakefile +1 -1
  184. data/decidim-meetings/app/assets/images/decidim/meetings/icon.svg +1 -0
  185. data/decidim-meetings/app/commands/decidim/meetings/admin/create_meeting.rb +2 -0
  186. data/decidim-meetings/app/commands/decidim/meetings/admin/update_meeting.rb +2 -0
  187. data/decidim-meetings/app/controllers/decidim/meetings/meetings_controller.rb +30 -6
  188. data/decidim-meetings/app/forms/decidim/meetings/admin/meeting_form.rb +14 -0
  189. data/decidim-meetings/app/helpers/decidim/meetings/application_helper.rb +10 -0
  190. data/decidim-meetings/app/models/decidim/meetings/meeting.rb +18 -1
  191. data/decidim-meetings/app/services/decidim/meetings/meeting_search.rb +48 -0
  192. data/decidim-meetings/app/views/decidim/meetings/admin/meetings/_form.html.erb +9 -2
  193. data/decidim-meetings/app/views/decidim/meetings/meetings/_filters.html.erb +24 -0
  194. data/decidim-meetings/app/views/decidim/meetings/meetings/_meetings.html.erb +30 -0
  195. data/decidim-meetings/app/views/decidim/meetings/meetings/_tags.html.erb +10 -0
  196. data/decidim-meetings/app/views/decidim/meetings/meetings/index.html.erb +8 -26
  197. data/decidim-meetings/app/views/decidim/meetings/meetings/index.js.erb +2 -0
  198. data/decidim-meetings/app/views/decidim/meetings/meetings/show.html.erb +1 -0
  199. data/decidim-meetings/config/locales/ca.yml +7 -0
  200. data/decidim-meetings/config/locales/en.yml +7 -0
  201. data/decidim-meetings/config/locales/es.yml +7 -0
  202. data/decidim-meetings/db/migrate/20161130121354_create_meetings.rb +2 -0
  203. data/decidim-meetings/decidim-meetings.gemspec +2 -0
  204. data/decidim-meetings/lib/decidim/meetings/feature.rb +7 -2
  205. data/decidim-meetings/lib/decidim/meetings/list_engine.rb +3 -0
  206. data/decidim-meetings/spec/commands/create_meeting_spec.rb +21 -0
  207. data/decidim-meetings/spec/commands/update_meeting_spec.rb +17 -2
  208. data/decidim-meetings/spec/factories.rb +3 -3
  209. data/decidim-meetings/spec/features/explore_meetings_spec.rb +53 -0
  210. data/decidim-meetings/spec/forms/meeting_form_spec.rb +19 -1
  211. data/decidim-meetings/spec/models/meeting_spec.rb +20 -0
  212. data/decidim-meetings/spec/services/meeting_search_spec.rb +146 -0
  213. data/decidim-meetings/spec/shared/admin_shared_context.rb +4 -2
  214. data/decidim-meetings/spec/shared/manage_meetings_examples.rb +5 -2
  215. data/decidim-meetings/spec/spec_helper.rb +1 -1
  216. data/decidim-pages/Rakefile +1 -1
  217. data/decidim-pages/app/assets/images/decidim/pages/icon.svg +3 -0
  218. data/decidim-pages/app/commands/decidim/pages/admin/update_page.rb +1 -2
  219. data/decidim-pages/app/forms/decidim/pages/admin/page_form.rb +0 -1
  220. data/decidim-pages/app/views/decidim/pages/admin/pages/_form.html.erb +0 -1
  221. data/decidim-pages/app/views/decidim/pages/application/show.html.erb +3 -3
  222. data/decidim-pages/config/i18n-tasks.yml +1 -0
  223. data/decidim-pages/config/locales/ca.yml +5 -1
  224. data/decidim-pages/config/locales/en.yml +5 -1
  225. data/decidim-pages/config/locales/es.yml +5 -1
  226. data/decidim-pages/db/migrate/20170110145040_remove_commentable_flag_from_pages.rb +5 -0
  227. data/decidim-pages/lib/decidim/pages/feature.rb +13 -3
  228. data/decidim-pages/spec/commands/update_page_spec.rb +2 -1
  229. data/decidim-pages/spec/factories.rb +2 -2
  230. data/decidim-pages/spec/features/admin_spec.rb +0 -11
  231. data/decidim-pages/spec/features/page_show_spec.rb +13 -10
  232. data/decidim-pages/spec/forms/page_form_spec.rb +4 -4
  233. data/decidim-pages/spec/spec_helper.rb +3 -1
  234. data/decidim-proposals/Rakefile +1 -1
  235. data/decidim-proposals/app/assets/config/decidim_proposals_manifest.css +1 -0
  236. data/decidim-proposals/app/assets/config/decidim_proposals_manifest.js +1 -0
  237. data/decidim-proposals/app/assets/images/decidim/proposals/icon.svg +1 -0
  238. data/decidim-proposals/app/assets/javascripts/decidim/proposals/social_share.js +2 -0
  239. data/decidim-proposals/app/assets/stylesheets/decidim/proposals/social_share.css.scss +14 -0
  240. data/decidim-proposals/app/commands/decidim/proposals/create_proposal.rb +5 -3
  241. data/decidim-proposals/app/controllers/decidim/proposals/admin/proposals_controller.rb +3 -3
  242. data/decidim-proposals/app/controllers/decidim/proposals/proposal_votes_controller.rb +25 -0
  243. data/decidim-proposals/app/controllers/decidim/proposals/proposals_controller.rb +33 -6
  244. data/decidim-proposals/app/forms/decidim/proposals/admin/proposal_form.rb +7 -6
  245. data/decidim-proposals/app/forms/decidim/proposals/proposal_form.rb +6 -6
  246. data/decidim-proposals/app/helpers/decidim/proposals/application_helper.rb +3 -1
  247. data/decidim-proposals/app/helpers/decidim/proposals/proposal_votes_helper.rb +27 -0
  248. data/decidim-proposals/app/models/decidim/proposals/proposal.rb +8 -0
  249. data/decidim-proposals/app/models/decidim/proposals/proposal_vote.rb +20 -0
  250. data/decidim-proposals/app/services/decidim/proposals/proposal_search.rb +39 -11
  251. data/decidim-proposals/app/views/decidim/proposals/admin/proposals/_form.html.erb +2 -2
  252. data/decidim-proposals/app/views/decidim/proposals/proposal_votes/create.js.erb +5 -0
  253. data/decidim-proposals/app/views/decidim/proposals/proposals/_count.html.erb +1 -0
  254. data/decidim-proposals/app/views/decidim/proposals/proposals/_filters.html.erb +26 -0
  255. data/decidim-proposals/app/views/decidim/proposals/proposals/_proposal.html.erb +11 -2
  256. data/decidim-proposals/app/views/decidim/proposals/proposals/_proposals.html.erb +4 -0
  257. data/decidim-proposals/app/views/decidim/proposals/proposals/_share.html.erb +33 -0
  258. data/decidim-proposals/app/views/decidim/proposals/proposals/_vote_button.html.erb +13 -0
  259. data/decidim-proposals/app/views/decidim/proposals/proposals/_votes_count.html.erb +6 -0
  260. data/decidim-proposals/app/views/decidim/proposals/proposals/index.html.erb +11 -11
  261. data/decidim-proposals/app/views/decidim/proposals/proposals/index.js.erb +5 -0
  262. data/decidim-proposals/app/views/decidim/proposals/proposals/show.html.erb +31 -4
  263. data/decidim-proposals/config/i18n-tasks.yml +1 -0
  264. data/decidim-proposals/config/initializers/social_share_button.rb +4 -0
  265. data/decidim-proposals/config/locales/ca.yml +28 -2
  266. data/decidim-proposals/config/locales/en.yml +27 -1
  267. data/decidim-proposals/config/locales/es.yml +28 -2
  268. data/decidim-proposals/db/migrate/20170112115253_create_proposal_votes.rb +12 -0
  269. data/decidim-proposals/db/migrate/20170113114245_add_text_search_indexes.rb +6 -0
  270. data/decidim-proposals/db/migrate/20170118120151_add_counter_cache_votes_to_proposals.rb +5 -0
  271. data/decidim-proposals/decidim-proposals.gemspec +2 -1
  272. data/decidim-proposals/lib/decidim/proposals/engine.rb +8 -1
  273. data/decidim-proposals/lib/decidim/proposals/feature.rb +30 -4
  274. data/decidim-proposals/spec/commands/decidim/proposals/create_proposal_spec.rb +10 -3
  275. data/decidim-proposals/spec/factories.rb +9 -4
  276. data/decidim-proposals/spec/features/admin_manages_proposals_spec.rb +2 -0
  277. data/decidim-proposals/spec/features/process_admin_manages_proposals_spec.rb +2 -0
  278. data/decidim-proposals/spec/features/proposals_spec.rb +41 -31
  279. data/decidim-proposals/spec/features/vote_proposal_spec.rb +78 -0
  280. data/decidim-proposals/spec/forms/decidim/proposals/proposal_form_spec.rb +11 -10
  281. data/decidim-proposals/spec/helpers/proposal_votes_helper_spec.rb +28 -0
  282. data/decidim-proposals/spec/lib/decidim/proposals/feature_spec.rb +1 -1
  283. data/decidim-proposals/spec/models/decidim/proposals/proposal_spec.rb +20 -3
  284. data/decidim-proposals/spec/models/decidim/proposals/proposal_vote_spec.rb +43 -0
  285. data/decidim-proposals/spec/services/decidim/proposals/proposal_search_spec.rb +50 -4
  286. data/decidim-proposals/spec/shared/manage_proposals_examples.rb +1 -1
  287. data/decidim-proposals/spec/spec_helper.rb +1 -1
  288. data/decidim-system/Rakefile +1 -1
  289. data/decidim-system/app/commands/decidim/system/register_organization.rb +13 -12
  290. data/decidim-system/decidim-system.gemspec +2 -3
  291. data/decidim-system/spec/factories.rb +1 -1
  292. data/decidim-system/spec/spec_helper.rb +3 -1
  293. data/docs/social_providers.md +41 -0
  294. data/karma.conf.js +4 -2
  295. data/lib/generators/decidim/app_generator.rb +6 -0
  296. data/lib/generators/decidim/demo_generator.rb +2 -2
  297. data/lib/generators/decidim/install_generator.rb +5 -4
  298. data/lib/generators/decidim/templates/Gemfile.erb +3 -5
  299. data/lib/generators/decidim/templates/initializer.rb +1 -1
  300. data/lib/generators/decidim/templates/secrets.yml.erb +26 -0
  301. data/lib/generators/decidim/templates/social_share_button.rb +7 -0
  302. data/package.json +16 -6
  303. data/webpack.config.js +23 -8
  304. data/yarn.lock +401 -345
  305. metadata +130 -48
  306. data/Gemfile.common +0 -1
  307. data/decidim-admin/Gemfile +0 -6
  308. data/decidim-comments/Gemfile +0 -6
  309. data/decidim-comments/package.json +0 -21
  310. data/decidim-dev/Gemfile +0 -6
  311. data/decidim-dev/lib/decidim/test/rspec_support/bullet.rb +0 -15
  312. data/decidim-dev/lib/generators/decidim/templates/bullet.rb +0 -6
  313. data/decidim-system/Gemfile +0 -6
@@ -5,6 +5,7 @@ import gql from 'graphql-tag';
5
5
  import { Comments } from './comments.component';
6
6
  import CommentThread from './comment_thread.component';
7
7
  import AddCommentForm from './add_comment_form.component';
8
+ import CommentOrderSelector from './comment_order_selector.component';
8
9
 
9
10
  import commentsQuery from './comments.query.graphql'
10
11
 
@@ -18,6 +19,8 @@ describe('<Comments />', () => {
18
19
  let currentUser = null;
19
20
  const commentableId = "1";
20
21
  const commentableType = "Decidim::ParticipatoryProcess";
22
+ const orderBy = "older";
23
+ const reorderComments = () => {};
21
24
 
22
25
  const commentThreadFragment = gql`
23
26
  fragment CommentThread on Comment {
@@ -25,12 +28,14 @@ describe('<Comments />', () => {
25
28
  }
26
29
  `;
27
30
 
31
+ stubComponent(CommentOrderSelector)
32
+
28
33
  stubComponent(CommentThread, {
29
34
  fragments: {
30
35
  comment: commentThreadFragment
31
36
  }
32
37
  });
33
-
38
+
34
39
  stubComponent(AddCommentForm);
35
40
 
36
41
  beforeEach(() => {
@@ -49,6 +54,7 @@ describe('<Comments />', () => {
49
54
  comments: commentsData
50
55
  },
51
56
  variables: {
57
+ orderBy,
52
58
  commentableId,
53
59
  commentableType
54
60
  }
@@ -58,14 +64,20 @@ describe('<Comments />', () => {
58
64
  comments = result.comments;
59
65
  });
60
66
 
67
+ it("should render loading-comments calss and the respective loading text", () => {
68
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} loading />);
69
+ expect(wrapper.find('.loading-comments')).to.be.present();
70
+ expect(wrapper.find('h2')).to.have.text("Loading comments ...");
71
+ });
72
+
61
73
  it("should render a div of id comments", () => {
62
- const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} />);
74
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
63
75
  expect(wrapper.find('#comments')).to.be.present();
64
76
  });
65
77
 
66
78
  describe("should render a CommentThread component for each comment", () => {
67
79
  it("and pass filter comment data as a prop to it", () => {
68
- const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} />);
80
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
69
81
  expect(wrapper).to.have.exactly(comments.length).descendants(CommentThread);
70
82
  wrapper.find(CommentThread).forEach((node, idx) => {
71
83
  expect(node).to.have.prop("comment").deep.equal(filter(commentThreadFragment, comments[idx]));
@@ -73,22 +85,30 @@ describe('<Comments />', () => {
73
85
  });
74
86
 
75
87
  it("and pass the currentUser as a prop to it", () => {
76
- const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} />);
88
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
77
89
  expect(wrapper).to.have.exactly(comments.length).descendants(CommentThread);
78
90
  wrapper.find(CommentThread).forEach((node) => {
79
91
  expect(node).to.have.prop("currentUser").deep.equal(currentUser);
80
92
  });
81
93
  });
94
+
95
+ it("and pass the option votable as a prop to it", () => {
96
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{ votable: true }} reorderComments={reorderComments} orderBy={orderBy} />);
97
+ expect(wrapper).to.have.exactly(comments.length).descendants(CommentThread);
98
+ wrapper.find(CommentThread).forEach((node) => {
99
+ expect(node).to.have.prop("votable").equal(true);
100
+ });
101
+ });
82
102
  });
83
103
 
84
104
  it("should render comments count", () => {
85
- const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} />);
105
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
86
106
  const rex = new RegExp(`${comments.length} comments`);
87
107
  expect(wrapper.find('h2.section-heading')).to.have.text().match(rex);
88
108
  });
89
109
 
90
110
  it("should render a AddCommentForm component and pass 'options.arguable' as a prop", () => {
91
- const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{ arguable: true }} />);
111
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{ arguable: true }} reorderComments={reorderComments} orderBy={orderBy} />);
92
112
  expect(wrapper).to.have.exactly(1).descendants(AddCommentForm);
93
113
  expect(wrapper.find(AddCommentForm)).to.have.prop('arguable').equal(true);
94
114
  });
@@ -99,8 +119,25 @@ describe('<Comments />', () => {
99
119
  });
100
120
 
101
121
  it("should not render a AddCommentForm component", () => {
102
- const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} />);
122
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
103
123
  expect(wrapper.find(AddCommentForm)).not.to.be.present();
104
124
  });
105
125
  });
126
+
127
+ describe("should render a CommentOrderSelector component", () => {
128
+ it("should render a CommentOrderSelector component", () => {
129
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
130
+ expect(wrapper.find(CommentOrderSelector)).to.be.present();
131
+ });
132
+
133
+ it("and pass the reorderComments as a prop to it", () => {
134
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
135
+ expect(wrapper.find(CommentOrderSelector)).to.have.prop('reorderComments').deep.equal(reorderComments);
136
+ });
137
+
138
+ it("and pass the orderBy as a prop to it", () => {
139
+ const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} currentUser={currentUser} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
140
+ expect(wrapper.find(CommentOrderSelector)).to.have.prop('defaultOrderBy').equal('older');
141
+ });
142
+ });
106
143
  });
@@ -1,9 +1,9 @@
1
- query GetComments($commentableId: String!, $commentableType: String!) {
1
+ query GetComments($commentableId: String!, $commentableType: String!, $orderBy: String) {
2
2
  currentUser {
3
3
  name
4
4
  avatarUrl
5
5
  }
6
- comments(commentableId: $commentableId, commentableType: $commentableType) {
6
+ comments(commentableId: $commentableId, commentableType: $commentableType, orderBy: $orderBy) {
7
7
  id
8
8
  ...CommentThread
9
9
  }
@@ -0,0 +1,6 @@
1
+ fragment DownVote on Comment {
2
+ id
3
+ downVotes
4
+ downVoted
5
+ upVoted
6
+ }
@@ -0,0 +1,7 @@
1
+ mutation DownVote($id: ID!) {
2
+ comment(id: $id) {
3
+ downVote {
4
+ ...Comment
5
+ }
6
+ }
7
+ }
@@ -0,0 +1,84 @@
1
+ import { PropTypes } from 'react';
2
+ import { propType } from 'graphql-anywhere';
3
+ import { graphql } from 'react-apollo';
4
+ import gql from 'graphql-tag';
5
+
6
+ import VoteButton from './vote_button.component';
7
+
8
+ import downVoteMutation from './down_vote.mutation.graphql';
9
+
10
+ import commentFragment from './comment.fragment.graphql';
11
+ import commentDataFragment from './comment_data.fragment.graphql';
12
+ import upVoteFragment from './up_vote.fragment.graphql';
13
+ import downVoteFragment from './down_vote.fragment.graphql';
14
+
15
+ export const DownVoteButton = ({ comment: { downVotes, upVoted, downVoted }, downVote }) => (
16
+ <VoteButton
17
+ buttonClassName="comment__votes--down"
18
+ iconName="icon-chevron-bottom"
19
+ votes={downVotes}
20
+ voteAction={downVote}
21
+ disabled={upVoted || downVoted}
22
+ />
23
+ );
24
+
25
+ DownVoteButton.fragments = {
26
+ comment: gql`
27
+ ${downVoteFragment}
28
+ `
29
+ };
30
+
31
+ DownVoteButton.propTypes = {
32
+ comment: propType(DownVoteButton.fragments.comment).isRequired,
33
+ downVote: PropTypes.func.isRequired
34
+ };
35
+
36
+ const DownVoteButtonWithMutation = graphql(gql`
37
+ ${downVoteMutation}
38
+ ${commentFragment}
39
+ ${commentDataFragment}
40
+ ${upVoteFragment}
41
+ ${downVoteFragment}
42
+ `, {
43
+ props: ({ ownProps, mutate }) => ({
44
+ downVote: () => mutate({
45
+ variables: {
46
+ id: ownProps.comment.id
47
+ },
48
+ optimisticResponse: {
49
+ __typename: 'Mutation',
50
+ comment: {
51
+ __typename: 'CommentMutation',
52
+ downVote: {
53
+ __typename: 'Comment',
54
+ ...ownProps.comment,
55
+ downVotes: ownProps.comment.downVotes + 1,
56
+ downVoted: true
57
+ }
58
+ }
59
+ },
60
+ updateQueries: {
61
+ GetComments: (prev, { mutationResult: { data } }) => {
62
+ const commentReducer = (comment) => {
63
+ const replies = comment.replies || [];
64
+
65
+ if (comment.id === ownProps.comment.id) {
66
+ return data.comment.downVote;
67
+ }
68
+ return {
69
+ ...comment,
70
+ replies: replies.map(commentReducer)
71
+ };
72
+ };
73
+
74
+ return {
75
+ ...prev,
76
+ comments: prev.comments.map(commentReducer)
77
+ }
78
+ }
79
+ }
80
+ })
81
+ })
82
+ })(DownVoteButton);
83
+
84
+ export default DownVoteButtonWithMutation;
@@ -0,0 +1,48 @@
1
+ import { shallow } from 'enzyme';
2
+ import { filter } from 'graphql-anywhere';
3
+ import gql from 'graphql-tag';
4
+
5
+ import { DownVoteButton } from './down_vote_button.component';
6
+
7
+ import VoteButton from './vote_button.component';
8
+
9
+ import downVoteFragment from './down_vote.fragment.graphql';
10
+
11
+ import stubComponent from '../support/stub_component';
12
+ import generateCommentsData from '../support/generate_comments_data';
13
+
14
+ describe("<DownVoteButton />", () => {
15
+ let comment = {};
16
+ const downVote = () => {};
17
+
18
+ stubComponent(VoteButton);
19
+
20
+ beforeEach(() => {
21
+ let commentsData = generateCommentsData(1);
22
+
23
+ const fragment = gql`
24
+ ${downVoteFragment}
25
+ `;
26
+
27
+ comment = filter(fragment, commentsData[0]);
28
+ });
29
+
30
+ it("should render a VoteButton component with the correct props", () => {
31
+ const wrapper = shallow(<DownVoteButton comment={comment} downVote={downVote} />);
32
+ expect(wrapper.find(VoteButton)).to.have.prop("buttonClassName").equal("comment__votes--down");
33
+ expect(wrapper.find(VoteButton)).to.have.prop("iconName").equal("icon-chevron-bottom");
34
+ expect(wrapper.find(VoteButton)).to.have.prop("votes").equal(comment.downVotes);
35
+ });
36
+
37
+ it("should pass disabled prop as true if comment downVoted is true", () => {
38
+ comment.downVoted = true;
39
+ const wrapper = shallow(<DownVoteButton comment={comment} downVote={downVote} />);
40
+ expect(wrapper.find(VoteButton)).to.have.prop("disabled").equal(true);
41
+ });
42
+
43
+ it("should pass disabled prop as true if comment downVoted is true", () => {
44
+ comment.downVoted = true;
45
+ const wrapper = shallow(<DownVoteButton comment={comment} downVote={downVote} />);
46
+ expect(wrapper.find(VoteButton)).to.have.prop("disabled").equal(true);
47
+ });
48
+ });
@@ -0,0 +1,6 @@
1
+ fragment UpVote on Comment {
2
+ id
3
+ upVotes
4
+ upVoted
5
+ downVoted
6
+ }
@@ -0,0 +1,7 @@
1
+ mutation UpVote($id: ID!) {
2
+ comment(id: $id) {
3
+ upVote {
4
+ ...Comment
5
+ }
6
+ }
7
+ }
@@ -0,0 +1,84 @@
1
+ import { PropTypes } from 'react';
2
+ import { propType } from 'graphql-anywhere';
3
+ import { graphql } from 'react-apollo';
4
+ import gql from 'graphql-tag';
5
+
6
+ import VoteButton from './vote_button.component';
7
+
8
+ import upVoteMutation from './up_vote.mutation.graphql';
9
+
10
+ import commentFragment from './comment.fragment.graphql';
11
+ import commentDataFragment from './comment_data.fragment.graphql';
12
+ import upVoteFragment from './up_vote.fragment.graphql';
13
+ import downVoteFragment from './down_vote.fragment.graphql';
14
+
15
+ export const UpVoteButton = ({ comment: { upVotes, upVoted, downVoted }, upVote }) => (
16
+ <VoteButton
17
+ buttonClassName="comment__votes--up"
18
+ iconName="icon-chevron-top"
19
+ votes={upVotes}
20
+ voteAction={upVote}
21
+ disabled={upVoted || downVoted}
22
+ />
23
+ );
24
+
25
+ UpVoteButton.fragments = {
26
+ comment: gql`
27
+ ${upVoteFragment}
28
+ `
29
+ };
30
+
31
+ UpVoteButton.propTypes = {
32
+ comment: propType(UpVoteButton.fragments.comment).isRequired,
33
+ upVote: PropTypes.func.isRequired
34
+ };
35
+
36
+ const UpVoteButtonWithMutation = graphql(gql`
37
+ ${upVoteMutation}
38
+ ${commentFragment}
39
+ ${commentDataFragment}
40
+ ${upVoteFragment}
41
+ ${downVoteFragment}
42
+ `, {
43
+ props: ({ ownProps, mutate }) => ({
44
+ upVote: () => mutate({
45
+ variables: {
46
+ id: ownProps.comment.id
47
+ },
48
+ optimisticResponse: {
49
+ __typename: 'Mutation',
50
+ comment: {
51
+ __typename: 'CommentMutation',
52
+ upVote: {
53
+ __typename: 'Comment',
54
+ ...ownProps.comment,
55
+ upVotes: ownProps.comment.upVotes + 1,
56
+ upVoted: true
57
+ }
58
+ }
59
+ },
60
+ updateQueries: {
61
+ GetComments: (prev, { mutationResult: { data } }) => {
62
+ const commentReducer = (comment) => {
63
+ const replies = comment.replies || [];
64
+
65
+ if (comment.id === ownProps.comment.id) {
66
+ return data.comment.upVote;
67
+ }
68
+ return {
69
+ ...comment,
70
+ replies: replies.map(commentReducer)
71
+ };
72
+ };
73
+
74
+ return {
75
+ ...prev,
76
+ comments: prev.comments.map(commentReducer)
77
+ }
78
+ }
79
+ }
80
+ })
81
+ })
82
+ })(UpVoteButton);
83
+
84
+ export default UpVoteButtonWithMutation;
@@ -0,0 +1,48 @@
1
+ import { shallow } from 'enzyme';
2
+ import { filter } from 'graphql-anywhere';
3
+ import gql from 'graphql-tag';
4
+
5
+ import { UpVoteButton } from './up_vote_button.component';
6
+
7
+ import VoteButton from './vote_button.component';
8
+
9
+ import upVoteFragment from './up_vote.fragment.graphql';
10
+
11
+ import stubComponent from '../support/stub_component';
12
+ import generateCommentsData from '../support/generate_comments_data';
13
+
14
+ describe("<UpVoteButton />", () => {
15
+ let comment = {};
16
+ const upVote = () => {};
17
+
18
+ stubComponent(VoteButton);
19
+
20
+ beforeEach(() => {
21
+ let commentsData = generateCommentsData(1);
22
+
23
+ const fragment = gql`
24
+ ${upVoteFragment}
25
+ `;
26
+
27
+ comment = filter(fragment, commentsData[0]);
28
+ });
29
+
30
+ it("should render a VoteButton component with the correct props", () => {
31
+ const wrapper = shallow(<UpVoteButton comment={comment} upVote={upVote} />);
32
+ expect(wrapper.find(VoteButton)).to.have.prop("buttonClassName").equal("comment__votes--up");
33
+ expect(wrapper.find(VoteButton)).to.have.prop("iconName").equal("icon-chevron-top");
34
+ expect(wrapper.find(VoteButton)).to.have.prop("votes").equal(comment.upVotes);
35
+ });
36
+
37
+ it("should pass disabled prop as true if comment upVoted is true", () => {
38
+ comment.upVoted = true;
39
+ const wrapper = shallow(<UpVoteButton comment={comment} upVote={upVote} />);
40
+ expect(wrapper.find(VoteButton)).to.have.prop("disabled").equal(true);
41
+ });
42
+
43
+ it("should pass disabled prop as true if comment downVoted is true", () => {
44
+ comment.downVoted = true;
45
+ const wrapper = shallow(<UpVoteButton comment={comment} upVote={upVote} />);
46
+ expect(wrapper.find(VoteButton)).to.have.prop("disabled").equal(true);
47
+ });
48
+ });
@@ -0,0 +1,19 @@
1
+ import { PropTypes } from 'react';
2
+ import Icon from '../application/icon.component';
3
+
4
+ const VoteButton = ({ buttonClassName, iconName, votes, voteAction, disabled }) => (
5
+ <button className={buttonClassName} onClick={() => voteAction()} disabled={disabled}>
6
+ <Icon name={iconName} iconExtraClassName="icon--small" />
7
+ { ` ${votes}` }
8
+ </button>
9
+ );
10
+
11
+ VoteButton.propTypes = {
12
+ buttonClassName: PropTypes.string.isRequired,
13
+ iconName: PropTypes.string.isRequired,
14
+ votes: PropTypes.number.isRequired,
15
+ voteAction: PropTypes.func.isRequired,
16
+ disabled: PropTypes.bool
17
+ };
18
+
19
+ export default VoteButton;