decidim 0.0.2 → 0.0.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 might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/.travis.yml +12 -0
- data/Dockerfile +2 -0
- data/Gemfile.lock +80 -54
- data/README.md +15 -2
- data/decidim-admin/app/assets/javascripts/decidim/admin/application.js.es6 +3 -2
- data/decidim-admin/app/assets/javascripts/decidim/admin/tab_focus.js.es6 +1 -1
- data/decidim-admin/app/assets/stylesheets/decidim/admin/_foundation_and_overrides.scss +1 -1
- data/decidim-admin/app/commands/decidim/admin/{create_participatory_process_attachment.rb → create_attachment.rb} +6 -7
- data/decidim-admin/app/commands/decidim/admin/create_participatory_process.rb +12 -3
- data/decidim-admin/app/commands/decidim/admin/{update_participatory_process_attachment.rb → update_attachment.rb} +7 -6
- data/decidim-admin/app/commands/decidim/admin/update_feature.rb +2 -1
- data/decidim-admin/app/commands/decidim/admin/update_organization.rb +1 -0
- data/decidim-admin/app/commands/decidim/admin/update_participatory_process.rb +16 -4
- data/decidim-admin/app/constraints/decidim/admin/organization_dashboard_constraint.rb +1 -1
- data/decidim-admin/app/controllers/decidim/admin/application_controller.rb +2 -2
- data/decidim-admin/app/controllers/decidim/admin/concerns/has_attachments.rb +116 -0
- data/decidim-admin/app/controllers/decidim/admin/participatory_process_attachments_controller.rb +5 -67
- data/decidim-admin/app/controllers/decidim/admin/users_controller.rb +5 -5
- data/decidim-admin/app/forms/decidim/admin/{participatory_process_attachment_form.rb → attachment_form.rb} +2 -2
- data/decidim-admin/app/forms/decidim/admin/feature_form.rb +1 -0
- data/decidim-admin/app/forms/decidim/admin/organization_form.rb +1 -0
- data/decidim-admin/app/forms/decidim/admin/participatory_process_form.rb +8 -1
- data/decidim-admin/app/helpers/decidim/admin/application_helper.rb +1 -0
- data/decidim-admin/app/helpers/decidim/admin/feature_settings_helper.rb +29 -0
- data/decidim-admin/app/models/decidim/admin/abilities/admin_user.rb +4 -4
- data/decidim-admin/app/models/decidim/admin/abilities/base.rb +3 -3
- data/decidim-admin/app/models/decidim/admin/abilities/participatory_process_admin.rb +15 -7
- data/decidim-admin/app/views/decidim/admin/{participatory_process_attachments → attachments}/_form.html.erb +0 -0
- data/decidim-admin/app/views/decidim/admin/attachments/edit.html.erb +9 -0
- data/decidim-admin/app/views/decidim/admin/attachments/index.html.erb +37 -0
- data/decidim-admin/app/views/decidim/admin/attachments/new.html.erb +9 -0
- data/decidim-admin/app/views/decidim/admin/attachments/show.html.erb +25 -0
- data/decidim-admin/app/views/decidim/admin/features/_form.html.erb +1 -0
- data/decidim-admin/app/views/decidim/admin/features/_settings_fields.html.erb +6 -3
- data/decidim-admin/app/views/decidim/admin/organization/_form.html.erb +4 -0
- data/decidim-admin/app/views/decidim/admin/participatory_processes/_form.html.erb +16 -0
- data/decidim-admin/app/views/decidim/admin/participatory_processes/show.html.erb +11 -1
- data/decidim-admin/app/views/layouts/decidim/admin/_header.html.erb +2 -2
- data/decidim-admin/app/views/layouts/decidim/admin/_sidebar.html.erb +1 -1
- data/decidim-admin/app/views/layouts/decidim/admin/participatory_process.html.erb +2 -2
- data/decidim-admin/config/locales/ca.yml +29 -27
- data/decidim-admin/config/locales/en.yml +29 -27
- data/decidim-admin/config/locales/es.yml +29 -27
- data/decidim-admin/config/routes.rb +1 -1
- data/decidim-admin/db/migrate/20170128112958_change_user_groups_verified_to_timestamp.rb +9 -0
- data/decidim-admin/decidim-admin.gemspec +0 -1
- data/decidim-admin/lib/decidim/admin/engine.rb +2 -2
- data/decidim-admin/lib/decidim/admin/test/manage_attachments_examples.rb +103 -0
- data/decidim-admin/spec/commands/create_category_spec.rb +1 -1
- data/decidim-admin/spec/commands/create_feature_spec.rb +1 -1
- data/decidim-admin/spec/commands/create_participatory_process_spec.rb +32 -2
- data/decidim-admin/spec/commands/create_static_page_spec.rb +1 -1
- data/decidim-admin/spec/commands/destroy_category_spec.rb +1 -1
- data/decidim-admin/spec/commands/destroy_feature_spec.rb +2 -2
- data/decidim-admin/spec/commands/destroy_participatory_process_step_spec.rb +1 -1
- data/decidim-admin/spec/commands/update_category_spec.rb +1 -1
- data/decidim-admin/spec/commands/update_feature_spec.rb +3 -1
- data/decidim-admin/spec/commands/update_organization_spec.rb +12 -2
- data/decidim-admin/spec/commands/update_static_page_spec.rb +1 -1
- data/decidim-admin/spec/features/admin_manages_organization_admins_spec.rb +1 -1
- data/decidim-admin/spec/features/admin_manages_organization_scopes_spec.rb +1 -1
- data/decidim-admin/spec/features/admin_manages_participatory_processes_spec.rb +1 -1
- data/decidim-admin/spec/features/static_pages_spec.rb +1 -1
- data/decidim-admin/spec/forms/participatory_process_form_spec.rb +32 -2
- data/decidim-admin/spec/forms/participatory_process_step_form_spec.rb +3 -3
- data/decidim-admin/spec/forms/scope_form_spec.rb +2 -2
- data/decidim-admin/spec/forms/static_page_form_spec.rb +2 -2
- data/decidim-admin/spec/helpers/feature_settings_helper_spec.rb +56 -0
- data/decidim-admin/spec/models/abilities/admin_user_spec.rb +7 -6
- data/decidim-admin/spec/models/abilities/participatory_process_admin_spec.rb +5 -8
- data/decidim-admin/spec/shared/manage_process_admins_examples.rb +1 -1
- data/decidim-admin/spec/shared/manage_process_attachments_examples.rb +4 -94
- data/decidim-admin/spec/shared/manage_process_categories_examples.rb +2 -1
- data/decidim-admin/spec/shared/manage_process_steps_examples.rb +1 -1
- data/decidim-admin/spec/shared/manage_processes_examples.rb +4 -3
- data/decidim-admin/spec/views/decidim/static_pages/_form.html.erb_spec.rb +2 -2
- data/decidim-api/app/views/layouts/decidim/api/documentation.html.erb +1 -1
- data/decidim-api/decidim-api.gemspec +1 -1
- data/decidim-api/lib/decidim/api.rb +1 -0
- data/decidim-api/lib/decidim/api/schema.rb +5 -0
- data/decidim-api/lib/decidim/api/test/type_context.rb +1 -0
- data/decidim-api/lib/decidim/api/types/author_interface.rb +13 -0
- data/decidim-api/spec/types/query_type_spec.rb +1 -1
- data/decidim-api/spec/types/translated_field_type_spec.rb +1 -1
- data/decidim-budgets/.gitignore +7 -0
- data/decidim-budgets/README.md +23 -0
- data/decidim-budgets/Rakefile +2 -0
- data/decidim-budgets/app/assets/config/decidim_budgets_manifest.js +1 -0
- data/decidim-budgets/app/assets/images/decidim/budgets/icon.svg +4 -0
- data/decidim-budgets/app/assets/javascripts/decidim/budgets/projects.js.es6 +28 -0
- data/decidim-budgets/app/assets/stylesheets/decidim/budgets/_budgets.scss +1 -0
- data/decidim-budgets/app/assets/stylesheets/decidim/budgets/budget/_budget-list.scss +32 -0
- data/decidim-budgets/app/assets/stylesheets/decidim/budgets/budget/_budget-meter.scss +78 -0
- data/decidim-budgets/app/assets/stylesheets/decidim/budgets/budget/_progress.scss +17 -0
- data/decidim-budgets/app/commands/decidim/budgets/add_line_item.rb +43 -0
- data/decidim-budgets/app/commands/decidim/budgets/admin/create_project.rb +52 -0
- data/decidim-budgets/app/commands/decidim/budgets/admin/update_project.rb +56 -0
- data/decidim-budgets/app/commands/decidim/budgets/cancel_order.rb +36 -0
- data/decidim-budgets/app/commands/decidim/budgets/checkout.rb +34 -0
- data/decidim-budgets/app/commands/decidim/budgets/remove_line_item.rb +35 -0
- data/decidim-budgets/app/controllers/concerns/decidim/budgets/needs_current_order.rb +27 -0
- data/decidim-budgets/app/controllers/decidim/budgets/admin/application_controller.rb +14 -0
- data/decidim-budgets/app/controllers/decidim/budgets/admin/projects_controller.rb +69 -0
- data/decidim-budgets/app/controllers/decidim/budgets/application_controller.rb +13 -0
- data/decidim-budgets/app/controllers/decidim/budgets/line_items_controller.rb +43 -0
- data/decidim-budgets/app/controllers/decidim/budgets/orders_controller.rb +38 -0
- data/decidim-budgets/app/controllers/decidim/budgets/projects_controller.rb +44 -0
- data/decidim-budgets/app/forms/decidim/budgets/admin/project_form.rb +44 -0
- data/decidim-budgets/app/helpers/decidim/budgets/application_helper.rb +12 -0
- data/decidim-budgets/app/helpers/decidim/budgets/projects_helper.rb +29 -0
- data/decidim-budgets/app/models/decidim/budgets/application_record.rb +9 -0
- data/decidim-budgets/app/models/decidim/budgets/line_item.rb +20 -0
- data/decidim-budgets/app/models/decidim/budgets/order.rb +52 -0
- data/decidim-budgets/app/models/decidim/budgets/project.rb +15 -0
- data/decidim-budgets/app/services/decidim/budgets/project_search.rb +58 -0
- data/decidim-budgets/app/views/decidim/budgets/admin/projects/_form.html.erb +31 -0
- data/decidim-budgets/app/views/decidim/budgets/admin/projects/edit.html.erb +9 -0
- data/decidim-budgets/app/views/decidim/budgets/admin/projects/index.html.erb +27 -0
- data/{decidim-admin/app/views/decidim/admin/participatory_process_attachments → decidim-budgets/app/views/decidim/budgets/admin/projects}/new.html.erb +0 -0
- data/decidim-budgets/app/views/decidim/budgets/line_items/update_budget.js.erb +21 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_budget_confirm.html.erb +30 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_budget_excess.html.erb +14 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_budget_summary.html.erb +46 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_count.html.erb +1 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_filters.html.erb +24 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_linked_projects.html.erb +12 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_order_progress.html.erb +34 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_order_selected_projects.html.erb +25 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_order_total_budget.html.erb +1 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_project.html.erb +40 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_project_budget_button.html.erb +9 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_projects.html.erb +8 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/_tags.html.erb +10 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/index.html.erb +26 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/index.js.erb +2 -0
- data/decidim-budgets/app/views/decidim/budgets/projects/show.html.erb +48 -0
- data/decidim-budgets/bin/rails +14 -0
- data/decidim-budgets/config/i18n-tasks.yml +4 -0
- data/decidim-budgets/config/locales/ca.yml +84 -0
- data/decidim-budgets/config/locales/en.yml +95 -0
- data/decidim-budgets/config/locales/es.yml +84 -0
- data/decidim-budgets/db/migrate/20170127114122_create_projects.rb +15 -0
- data/decidim-budgets/db/migrate/20170130095615_create_orders.rb +13 -0
- data/decidim-budgets/db/migrate/20170130101825_create_line_items.rb +10 -0
- data/decidim-budgets/decidim-budgets.gemspec +24 -0
- data/decidim-budgets/lib/decidim/budgets.rb +11 -0
- data/decidim-budgets/lib/decidim/budgets/admin.rb +9 -0
- data/decidim-budgets/lib/decidim/budgets/admin_engine.rb +22 -0
- data/decidim-budgets/lib/decidim/budgets/feature.rb +59 -0
- data/decidim-budgets/lib/decidim/budgets/list_engine.rb +30 -0
- data/decidim-budgets/lib/decidim/budgets/test/factories.rb +43 -0
- data/decidim-budgets/spec/commands/add_line_item_spec.rb +48 -0
- data/decidim-budgets/spec/commands/cancel_order_spec.rb +42 -0
- data/decidim-budgets/spec/commands/checkout_spec.rb +45 -0
- data/decidim-budgets/spec/commands/create_project_spec.rb +72 -0
- data/decidim-budgets/spec/commands/remove_line_item_spec.rb +31 -0
- data/decidim-budgets/spec/commands/update_project_spec.rb +65 -0
- data/decidim-budgets/spec/factories.rb +4 -0
- data/decidim-budgets/spec/features/admin_manages_projects_spec.rb +16 -0
- data/decidim-budgets/spec/features/orders_spec.rb +149 -0
- data/decidim-budgets/spec/features/process_admin_manages_projects_spec.rb +17 -0
- data/decidim-budgets/spec/forms/project_form_spec.rb +115 -0
- data/decidim-budgets/spec/models/line_item_spec.rb +35 -0
- data/decidim-budgets/spec/models/order_spec.rb +45 -0
- data/decidim-budgets/spec/models/project_spec.rb +30 -0
- data/decidim-budgets/spec/services/project_search_spec.rb +97 -0
- data/decidim-budgets/spec/shared/admin_shared_context.rb +11 -0
- data/decidim-budgets/spec/shared/manage_projects_examples.rb +104 -0
- data/decidim-budgets/spec/spec_helper.rb +2 -0
- data/decidim-comments/app/assets/javascripts/decidim/comments/bundle.js +0 -0
- data/decidim-comments/app/commands/decidim/comments/create_comment.rb +2 -1
- data/decidim-comments/app/forms/decidim/comments/comment_form.rb +1 -0
- data/decidim-comments/app/frontend/application/apollo_client.js +1 -1
- data/decidim-comments/app/frontend/application/application.component.jsx +1 -1
- data/decidim-comments/app/frontend/comments/add_comment_form.component.jsx +76 -20
- data/decidim-comments/app/frontend/comments/add_comment_form.component.test.jsx +77 -22
- data/decidim-comments/app/frontend/comments/add_comment_form.fragment.graphql +6 -0
- data/decidim-comments/app/frontend/comments/add_comment_form.mutation.graphql +2 -2
- data/decidim-comments/app/frontend/comments/comment.component.jsx +15 -15
- data/decidim-comments/app/frontend/comments/comment.component.test.jsx +42 -41
- data/decidim-comments/app/frontend/comments/comment_order_selector.component.jsx +1 -1
- data/decidim-comments/app/frontend/comments/comment_thread.component.jsx +7 -7
- data/decidim-comments/app/frontend/comments/comment_thread.component.test.jsx +21 -19
- data/decidim-comments/app/frontend/comments/comments.component.jsx +21 -17
- data/decidim-comments/app/frontend/comments/comments.component.test.jsx +47 -32
- data/decidim-comments/app/frontend/comments/comments.query.graphql +6 -3
- data/decidim-comments/app/frontend/comments/down_vote_button.component.jsx +21 -10
- data/decidim-comments/app/frontend/comments/up_vote_button.component.jsx +23 -12
- data/decidim-comments/app/frontend/comments/vote_button.component.jsx +15 -7
- data/decidim-comments/app/frontend/comments/vote_button_component.test.jsx +7 -2
- data/decidim-comments/app/frontend/entry.js +1 -8
- data/decidim-comments/app/frontend/support/generate_user_data.js +13 -0
- data/decidim-comments/app/frontend/support/generate_user_group_data.js +14 -0
- data/decidim-comments/app/helpers/decidim/comments/comments_helper.rb +10 -15
- data/decidim-comments/app/models/decidim/comments/comment.rb +5 -7
- data/decidim-comments/app/types/decidim/comments/comment_type.rb +5 -1
- data/decidim-comments/config/locales/ca.yml +5 -1
- data/decidim-comments/config/locales/en.yml +4 -1
- data/decidim-comments/config/locales/es.yml +5 -1
- data/decidim-comments/db/migrate/20170123102043_add_user_group_id_to_comments.rb +5 -0
- data/decidim-comments/decidim-comments.gemspec +0 -1
- data/decidim-comments/lib/decidim/comments/engine.rb +0 -1
- data/decidim-comments/lib/decidim/comments/mutation_extensions.rb +2 -1
- data/decidim-comments/spec/commands/create_comment_spec.rb +6 -3
- data/decidim-comments/spec/commands/vote_comment_spec.rb +4 -4
- data/decidim-comments/spec/features/comments_spec.rb +27 -3
- data/decidim-comments/spec/forms/comment_form_spec.rb +6 -3
- data/decidim-comments/spec/models/comment_spec.rb +25 -32
- data/decidim-comments/spec/queries/comments_with_replies_spec.rb +2 -2
- data/decidim-comments/spec/types/comment_type_spec.rb +2 -2
- data/decidim-comments/spec/types/query_type_spec.rb +5 -5
- data/decidim-dev/app/views/decidim/dummy_resource/_linked_dummys.html.erb +5 -0
- data/decidim-dev/config/locales/en.yml +5 -0
- data/decidim-dev/decidim-dev.gemspec +3 -3
- data/decidim-dev/lib/decidim/dev/assets/avatar.jpg +0 -0
- data/decidim-dev/lib/decidim/dev/assets/icon.png +0 -0
- data/decidim-dev/lib/decidim/dev/test/base_spec_helper.rb +1 -0
- data/decidim-dev/lib/decidim/dev/test/rspec_support/action_mailer.rb +1 -1
- data/decidim-dev/lib/decidim/dev/test/rspec_support/engine_routes.rb +9 -5
- data/decidim-dev/lib/decidim/dev/test/rspec_support/feature.rb +24 -0
- data/decidim-meetings/app/assets/config/decidim_meetings_manifest.js +2 -0
- data/decidim-meetings/app/assets/javascripts/decidim/meetings/map.js.es6.erb +92 -0
- data/decidim-meetings/app/assets/stylesheets/decidim/meetings/map.css +1 -0
- data/decidim-meetings/app/commands/decidim/meetings/admin/close_meeting.rb +53 -0
- data/decidim-meetings/app/commands/decidim/meetings/admin/create_meeting.rb +15 -3
- data/decidim-meetings/app/commands/decidim/meetings/admin/update_meeting.rb +15 -3
- data/decidim-meetings/app/controllers/decidim/meetings/admin/application_controller.rb +9 -0
- data/decidim-meetings/app/controllers/decidim/meetings/admin/attachments_controller.rb +29 -0
- data/decidim-meetings/app/controllers/decidim/meetings/admin/meeting_closes_controller.rb +38 -0
- data/decidim-meetings/app/controllers/decidim/meetings/admin/meetings_controller.rb +0 -12
- data/decidim-meetings/app/controllers/decidim/meetings/meetings_controller.rb +11 -9
- data/decidim-meetings/app/forms/decidim/meetings/admin/close_meeting_form.rb +31 -0
- data/decidim-meetings/app/forms/decidim/meetings/admin/meeting_form.rb +0 -2
- data/decidim-meetings/app/helpers/decidim/meetings/admin/application_helper.rb +12 -0
- data/decidim-meetings/app/helpers/decidim/meetings/application_helper.rb +1 -0
- data/decidim-meetings/app/helpers/decidim/meetings/map_helper.rb +46 -0
- data/decidim-meetings/app/models/decidim/meetings/meeting.rb +11 -15
- data/decidim-meetings/app/services/decidim/meetings/meeting_search.rb +0 -1
- data/decidim-meetings/app/services/decidim/meetings/static_map_generator.rb +50 -0
- data/decidim-meetings/app/views/decidim/meetings/admin/meeting_closes/_form.html.erb +23 -0
- data/decidim-meetings/app/views/decidim/meetings/admin/meeting_closes/edit.html.erb +9 -0
- data/decidim-meetings/app/views/decidim/meetings/admin/meetings/_form.html.erb +2 -6
- data/decidim-meetings/app/views/decidim/meetings/admin/meetings/index.html.erb +14 -0
- data/decidim-meetings/app/views/decidim/meetings/meetings/_datetime.html.erb +8 -0
- data/decidim-meetings/app/views/decidim/meetings/meetings/_filters.html.erb +2 -2
- data/decidim-meetings/app/views/decidim/meetings/meetings/_filters_small_view.html.erb +18 -0
- data/decidim-meetings/app/views/decidim/meetings/meetings/_linked_meetings.html.erb +22 -0
- data/decidim-meetings/app/views/decidim/meetings/meetings/_meetings.html.erb +3 -10
- data/decidim-meetings/app/views/decidim/meetings/meetings/index.html.erb +42 -0
- data/decidim-meetings/app/views/decidim/meetings/meetings/index.js.erb +6 -0
- data/decidim-meetings/app/views/decidim/meetings/meetings/show.html.erb +33 -7
- data/decidim-meetings/bin/rails +1 -1
- data/decidim-meetings/config/i18n-tasks.yml +2 -0
- data/decidim-meetings/config/locales/ca.yml +37 -4
- data/decidim-meetings/config/locales/en.yml +34 -1
- data/decidim-meetings/config/locales/es.yml +36 -3
- data/decidim-meetings/db/migrate/20170110142105_close_a_meeting.rb +9 -0
- data/decidim-meetings/db/migrate/20170123151650_add_latitude_and_longitude_to_meetings.rb +6 -0
- data/decidim-meetings/db/migrate/20170129153716_remove_short_description_from_meetings.rb +5 -0
- data/decidim-meetings/decidim-meetings.gemspec +7 -0
- data/decidim-meetings/lib/decidim/meetings/admin_engine.rb +31 -1
- data/decidim-meetings/lib/decidim/meetings/feature.rb +20 -6
- data/decidim-meetings/lib/decidim/meetings/list_engine.rb +10 -1
- data/decidim-meetings/lib/decidim/meetings/seeds/Exampledocument.pdf +0 -0
- data/decidim-meetings/lib/decidim/meetings/seeds/city.jpeg +0 -0
- data/decidim-meetings/lib/decidim/meetings/test/factories.rb +23 -0
- data/decidim-meetings/spec/commands/close_meeting_spec.rb +78 -0
- data/decidim-meetings/spec/commands/create_meeting_spec.rb +22 -3
- data/decidim-meetings/spec/commands/update_meeting_spec.rb +32 -3
- data/decidim-meetings/spec/controllers/meetings_controller_spec.rb +41 -0
- data/decidim-meetings/spec/factories.rb +3 -13
- data/decidim-meetings/spec/features/admin_manages_meetings_attachments_spec.rb +10 -0
- data/decidim-meetings/spec/features/explore_meetings_spec.rb +55 -1
- data/decidim-meetings/spec/features/process_admin_manages_meetings_attachments_spec.rb +12 -0
- data/decidim-meetings/spec/forms/close_meeting_form_spec.rb +90 -0
- data/decidim-meetings/spec/forms/meeting_form_spec.rb +1 -7
- data/decidim-meetings/spec/models/meeting_spec.rb +42 -24
- data/decidim-meetings/spec/services/meeting_search_spec.rb +1 -17
- data/decidim-meetings/spec/services/static_map_generator_spec.rb +33 -0
- data/decidim-meetings/spec/shared/manage_attachments_examples.rb +17 -0
- data/decidim-meetings/spec/shared/manage_meetings_examples.rb +58 -8
- data/decidim-meetings/spec/spec_helper.rb +5 -0
- data/decidim-meetings/spec/support/geocoder.rb +7 -0
- data/decidim-meetings/vendor/assets/javascripts/leaflet-svg-icon.js +179 -0
- data/decidim-meetings/vendor/assets/javascripts/leaflet-tilelayer-here.js +166 -0
- data/decidim-meetings/vendor/assets/javascripts/leaflet.js +9 -0
- data/decidim-meetings/vendor/assets/stylesheets/leaflet.css +624 -0
- data/decidim-pages/app/models/decidim/pages/page.rb +10 -1
- data/decidim-pages/app/views/decidim/pages/application/show.html.erb +2 -1
- data/decidim-pages/spec/commands/create_page_spec.rb +2 -2
- data/decidim-pages/spec/commands/destroy_page_spec.rb +1 -1
- data/decidim-pages/spec/commands/update_page_spec.rb +1 -1
- data/decidim-pages/spec/factories.rb +1 -1
- data/decidim-pages/spec/features/admin_spec.rb +1 -0
- data/decidim-pages/spec/models/page_spec.rb +15 -0
- data/decidim-proposals/app/assets/stylesheets/decidim/proposals/social_share.css.scss +5 -0
- data/decidim-proposals/app/commands/decidim/proposals/admin/answer_proposal.rb +43 -0
- data/decidim-proposals/app/commands/decidim/proposals/create_proposal.rb +1 -0
- data/decidim-proposals/app/controllers/decidim/proposals/admin/proposal_answers_controller.rb +37 -0
- data/decidim-proposals/app/controllers/decidim/proposals/admin/proposals_controller.rb +1 -0
- data/decidim-proposals/app/controllers/decidim/proposals/proposal_votes_controller.rb +18 -7
- data/decidim-proposals/app/controllers/decidim/proposals/proposals_controller.rb +8 -7
- data/decidim-proposals/app/forms/decidim/proposals/admin/proposal_answer_form.rb +18 -0
- data/decidim-proposals/app/forms/decidim/proposals/proposal_form.rb +1 -0
- data/decidim-proposals/app/helpers/decidim/proposals/application_helper.rb +17 -0
- data/decidim-proposals/app/helpers/decidim/proposals/proposal_votes_helper.rb +19 -0
- data/decidim-proposals/app/models/decidim/proposals/abilities/current_user.rb +59 -0
- data/decidim-proposals/app/models/decidim/proposals/proposal.rb +30 -33
- data/decidim-proposals/app/models/decidim/proposals/proposal_vote.rb +2 -0
- data/decidim-proposals/app/services/decidim/proposals/proposal_search.rb +11 -0
- data/decidim-proposals/app/views/decidim/proposals/admin/proposal_answers/edit.html.erb +15 -0
- data/decidim-proposals/app/views/decidim/proposals/admin/proposals/index.html.erb +8 -0
- data/decidim-proposals/app/views/decidim/proposals/proposal_votes/update_buttons_and_counters.js.erb +20 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/_filters.html.erb +3 -1
- data/decidim-proposals/app/views/decidim/proposals/proposals/_filters_small_view.html.erb +18 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/_linked_proposals.html.erb +27 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/_proposal.html.erb +3 -2
- data/decidim-proposals/app/views/decidim/proposals/proposals/_proposal_badge.html.erb +3 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/_remaining_votes_count.html.erb +1 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/_share.html.erb +1 -1
- data/decidim-proposals/app/views/decidim/proposals/proposals/_vote_button.html.erb +16 -4
- data/decidim-proposals/app/views/decidim/proposals/proposals/_votes_limit.html.erb +23 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/index.html.erb +13 -3
- data/decidim-proposals/app/views/decidim/proposals/proposals/new.html.erb +6 -0
- data/decidim-proposals/app/views/decidim/proposals/proposals/show.html.erb +15 -2
- data/decidim-proposals/config/i18n-tasks.yml +3 -0
- data/decidim-proposals/config/locales/ca.yml +54 -1
- data/decidim-proposals/config/locales/en.yml +54 -0
- data/decidim-proposals/config/locales/es.yml +54 -1
- data/decidim-proposals/db/migrate/20170120151202_add_user_group_id_to_proposals.rb +5 -0
- data/decidim-proposals/db/migrate/20170131092413_add_answers_to_proposals.rb +7 -0
- data/decidim-proposals/decidim-proposals.gemspec +3 -0
- data/decidim-proposals/lib/decidim/proposals/admin_engine.rb +3 -1
- data/decidim-proposals/lib/decidim/proposals/engine.rb +7 -1
- data/decidim-proposals/lib/decidim/proposals/feature.rb +28 -1
- data/decidim-proposals/lib/decidim/proposals/test/factories.rb +83 -0
- data/decidim-proposals/spec/commands/decidim/proposals/admin_create_proposal_spec.rb +14 -0
- data/decidim-proposals/spec/commands/decidim/proposals/answer_proposal_spec.rb +53 -0
- data/decidim-proposals/spec/commands/decidim/proposals/create_proposal_spec.rb +3 -56
- data/decidim-proposals/spec/controllers/decidim/admin/proposal_answers_controller_spec.rb +45 -0
- data/decidim-proposals/spec/controllers/decidim/proposal_votes_controller_spec.rb +113 -0
- data/decidim-proposals/spec/controllers/decidim/proposals_controller_spec.rb +53 -0
- data/decidim-proposals/spec/factories.rb +1 -23
- data/decidim-proposals/spec/features/proposals_spec.rb +201 -38
- data/decidim-proposals/spec/features/vote_proposal_spec.rb +83 -11
- data/decidim-proposals/spec/forms/decidim/proposals/admin_proposal_form_spec.rb +13 -0
- data/decidim-proposals/spec/forms/decidim/proposals/proposal_answer_form_spec.rb +50 -0
- data/decidim-proposals/spec/forms/decidim/proposals/proposal_form_spec.rb +5 -93
- data/decidim-proposals/spec/helpers/application_helper_spec.rb +33 -0
- data/decidim-proposals/spec/helpers/proposal_votes_helper_spec.rb +53 -0
- data/decidim-proposals/spec/lib/decidim/proposals/feature_spec.rb +1 -1
- data/decidim-proposals/spec/models/decidim/proposals/proposal_spec.rb +21 -19
- data/decidim-proposals/spec/models/decidim/proposals/proposal_vote_spec.rb +19 -1
- data/decidim-proposals/spec/services/decidim/proposals/proposal_search_spec.rb +66 -25
- data/decidim-proposals/spec/shared/create_proposal_examples.rb +69 -0
- data/decidim-proposals/spec/shared/manage_proposals_examples.rb +49 -0
- data/decidim-proposals/spec/shared/proposal_form_examples.rb +100 -0
- data/decidim-results/.gitignore +7 -0
- data/decidim-results/README.md +23 -0
- data/decidim-results/Rakefile +2 -0
- data/decidim-results/app/assets/images/decidim/results/icon.svg +1 -0
- data/decidim-results/app/commands/decidim/results/admin/create_result.rb +65 -0
- data/decidim-results/app/commands/decidim/results/admin/update_result.rb +69 -0
- data/decidim-results/app/controllers/decidim/results/admin/application_controller.rb +14 -0
- data/decidim-results/app/controllers/decidim/results/admin/results_controller.rb +69 -0
- data/decidim-results/app/controllers/decidim/results/application_controller.rb +13 -0
- data/decidim-results/app/controllers/decidim/results/results_controller.rb +42 -0
- data/decidim-results/app/forms/decidim/results/admin/result_form.rb +40 -0
- data/decidim-results/app/helpers/decidim/results/application_helper.rb +11 -0
- data/decidim-results/app/models/decidim/results/application_record.rb +9 -0
- data/decidim-results/app/models/decidim/results/result.rb +15 -0
- data/decidim-results/app/services/decidim/results/result_search.rb +44 -0
- data/decidim-results/app/services/decidim/results/result_stats_calculator.rb +51 -0
- data/decidim-results/app/views/decidim/results/admin/results/_form.html.erb +23 -0
- data/decidim-results/app/views/decidim/results/admin/results/edit.html.erb +9 -0
- data/decidim-results/app/views/decidim/results/admin/results/index.html.erb +27 -0
- data/decidim-results/app/views/decidim/results/admin/results/new.html.erb +9 -0
- data/decidim-results/app/views/decidim/results/results/_count.html.erb +1 -0
- data/decidim-results/app/views/decidim/results/results/_filters.html.erb +22 -0
- data/decidim-results/app/views/decidim/results/results/_linked_results.html.erb +12 -0
- data/decidim-results/app/views/decidim/results/results/_results.html.erb +16 -0
- data/decidim-results/app/views/decidim/results/results/_tags.html.erb +10 -0
- data/decidim-results/app/views/decidim/results/results/index.html.erb +22 -0
- data/decidim-results/app/views/decidim/results/results/index.js.erb +2 -0
- data/decidim-results/app/views/decidim/results/results/show.html.erb +52 -0
- data/decidim-results/bin/rails +14 -0
- data/decidim-results/config/i18n-tasks.yml +5 -0
- data/decidim-results/config/locales/ca.yml +61 -0
- data/decidim-results/config/locales/en.yml +62 -0
- data/decidim-results/config/locales/es.yml +61 -0
- data/decidim-results/db/migrate/20170116104125_create_results.rb +14 -0
- data/decidim-results/db/migrate/20170129164553_remove_short_description_from_results.rb +5 -0
- data/decidim-results/decidim-results.gemspec +26 -0
- data/decidim-results/lib/decidim/results.rb +11 -0
- data/decidim-results/lib/decidim/results/admin.rb +9 -0
- data/decidim-results/lib/decidim/results/admin_engine.rb +22 -0
- data/decidim-results/lib/decidim/results/feature.rb +52 -0
- data/decidim-results/lib/decidim/results/list_engine.rb +19 -0
- data/decidim-results/lib/decidim/results/test/factories.rb +11 -0
- data/decidim-results/spec/commands/create_result_spec.rb +90 -0
- data/decidim-results/spec/commands/update_result_spec.rb +83 -0
- data/decidim-results/spec/factories.rb +6 -0
- data/decidim-results/spec/features/admin_manages_results_spec.rb +16 -0
- data/decidim-results/spec/features/explore_results_spec.rb +186 -0
- data/decidim-results/spec/features/process_admin_manages_results_spec.rb +17 -0
- data/decidim-results/spec/forms/result_form_spec.rb +91 -0
- data/decidim-results/spec/models/result_spec.rb +18 -0
- data/decidim-results/spec/services/result_search_spec.rb +97 -0
- data/decidim-results/spec/services/result_stats_calculator_spec.rb +93 -0
- data/decidim-results/spec/shared/admin_shared_context.rb +11 -0
- data/decidim-results/spec/shared/manage_results_examples.rb +96 -0
- data/decidim-results/spec/spec_helper.rb +2 -0
- data/decidim-system/app/assets/javascripts/decidim/system/application.js.es6 +1 -3
- data/decidim-system/app/views/layouts/decidim/system/_header.html.erb +2 -2
- data/decidim-system/decidim-system.gemspec +0 -1
- data/decidim-system/lib/decidim/system/engine.rb +0 -1
- data/decidim-system/spec/features/manage_admins_spec.rb +1 -1
- data/decidim-system/spec/features/organizations_spec.rb +1 -1
- data/decidim.gemspec +2 -0
- data/docs/how_to_create_a_plugin.md +0 -2
- data/lib/decidim.rb +2 -0
- data/lib/generators/decidim/install_generator.rb +1 -0
- data/lib/generators/decidim/templates/Gemfile.erb +10 -1
- data/lib/generators/decidim/templates/initializer.rb +9 -0
- data/lib/generators/decidim/templates/secrets.yml.erb +3 -0
- data/lib/generators/decidim/templates/social_share_button.rb +1 -1
- data/package.json +2 -3
- data/yarn.lock +10 -8
- metadata +265 -32
- data/decidim-admin/app/helpers/decidim/admin/aria_selected_link_to_helper.rb +0 -28
- data/decidim-admin/app/views/decidim/admin/participatory_process_attachments/edit.html.erb +0 -9
- data/decidim-admin/app/views/decidim/admin/participatory_process_attachments/index.html.erb +0 -37
- data/decidim-admin/app/views/decidim/admin/participatory_process_attachments/show.html.erb +0 -25
- data/decidim-comments/app/frontend/support/generate_current_user_data.js +0 -13
- data/decidim-comments/app/types/decidim/comments/author_type.rb +0 -15
- data/decidim-comments/spec/types/author_type_spec.rb +0 -21
- data/decidim-dev/lib/decidim/dev/assets/avatar.svg +0 -14
- data/decidim-proposals/app/views/decidim/proposals/proposal_votes/create.js.erb +0 -5
@@ -28,7 +28,7 @@ class CommentOrderSelector extends Component {
|
|
28
28
|
<span className="order-by__text">{ I18n.t("components.comment_order_selector.title") }</span>
|
29
29
|
<ul className="dropdown menu" data-dropdown-menu>
|
30
30
|
<li>
|
31
|
-
<a>{ I18n.t(`components.comment_order_selector.${orderBy}`) }</a>
|
31
|
+
<a>{ I18n.t(`components.comment_order_selector.order.${orderBy}`) }</a>
|
32
32
|
<ul className="menu">
|
33
33
|
<li>
|
34
34
|
<a href="" className="test" onClick={(event) => this._updateOrder(event, "best_rated")} >
|
@@ -15,15 +15,15 @@ import commentThreadFragment from './comment_thread.fragment.graphql'
|
|
15
15
|
*/
|
16
16
|
class CommentThread extends Component {
|
17
17
|
render() {
|
18
|
-
const { comment,
|
18
|
+
const { comment, session, votable } = this.props;
|
19
19
|
|
20
20
|
return (
|
21
21
|
<div>
|
22
22
|
{this._renderTitle()}
|
23
23
|
<div className="comment-thread">
|
24
|
-
<Comment
|
25
|
-
comment={filter(Comment.fragments.comment, comment)}
|
26
|
-
|
24
|
+
<Comment
|
25
|
+
comment={filter(Comment.fragments.comment, comment)}
|
26
|
+
session={session}
|
27
27
|
votable={votable}
|
28
28
|
isRootComment
|
29
29
|
/>
|
@@ -39,7 +39,7 @@ class CommentThread extends Component {
|
|
39
39
|
*/
|
40
40
|
_renderTitle() {
|
41
41
|
const { comment: { author, hasReplies } } = this.props;
|
42
|
-
|
42
|
+
|
43
43
|
if (hasReplies) {
|
44
44
|
return (
|
45
45
|
<h6 className="comment-thread__title">
|
@@ -60,8 +60,8 @@ CommentThread.fragments = {
|
|
60
60
|
};
|
61
61
|
|
62
62
|
CommentThread.propTypes = {
|
63
|
-
|
64
|
-
|
63
|
+
session: PropTypes.shape({
|
64
|
+
user: PropTypes.any.isRequired
|
65
65
|
}),
|
66
66
|
comment: propType(CommentThread.fragments.comment).isRequired,
|
67
67
|
votable: PropTypes.bool
|
@@ -2,18 +2,18 @@ import { shallow } from 'enzyme';
|
|
2
2
|
import { filter } from 'graphql-anywhere';
|
3
3
|
import gql from 'graphql-tag';
|
4
4
|
|
5
|
-
import CommentThread
|
6
|
-
import Comment
|
5
|
+
import CommentThread from './comment_thread.component';
|
6
|
+
import Comment from './comment.component';
|
7
7
|
|
8
|
-
import commentThreadFragment
|
8
|
+
import commentThreadFragment from './comment_thread.fragment.graphql'
|
9
9
|
|
10
|
-
import stubComponent
|
11
|
-
import generateCommentsData
|
12
|
-
import
|
10
|
+
import stubComponent from '../support/stub_component';
|
11
|
+
import generateCommentsData from '../support/generate_comments_data';
|
12
|
+
import generateCUserData from '../support/generate_user_data';
|
13
13
|
|
14
14
|
describe('<CommentThread />', () => {
|
15
15
|
let comment = {};
|
16
|
-
let
|
16
|
+
let session = null;
|
17
17
|
|
18
18
|
const commentFragment = gql`
|
19
19
|
fragment Comment on Comment {
|
@@ -29,19 +29,21 @@ describe('<CommentThread />', () => {
|
|
29
29
|
|
30
30
|
beforeEach(() => {
|
31
31
|
const commentsData = generateCommentsData(1);
|
32
|
-
|
32
|
+
|
33
33
|
const fragment = gql`
|
34
34
|
${commentThreadFragment}
|
35
35
|
${commentFragment}
|
36
36
|
`;
|
37
37
|
|
38
|
-
|
38
|
+
session = {
|
39
|
+
user: generateCUserData()
|
40
|
+
};
|
39
41
|
comment = filter(fragment, commentsData[0]);
|
40
42
|
});
|
41
43
|
|
42
44
|
describe("when comment doesn't have replies", () => {
|
43
45
|
it("should not render a title with author name", () => {
|
44
|
-
const wrapper = shallow(<CommentThread comment={comment}
|
46
|
+
const wrapper = shallow(<CommentThread comment={comment} session={session} />);
|
45
47
|
expect(wrapper.find('h6.comment-thread__title')).not.to.present();
|
46
48
|
});
|
47
49
|
});
|
@@ -52,30 +54,30 @@ describe('<CommentThread />', () => {
|
|
52
54
|
});
|
53
55
|
|
54
56
|
it("should render a h6 comment-thread__title with author name", () => {
|
55
|
-
const wrapper = shallow(<CommentThread comment={comment}
|
57
|
+
const wrapper = shallow(<CommentThread comment={comment} session={session} />);
|
56
58
|
expect(wrapper.find('h6.comment-thread__title')).to.have.text(`Conversation with ${comment.author.name}`);
|
57
59
|
});
|
58
60
|
});
|
59
61
|
|
60
62
|
describe("should render a Comment", () => {
|
61
|
-
it("and pass the
|
62
|
-
const wrapper = shallow(<CommentThread comment={comment}
|
63
|
-
expect(wrapper.find(Comment).first()).to.have.prop("
|
63
|
+
it("and pass the session as a prop to it", () => {
|
64
|
+
const wrapper = shallow(<CommentThread comment={comment} session={session} />);
|
65
|
+
expect(wrapper.find(Comment).first()).to.have.prop("session").deep.equal(session);
|
64
66
|
});
|
65
67
|
|
66
68
|
it("and pass filter comment data as a prop to it", () => {
|
67
|
-
const wrapper = shallow(<CommentThread comment={comment}
|
69
|
+
const wrapper = shallow(<CommentThread comment={comment} session={session} />);
|
68
70
|
expect(wrapper.find(Comment).first()).to.have.prop("comment").deep.equal(filter(commentFragment, comment));
|
69
71
|
});
|
70
72
|
|
71
73
|
it("and pass the votable as a prop to it", () => {
|
72
|
-
const wrapper = shallow(<CommentThread comment={comment}
|
74
|
+
const wrapper = shallow(<CommentThread comment={comment} session={session} votable />);
|
73
75
|
expect(wrapper.find(Comment).first()).to.have.prop("votable").equal(true);
|
74
76
|
});
|
75
|
-
|
77
|
+
|
76
78
|
it("and pass the isRootComment equal true", () => {
|
77
|
-
const wrapper = shallow(<CommentThread comment={comment}
|
79
|
+
const wrapper = shallow(<CommentThread comment={comment} session={session} votable isRootComment />);
|
78
80
|
expect(wrapper.find(Comment).first()).to.have.prop("isRootComment").equal(true);
|
79
81
|
});
|
80
|
-
});
|
82
|
+
});
|
81
83
|
});
|
@@ -24,8 +24,8 @@ export class Comments extends Component {
|
|
24
24
|
const { comments, reorderComments, orderBy, loading } = this.props;
|
25
25
|
let commentClasses = "comments";
|
26
26
|
let commentHeader = I18n.t("components.comments.title", { count: comments.length });
|
27
|
-
|
28
|
-
if (loading) {
|
27
|
+
|
28
|
+
if (loading) {
|
29
29
|
commentClasses += " loading-comments"
|
30
30
|
commentHeader = I18n.t("components.comments.loading");
|
31
31
|
}
|
@@ -37,7 +37,7 @@ export class Comments extends Component {
|
|
37
37
|
<h2 className="order-by__text section-heading">
|
38
38
|
{ commentHeader }
|
39
39
|
</h2>
|
40
|
-
<CommentOrderSelector
|
40
|
+
<CommentOrderSelector
|
41
41
|
reorderComments={reorderComments}
|
42
42
|
defaultOrderBy={orderBy}
|
43
43
|
/>
|
@@ -55,13 +55,13 @@ export class Comments extends Component {
|
|
55
55
|
* @returns {ReactComponent[]} - A collection of CommentThread components
|
56
56
|
*/
|
57
57
|
_renderCommentThreads() {
|
58
|
-
const { comments,
|
58
|
+
const { comments, session, options: { votable } } = this.props;
|
59
59
|
|
60
60
|
return comments.map((comment) => (
|
61
|
-
<CommentThread
|
62
|
-
key={comment.id}
|
63
|
-
comment={filter(CommentThread.fragments.comment, comment)}
|
64
|
-
|
61
|
+
<CommentThread
|
62
|
+
key={comment.id}
|
63
|
+
comment={filter(CommentThread.fragments.comment, comment)}
|
64
|
+
session={session}
|
65
65
|
votable={votable}
|
66
66
|
/>
|
67
67
|
))
|
@@ -73,12 +73,12 @@ export class Comments extends Component {
|
|
73
73
|
* @returns {Void|ReactComponent} - A AddCommentForm component or nothing
|
74
74
|
*/
|
75
75
|
_renderAddCommentForm() {
|
76
|
-
const {
|
76
|
+
const { session, commentableId, commentableType, options: { arguable } } = this.props;
|
77
77
|
|
78
|
-
if (
|
78
|
+
if (session) {
|
79
79
|
return (
|
80
|
-
<AddCommentForm
|
81
|
-
|
80
|
+
<AddCommentForm
|
81
|
+
session={session}
|
82
82
|
commentableId={commentableId}
|
83
83
|
commentableType={commentableType}
|
84
84
|
arguable={arguable}
|
@@ -95,8 +95,8 @@ Comments.propTypes = {
|
|
95
95
|
comments: PropTypes.arrayOf(PropTypes.shape({
|
96
96
|
id: PropTypes.string.isRequired
|
97
97
|
})),
|
98
|
-
|
99
|
-
|
98
|
+
session: PropTypes.shape({
|
99
|
+
user: PropTypes.any.isRequired
|
100
100
|
}),
|
101
101
|
commentableId: PropTypes.string.isRequired,
|
102
102
|
commentableType: PropTypes.string.isRequired,
|
@@ -111,17 +111,21 @@ Comments.propTypes = {
|
|
111
111
|
* Wrap the Comments component with a GraphQL query and children
|
112
112
|
* fragments.
|
113
113
|
*/
|
114
|
+
|
115
|
+
window.Comments = Comments;
|
116
|
+
|
114
117
|
const CommentsWithData = graphql(gql`
|
115
118
|
${commentsQuery}
|
119
|
+
${AddCommentForm.fragments.user}
|
116
120
|
${CommentThread.fragments.comment}
|
117
121
|
`, {
|
118
122
|
options: {
|
119
123
|
pollInterval: 15000
|
120
124
|
},
|
121
|
-
props: ({ ownProps, data: {loading,
|
125
|
+
props: ({ ownProps, data: { loading, session, comments, refetch }}) => ({
|
122
126
|
loading: loading,
|
123
127
|
comments: comments || [],
|
124
|
-
|
128
|
+
session,
|
125
129
|
commentableId: ownProps.commentableId,
|
126
130
|
commentableType: ownProps.commentableType,
|
127
131
|
orderBy: ownProps.orderBy,
|
@@ -141,7 +145,7 @@ const CommentsWithData = graphql(gql`
|
|
141
145
|
*/
|
142
146
|
const CommentsApplication = ({ locale, commentableId, commentableType, options }) => (
|
143
147
|
<Application locale={locale}>
|
144
|
-
<CommentsWithData
|
148
|
+
<CommentsWithData
|
145
149
|
commentableId={commentableId}
|
146
150
|
commentableType={commentableType}
|
147
151
|
options={options}
|
@@ -1,22 +1,22 @@
|
|
1
|
-
import { shallow }
|
2
|
-
import { filter }
|
3
|
-
import gql
|
1
|
+
import { shallow } from 'enzyme';
|
2
|
+
import { filter } from 'graphql-anywhere';
|
3
|
+
import gql from 'graphql-tag';
|
4
4
|
|
5
|
-
import { Comments }
|
6
|
-
import CommentThread
|
7
|
-
import AddCommentForm
|
8
|
-
import CommentOrderSelector
|
5
|
+
import { Comments } from './comments.component';
|
6
|
+
import CommentThread from './comment_thread.component';
|
7
|
+
import AddCommentForm from './add_comment_form.component';
|
8
|
+
import CommentOrderSelector from './comment_order_selector.component';
|
9
9
|
|
10
|
-
import commentsQuery
|
10
|
+
import commentsQuery from './comments.query.graphql'
|
11
11
|
|
12
|
-
import stubComponent
|
13
|
-
import generateCommentsData
|
14
|
-
import
|
15
|
-
import resolveGraphQLQuery
|
12
|
+
import stubComponent from '../support/stub_component';
|
13
|
+
import generateCommentsData from '../support/generate_comments_data';
|
14
|
+
import generateUserData from '../support/generate_user_data';
|
15
|
+
import resolveGraphQLQuery from '../support/resolve_graphql_query';
|
16
16
|
|
17
17
|
describe('<Comments />', () => {
|
18
18
|
let comments = [];
|
19
|
-
let
|
19
|
+
let session = null;
|
20
20
|
const commentableId = "1";
|
21
21
|
const commentableType = "Decidim::ParticipatoryProcess";
|
22
22
|
const orderBy = "older";
|
@@ -28,6 +28,14 @@ describe('<Comments />', () => {
|
|
28
28
|
}
|
29
29
|
`;
|
30
30
|
|
31
|
+
const addCommentFragment = gql`
|
32
|
+
fragment AddCommentForm on User {
|
33
|
+
verifiedUserGroups {
|
34
|
+
id
|
35
|
+
}
|
36
|
+
}
|
37
|
+
`;
|
38
|
+
|
31
39
|
stubComponent(CommentOrderSelector)
|
32
40
|
|
33
41
|
stubComponent(CommentThread, {
|
@@ -36,21 +44,28 @@ describe('<Comments />', () => {
|
|
36
44
|
}
|
37
45
|
});
|
38
46
|
|
39
|
-
stubComponent(AddCommentForm
|
47
|
+
stubComponent(AddCommentForm, {
|
48
|
+
fragments: {
|
49
|
+
user: addCommentFragment
|
50
|
+
}
|
51
|
+
});
|
40
52
|
|
41
53
|
beforeEach(() => {
|
42
|
-
const
|
54
|
+
const userData = generateUserData();
|
43
55
|
const commentsData = generateCommentsData(15);
|
44
56
|
|
45
57
|
const query = gql`
|
46
58
|
${commentsQuery}
|
47
59
|
${commentThreadFragment}
|
60
|
+
${addCommentFragment}
|
48
61
|
`;
|
49
62
|
|
50
63
|
const result = resolveGraphQLQuery(query, {
|
51
64
|
filterResult: false,
|
52
65
|
rootValue: {
|
53
|
-
|
66
|
+
session: {
|
67
|
+
user: userData
|
68
|
+
},
|
54
69
|
comments: commentsData
|
55
70
|
},
|
56
71
|
variables: {
|
@@ -60,40 +75,40 @@ describe('<Comments />', () => {
|
|
60
75
|
}
|
61
76
|
});
|
62
77
|
|
63
|
-
|
78
|
+
session = result.session;
|
64
79
|
comments = result.comments;
|
65
80
|
});
|
66
81
|
|
67
82
|
it("should render loading-comments calss and the respective loading text", () => {
|
68
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
83
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} loading />);
|
69
84
|
expect(wrapper.find('.loading-comments')).to.be.present();
|
70
85
|
expect(wrapper.find('h2')).to.have.text("Loading comments ...");
|
71
86
|
});
|
72
87
|
|
73
88
|
it("should render a div of id comments", () => {
|
74
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
89
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
75
90
|
expect(wrapper.find('#comments')).to.be.present();
|
76
91
|
});
|
77
92
|
|
78
93
|
describe("should render a CommentThread component for each comment", () => {
|
79
94
|
it("and pass filter comment data as a prop to it", () => {
|
80
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
95
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
81
96
|
expect(wrapper).to.have.exactly(comments.length).descendants(CommentThread);
|
82
97
|
wrapper.find(CommentThread).forEach((node, idx) => {
|
83
98
|
expect(node).to.have.prop("comment").deep.equal(filter(commentThreadFragment, comments[idx]));
|
84
99
|
});
|
85
100
|
});
|
86
101
|
|
87
|
-
it("and pass the
|
88
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
102
|
+
it("and pass the session as a prop to it", () => {
|
103
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
89
104
|
expect(wrapper).to.have.exactly(comments.length).descendants(CommentThread);
|
90
105
|
wrapper.find(CommentThread).forEach((node) => {
|
91
|
-
expect(node).to.have.prop("
|
106
|
+
expect(node).to.have.prop("session").deep.equal(session);
|
92
107
|
});
|
93
108
|
});
|
94
109
|
|
95
110
|
it("and pass the option votable as a prop to it", () => {
|
96
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
111
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{ votable: true }} reorderComments={reorderComments} orderBy={orderBy} />);
|
97
112
|
expect(wrapper).to.have.exactly(comments.length).descendants(CommentThread);
|
98
113
|
wrapper.find(CommentThread).forEach((node) => {
|
99
114
|
expect(node).to.have.prop("votable").equal(true);
|
@@ -102,41 +117,41 @@ describe('<Comments />', () => {
|
|
102
117
|
});
|
103
118
|
|
104
119
|
it("should render comments count", () => {
|
105
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
120
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
106
121
|
const rex = new RegExp(`${comments.length} comments`);
|
107
122
|
expect(wrapper.find('h2.section-heading')).to.have.text().match(rex);
|
108
123
|
});
|
109
124
|
|
110
125
|
it("should render a AddCommentForm component and pass 'options.arguable' as a prop", () => {
|
111
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
126
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{ arguable: true }} reorderComments={reorderComments} orderBy={orderBy} />);
|
112
127
|
expect(wrapper).to.have.exactly(1).descendants(AddCommentForm);
|
113
128
|
expect(wrapper.find(AddCommentForm)).to.have.prop('arguable').equal(true);
|
114
129
|
});
|
115
130
|
|
116
|
-
describe("if
|
131
|
+
describe("if session is not present", () => {
|
117
132
|
beforeEach(() => {
|
118
|
-
|
133
|
+
session = null;
|
119
134
|
});
|
120
135
|
|
121
136
|
it("should not render a AddCommentForm component", () => {
|
122
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
137
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
123
138
|
expect(wrapper.find(AddCommentForm)).not.to.be.present();
|
124
139
|
});
|
125
140
|
});
|
126
141
|
|
127
142
|
describe("should render a CommentOrderSelector component", () => {
|
128
143
|
it("should render a CommentOrderSelector component", () => {
|
129
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
144
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
130
145
|
expect(wrapper.find(CommentOrderSelector)).to.be.present();
|
131
146
|
});
|
132
147
|
|
133
148
|
it("and pass the reorderComments as a prop to it", () => {
|
134
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
149
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
135
150
|
expect(wrapper.find(CommentOrderSelector)).to.have.prop('reorderComments').deep.equal(reorderComments);
|
136
151
|
});
|
137
152
|
|
138
153
|
it("and pass the orderBy as a prop to it", () => {
|
139
|
-
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType}
|
154
|
+
const wrapper = shallow(<Comments comments={comments} commentableId={commentableId} commentableType={commentableType} session={session} options={{}} reorderComments={reorderComments} orderBy={orderBy} />);
|
140
155
|
expect(wrapper.find(CommentOrderSelector)).to.have.prop('defaultOrderBy').equal('older');
|
141
156
|
});
|
142
157
|
});
|
@@ -1,7 +1,10 @@
|
|
1
1
|
query GetComments($commentableId: String!, $commentableType: String!, $orderBy: String) {
|
2
|
-
|
3
|
-
|
4
|
-
|
2
|
+
session {
|
3
|
+
user {
|
4
|
+
name
|
5
|
+
avatarUrl
|
6
|
+
}
|
7
|
+
...AddCommentForm
|
5
8
|
}
|
6
9
|
comments(commentableId: $commentableId, commentableType: $commentableType, orderBy: $orderBy) {
|
7
10
|
id
|
@@ -12,15 +12,26 @@ import commentDataFragment from './comment_data.fragment.graphql';
|
|
12
12
|
import upVoteFragment from './up_vote.fragment.graphql';
|
13
13
|
import downVoteFragment from './down_vote.fragment.graphql';
|
14
14
|
|
15
|
-
export const DownVoteButton = ({ comment: { downVotes, upVoted, downVoted }, downVote }) =>
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
15
|
+
export const DownVoteButton = ({ comment: { downVotes, upVoted, downVoted }, downVote }) => {
|
16
|
+
let selectedClass = '';
|
17
|
+
|
18
|
+
if (downVoted) {
|
19
|
+
selectedClass = 'is-vote-selected';
|
20
|
+
} else if (upVoted) {
|
21
|
+
selectedClass = 'is-vote-notselected';
|
22
|
+
}
|
23
|
+
|
24
|
+
return (
|
25
|
+
<VoteButton
|
26
|
+
buttonClassName="comment__votes--down"
|
27
|
+
iconName="icon-chevron-bottom"
|
28
|
+
votes={downVotes}
|
29
|
+
voteAction={downVote}
|
30
|
+
disabled={upVoted || downVoted}
|
31
|
+
selectedClass={selectedClass}
|
32
|
+
/>
|
33
|
+
);
|
34
|
+
};
|
24
35
|
|
25
36
|
DownVoteButton.fragments = {
|
26
37
|
comment: gql`
|
@@ -35,7 +46,7 @@ DownVoteButton.propTypes = {
|
|
35
46
|
|
36
47
|
const DownVoteButtonWithMutation = graphql(gql`
|
37
48
|
${downVoteMutation}
|
38
|
-
${commentFragment}
|
49
|
+
${commentFragment}
|
39
50
|
${commentDataFragment}
|
40
51
|
${upVoteFragment}
|
41
52
|
${downVoteFragment}
|