decidim-enhanced_textwork 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README.md +64 -0
- data/Rakefile +3 -0
- data/app/cells/decidim/enhanced_textwork/amendment/show.erb +14 -0
- data/app/cells/decidim/enhanced_textwork/amendment_cell.rb +39 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_cell.rb +49 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_link_to_paragraph/show.erb +13 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_link_to_paragraph_cell.rb +57 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_m/footer.erb +6 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_m/tags.erb +1 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_draft_m_cell.rb +44 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_drafts/reported_content/show.erb +3 -0
- data/app/cells/decidim/enhanced_textwork/collaborative_drafts/reported_content_cell.rb +15 -0
- data/app/cells/decidim/enhanced_textwork/comments/show.erb +33 -0
- data/app/cells/decidim/enhanced_textwork/comments_cell.rb +8 -0
- data/app/cells/decidim/enhanced_textwork/content_blocks/highlighted_paragraphs/elements.erb +5 -0
- data/app/cells/decidim/enhanced_textwork/content_blocks/highlighted_paragraphs/heading.erb +1 -0
- data/app/cells/decidim/enhanced_textwork/content_blocks/highlighted_paragraphs_cell.rb +19 -0
- data/app/cells/decidim/enhanced_textwork/cost_report/show.erb +35 -0
- data/app/cells/decidim/enhanced_textwork/cost_report_cell.rb +42 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs/show.erb +3 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs_cell.rb +25 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs_for_component/show.erb +19 -0
- data/app/cells/decidim/enhanced_textwork/highlighted_paragraphs_for_component_cell.rb +41 -0
- data/app/cells/decidim/enhanced_textwork/irreversible_action_modal/show.erb +27 -0
- data/app/cells/decidim/enhanced_textwork/irreversible_action_modal_cell.rb +80 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_activity_cell.rb +35 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_cell.rb +53 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_link_to_collaborative_draft_cell.rb +26 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_link_to_rejected_emendation/show.erb +9 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_link_to_rejected_emendation_cell.rb +34 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_linked_resources/show.erb +9 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_linked_resources_cell.rb +14 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_m/footer.erb +26 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_m/tags.erb +1 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_m_cell.rb +152 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_tags/show.erb +33 -0
- data/app/cells/decidim/enhanced_textwork/paragraph_tags_cell.rb +35 -0
- data/app/cells/decidim/enhanced_textwork/paragraphs_picker/paragraphs.erb +12 -0
- data/app/cells/decidim/enhanced_textwork/paragraphs_picker/show.erb +14 -0
- data/app/cells/decidim/enhanced_textwork/paragraphs_picker_cell.rb +72 -0
- data/app/cells/decidim/enhanced_textwork/participatory_text_paragraph/buttons.erb +33 -0
- data/app/cells/decidim/enhanced_textwork/participatory_text_paragraph/show.erb +38 -0
- data/app/cells/decidim/enhanced_textwork/participatory_text_paragraph_cell.rb +104 -0
- data/app/cells/decidim/enhanced_textwork/reported_content/show.erb +4 -0
- data/app/cells/decidim/enhanced_textwork/reported_content_cell.rb +13 -0
- data/app/commands/decidim/enhanced_textwork/accept_access_to_collaborative_draft.rb +70 -0
- data/app/commands/decidim/enhanced_textwork/admin/answer_paragraph.rb +74 -0
- data/app/commands/decidim/enhanced_textwork/admin/assign_paragraphs_to_valuator.rb +61 -0
- data/app/commands/decidim/enhanced_textwork/admin/create_paragraph.rb +97 -0
- data/app/commands/decidim/enhanced_textwork/admin/create_paragraph_note.rb +67 -0
- data/app/commands/decidim/enhanced_textwork/admin/destroy_paragraph.rb +32 -0
- data/app/commands/decidim/enhanced_textwork/admin/discard_participatory_text.rb +40 -0
- data/app/commands/decidim/enhanced_textwork/admin/import_from_editor_participatory_text.rb +53 -0
- data/app/commands/decidim/enhanced_textwork/admin/import_paragraphs.rb +101 -0
- data/app/commands/decidim/enhanced_textwork/admin/import_participatory_text.rb +55 -0
- data/app/commands/decidim/enhanced_textwork/admin/merge_paragraphs.rb +69 -0
- data/app/commands/decidim/enhanced_textwork/admin/notify_paragraph_answer.rb +85 -0
- data/app/commands/decidim/enhanced_textwork/admin/publish_answers.rb +67 -0
- data/app/commands/decidim/enhanced_textwork/admin/publish_participatory_text.rb +81 -0
- data/app/commands/decidim/enhanced_textwork/admin/split_paragraphs.rb +67 -0
- data/app/commands/decidim/enhanced_textwork/admin/unassign_paragraphs_from_valuator.rb +62 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_paragraph.rb +86 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_paragraph_category.rb +68 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_paragraph_scope.rb +75 -0
- data/app/commands/decidim/enhanced_textwork/admin/update_participatory_text.rb +68 -0
- data/app/commands/decidim/enhanced_textwork/create_collaborative_draft.rb +81 -0
- data/app/commands/decidim/enhanced_textwork/create_paragraph.rb +106 -0
- data/app/commands/decidim/enhanced_textwork/destroy_paragraph.rb +33 -0
- data/app/commands/decidim/enhanced_textwork/gallery_methods.rb +18 -0
- data/app/commands/decidim/enhanced_textwork/hashtags_methods.rb +36 -0
- data/app/commands/decidim/enhanced_textwork/publish_collaborative_draft.rb +93 -0
- data/app/commands/decidim/enhanced_textwork/publish_paragraph.rb +105 -0
- data/app/commands/decidim/enhanced_textwork/reject_access_to_collaborative_draft.rb +62 -0
- data/app/commands/decidim/enhanced_textwork/request_access_to_collaborative_draft.rb +49 -0
- data/app/commands/decidim/enhanced_textwork/unvote_paragraph.rb +65 -0
- data/app/commands/decidim/enhanced_textwork/update_collaborative_draft.rb +63 -0
- data/app/commands/decidim/enhanced_textwork/update_paragraph.rb +135 -0
- data/app/commands/decidim/enhanced_textwork/vote_paragraph.rb +77 -0
- data/app/commands/decidim/enhanced_textwork/withdraw_collaborative_draft.rb +65 -0
- data/app/commands/decidim/enhanced_textwork/withdraw_paragraph.rb +50 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/admin/filterable.rb +82 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/admin/picker.rb +21 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/collaborative_orderable.rb +42 -0
- data/app/controllers/concerns/decidim/enhanced_textwork/orderable.rb +78 -0
- data/app/controllers/decidim/enhanced_textwork/admin/application_controller.rb +16 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraph_answers_controller.rb +50 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraph_notes_controller.rb +39 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_controller.rb +237 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_imports_controller.rb +33 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_merges_controller.rb +30 -0
- data/app/controllers/decidim/enhanced_textwork/admin/paragraphs_splits_controller.rb +30 -0
- data/app/controllers/decidim/enhanced_textwork/admin/participatory_texts_controller.rb +128 -0
- data/app/controllers/decidim/enhanced_textwork/admin/valuation_assignments_controller.rb +58 -0
- data/app/controllers/decidim/enhanced_textwork/application_controller.rb +31 -0
- data/app/controllers/decidim/enhanced_textwork/collaborative_draft_collaborator_requests_controller.rb +53 -0
- data/app/controllers/decidim/enhanced_textwork/collaborative_drafts_controller.rb +161 -0
- data/app/controllers/decidim/enhanced_textwork/paragraph_votes_controller.rb +65 -0
- data/app/controllers/decidim/enhanced_textwork/paragraphs_controller.rb +316 -0
- data/app/controllers/decidim/enhanced_textwork/versions_controller.rb +21 -0
- data/app/controllers/decidim/enhanced_textwork/widgets_controller.rb +19 -0
- data/app/events/decidim/enhanced_textwork/accepted_paragraph_event.rb +17 -0
- data/app/events/decidim/enhanced_textwork/admin/paragraph_note_created_event.rb +27 -0
- data/app/events/decidim/enhanced_textwork/admin/update_paragraph_category_event.rb +11 -0
- data/app/events/decidim/enhanced_textwork/admin/update_paragraph_scope_event.rb +11 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_accepted_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_rejected_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_request_event.rb +27 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_requested_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_requester_accepted_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_access_requester_rejected_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/collaborative_draft_withdrawn_event.rb +29 -0
- data/app/events/decidim/enhanced_textwork/creation_enabled_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/endorsing_enabled_event.rb +8 -0
- data/app/events/decidim/enhanced_textwork/evaluating_paragraph_event.rb +11 -0
- data/app/events/decidim/enhanced_textwork/paragraph_endorsed_event.rb +33 -0
- data/app/events/decidim/enhanced_textwork/paragraph_mentioned_event.rb +21 -0
- data/app/events/decidim/enhanced_textwork/publish_paragraph_event.rb +25 -0
- data/app/events/decidim/enhanced_textwork/rejected_paragraph_event.rb +17 -0
- data/app/events/decidim/enhanced_textwork/voting_enabled_event.rb +8 -0
- data/app/forms/decidim/enhanced_textwork/accept_access_to_collaborative_draft_form.rb +10 -0
- data/app/forms/decidim/enhanced_textwork/access_to_collaborative_draft_form.rb +33 -0
- data/app/forms/decidim/enhanced_textwork/admin/import_editor_participatory_text_form.rb +35 -0
- data/app/forms/decidim/enhanced_textwork/admin/import_participatory_text_form.rb +68 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_answer_form.rb +44 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_base_form.rb +137 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_form.rb +32 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraph_note_form.rb +16 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_fork_form.rb +63 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_import_form.rb +67 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_merge_form.rb +13 -0
- data/app/forms/decidim/enhanced_textwork/admin/paragraphs_split_form.rb +12 -0
- data/app/forms/decidim/enhanced_textwork/admin/participatory_text_paragraph_form.rb +20 -0
- data/app/forms/decidim/enhanced_textwork/admin/preview_participatory_text_form.rb +21 -0
- data/app/forms/decidim/enhanced_textwork/admin/valuation_assignment_form.rb +37 -0
- data/app/forms/decidim/enhanced_textwork/collaborative_draft_form.rb +20 -0
- data/app/forms/decidim/enhanced_textwork/paragraph_form.rb +126 -0
- data/app/forms/decidim/enhanced_textwork/paragraph_wizard_create_step_form.rb +41 -0
- data/app/forms/decidim/enhanced_textwork/reject_access_to_collaborative_draft_form.rb +9 -0
- data/app/forms/decidim/enhanced_textwork/request_access_to_collaborative_draft_form.rb +20 -0
- data/app/helpers/decidim/enhanced_textwork/admin/filterable_helper.rb +17 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraph_bulk_actions_helper.rb +35 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraph_rankings_helper.rb +63 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraphs_helper.rb +144 -0
- data/app/helpers/decidim/enhanced_textwork/admin/paragraphs_picker_helper.rb +30 -0
- data/app/helpers/decidim/enhanced_textwork/application_helper.rb +191 -0
- data/app/helpers/decidim/enhanced_textwork/collaborative_draft_cells_helper.rb +48 -0
- data/app/helpers/decidim/enhanced_textwork/collaborative_draft_helper.rb +29 -0
- data/app/helpers/decidim/enhanced_textwork/control_version_helper.rb +12 -0
- data/app/helpers/decidim/enhanced_textwork/map_helper.rb +48 -0
- data/app/helpers/decidim/enhanced_textwork/paragraph_cells_helper.rb +75 -0
- data/app/helpers/decidim/enhanced_textwork/paragraph_votes_helper.rb +103 -0
- data/app/helpers/decidim/enhanced_textwork/paragraph_wizard_helper.rb +140 -0
- data/app/helpers/decidim/enhanced_textwork/paragraphs_helper.rb +63 -0
- data/app/helpers/decidim/enhanced_textwork/participatory_texts_helper.rb +49 -0
- data/app/jobs/decidim/enhanced_textwork/notify_paragraphs_mentioned_job.rb +27 -0
- data/app/jobs/decidim/enhanced_textwork/settings_change_job.rb +50 -0
- data/app/models/decidim/enhanced_textwork/application_record.rb +10 -0
- data/app/models/decidim/enhanced_textwork/collaborative_draft.rb +73 -0
- data/app/models/decidim/enhanced_textwork/collaborative_draft_collaborator_request.rb +13 -0
- data/app/models/decidim/enhanced_textwork/paragraph.rb +411 -0
- data/app/models/decidim/enhanced_textwork/paragraph_note.rb +20 -0
- data/app/models/decidim/enhanced_textwork/paragraph_vote.rb +50 -0
- data/app/models/decidim/enhanced_textwork/participatory_text.rb +16 -0
- data/app/models/decidim/enhanced_textwork/valuation_assignment.rb +24 -0
- data/app/packs/documents/decidim/enhanced_textwork/participatory_texts/participatory_text.md +52 -0
- data/app/packs/documents/decidim/enhanced_textwork/participatory_texts/participatory_text.odt +0 -0
- data/app/packs/entrypoints/decidim_enhanced_textwork.js +17 -0
- data/app/packs/entrypoints/decidim_enhanced_textwork_admin.js +3 -0
- data/app/packs/images/decidim/enhanced_textwork/decidim_paragraphs.svg +1 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_accepted_paragraphs.svg +1 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_paragraph_votes.svg +1 -0
- data/app/packs/images/decidim/gamification/badges/decidim_gamification_badges_paragraphs.svg +1 -0
- data/app/packs/src/decidim/enhanced_textwork/add_paragraph.js +49 -0
- data/app/packs/src/decidim/enhanced_textwork/admin/paragraphs.js +143 -0
- data/app/packs/src/decidim/enhanced_textwork/admin/paragraphs_form.js +29 -0
- data/app/packs/src/decidim/enhanced_textwork/admin/paragraphs_picker.js +35 -0
- data/app/packs/src/decidim/enhanced_textwork/toggle_element.js +21 -0
- data/app/packs/src/decidim/enhanced_textwork/utils.js +11 -0
- data/app/packs/stylesheets/decidim/enhanced_textwork/_paragraphs.scss +208 -0
- data/app/packs/stylesheets/decidim/enhanced_textwork/paragraphs/_preview.scss +3 -0
- data/app/permissions/decidim/enhanced_textwork/admin/permissions.rb +147 -0
- data/app/permissions/decidim/enhanced_textwork/permissions.rb +163 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/paragraph_note_presenter.rb +39 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/paragraph_presenter.rb +51 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/valuation_assignment_presenter.rb +51 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/value_types/paragraph_state_presenter.rb +17 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/value_types/paragraph_title_body_presenter.rb +23 -0
- data/app/presenters/decidim/enhanced_textwork/admin_log/value_types/valuator_role_user_presenter.rb +19 -0
- data/app/presenters/decidim/enhanced_textwork/collaborative_draft_presenter.rb +25 -0
- data/app/presenters/decidim/enhanced_textwork/log/resource_presenter.rb +22 -0
- data/app/presenters/decidim/enhanced_textwork/log/valuation_assignment_presenter.rb +22 -0
- data/app/presenters/decidim/enhanced_textwork/official_author_presenter.rb +14 -0
- data/app/presenters/decidim/enhanced_textwork/paragraph_presenter.rb +146 -0
- data/app/queries/decidim/enhanced_textwork/filtered_paragraphs.rb +37 -0
- data/app/queries/decidim/enhanced_textwork/metrics/accepted_paragraphs_metric_manage.rb +32 -0
- data/app/queries/decidim/enhanced_textwork/metrics/endorsements_metric_manage.rb +58 -0
- data/app/queries/decidim/enhanced_textwork/metrics/paragraph_followers_metric_measure.rb +58 -0
- data/app/queries/decidim/enhanced_textwork/metrics/paragraph_participants_metric_measure.rb +74 -0
- data/app/queries/decidim/enhanced_textwork/metrics/paragraphs_metric_manage.rb +48 -0
- data/app/queries/decidim/enhanced_textwork/metrics/votes_metric_manage.rb +52 -0
- data/app/queries/decidim/enhanced_textwork/similar_paragraphs.rb +67 -0
- data/app/services/decidim/enhanced_textwork/collaborative_draft_search.rb +59 -0
- data/app/services/decidim/enhanced_textwork/diff_renderer.rb +74 -0
- data/app/services/decidim/enhanced_textwork/paragraph_builder.rb +132 -0
- data/app/services/decidim/enhanced_textwork/paragraph_search.rb +85 -0
- data/app/validators/paragraph_length_validator.rb +40 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraph_answers/_form.html.erb +35 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraph_notes/_form.html.erb +8 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraph_notes/_paragraph_notes.html.erb +45 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_bulk-actions.html.erb +33 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_form.html.erb +101 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_js-callout.html.erb +6 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/_paragraph-tr.html.erb +76 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_assign_to_valuator.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_dropdown.html.erb +56 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_merge.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_publish_answers.html.erb +14 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_recategorize.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_scope-change.html.erb +25 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_split.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/bulk_actions/_unassign_from_valuator.html.erb +15 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/edit.html.erb +7 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/index.html.erb +84 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/new.html.erb +7 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/publish_answers.js.erb +12 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/show.html.erb +186 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/update_category.js.erb +26 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs/update_scope.js.erb +27 -0
- data/app/views/decidim/enhanced_textwork/admin/paragraphs_imports/new.html.erb +37 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/_article-preview.html.erb +16 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/_bulk-actions.html.erb +3 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/index.html.erb +55 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/new_editor.html.erb +39 -0
- data/app/views/decidim/enhanced_textwork/admin/participatory_texts/new_import.html.erb +39 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_accept_request_access_form.html.erb +8 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_collaborative_drafts.html.erb +16 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_collaborator_requests.html.erb +20 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_count.html.erb +1 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_edit_form_fields.html.erb +83 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_filters.html.erb +32 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_filters_small_view.html.erb +18 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_new_collaborative_draft_button.html.erb +11 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_reject_request_access_form.html.erb +10 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_request_access_form.html.erb +7 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_wizard_aside.html.erb +13 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/_wizard_header.html.erb +14 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/edit.html.erb +31 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/index.html.erb +23 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/index.js.erb +10 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/new.html.erb +24 -0
- data/app/views/decidim/enhanced_textwork/collaborative_drafts/show.html.erb +128 -0
- data/app/views/decidim/enhanced_textwork/paragraph_votes/update_buttons_and_counters.js.erb +41 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_count.html.erb +1 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_dynamic_map_instructions.html.erb +4 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_edit_form_fields.html.erb +115 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_endorsements_card_row.html.erb +0 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_filters.html.erb +48 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_filters_small_view.html.erb +18 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_linked_paragraphs.html.erb +34 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraph.html.erb +1 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraph_badge.html.erb +3 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraph_similar.html.erb +22 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_paragraphs.html.erb +46 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_remaining_votes_count.html.erb +3 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_vote_button.html.erb +61 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_votes_count.html.erb +18 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_voting_rules.html.erb +50 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_wizard_aside.html.erb +20 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/_wizard_header.html.erb +42 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/compare.html.erb +23 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/complete.html.erb +24 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/edit.html.erb +31 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/edit_draft.html.erb +26 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/index.html.erb +56 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/index.js.erb +10 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/new.html.erb +38 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_index.html.erb +20 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_overview.html.erb +35 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_paragraph_vote_button.html.erb +53 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_paragraph_vote_button_chevron.html.erb +72 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_paragraph_votes_count.html.erb +41 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/_view_index.html.erb +10 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/participatory_texts/participatory_text.html.erb +29 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/preview.html.erb +41 -0
- data/app/views/decidim/enhanced_textwork/paragraphs/show.html.erb +143 -0
- data/app/views/decidim/enhanced_textwork/versions/index.html.erb +16 -0
- data/app/views/decidim/enhanced_textwork/versions/show.html.erb +18 -0
- data/config/assets.rb +10 -0
- data/config/locales/de.yml +927 -0
- data/config/locales/en.yml +967 -0
- data/config/locales/todo/am-ET.yml +1 -0
- data/config/locales/todo/ar-SA.yml +801 -0
- data/config/locales/todo/ar.yml +791 -0
- data/config/locales/todo/bg-BG.yml +237 -0
- data/config/locales/todo/bg.yml +238 -0
- data/config/locales/todo/ca.yml +908 -0
- data/config/locales/todo/cs-CZ.yml +787 -0
- data/config/locales/todo/cs.yml +969 -0
- data/config/locales/todo/da-DK.yml +1 -0
- data/config/locales/todo/da.yml +1 -0
- data/config/locales/todo/el-GR.yml +1 -0
- data/config/locales/todo/el.yml +848 -0
- data/config/locales/todo/eo-UY.yml +1 -0
- data/config/locales/todo/eo.yml +1 -0
- data/config/locales/todo/es-MX.yml +908 -0
- data/config/locales/todo/es-PY.yml +908 -0
- data/config/locales/todo/es.yml +908 -0
- data/config/locales/todo/et-EE.yml +1 -0
- data/config/locales/todo/et.yml +1 -0
- data/config/locales/todo/eu.yml +717 -0
- data/config/locales/todo/fi-pl.yml +763 -0
- data/config/locales/todo/fi-plain.yml +920 -0
- data/config/locales/todo/fi.yml +920 -0
- data/config/locales/todo/fr-CA.yml +936 -0
- data/config/locales/todo/fr-LU.yml +903 -0
- data/config/locales/todo/fr.yml +936 -0
- data/config/locales/todo/ga-IE.yml +275 -0
- data/config/locales/todo/gl.yml +808 -0
- data/config/locales/todo/hr-HR.yml +1 -0
- data/config/locales/todo/hr.yml +1 -0
- data/config/locales/todo/hu.yml +847 -0
- data/config/locales/todo/id-ID.yml +704 -0
- data/config/locales/todo/is-IS.yml +269 -0
- data/config/locales/todo/is.yml +274 -0
- data/config/locales/todo/it.yml +908 -0
- data/config/locales/todo/ja.yml +922 -0
- data/config/locales/todo/ko-KR.yml +1 -0
- data/config/locales/todo/ko.yml +1 -0
- data/config/locales/todo/lb-LU.yml +1 -0
- data/config/locales/todo/lb.yml +40 -0
- data/config/locales/todo/lt-LT.yml +1 -0
- data/config/locales/todo/lt.yml +1 -0
- data/config/locales/todo/lv.yml +838 -0
- data/config/locales/todo/mt-MT.yml +1 -0
- data/config/locales/todo/mt.yml +1 -0
- data/config/locales/todo/nl.yml +882 -0
- data/config/locales/todo/no.yml +770 -0
- data/config/locales/todo/om-ET.yml +1 -0
- data/config/locales/todo/pl.yml +927 -0
- data/config/locales/todo/pt-BR.yml +908 -0
- data/config/locales/todo/pt.yml +945 -0
- data/config/locales/todo/ro-RO.yml +886 -0
- data/config/locales/todo/ru.yml +379 -0
- data/config/locales/todo/si-LK.yml +1 -0
- data/config/locales/todo/sk-SK.yml +896 -0
- data/config/locales/todo/sk.yml +851 -0
- data/config/locales/todo/sl.yml +26 -0
- data/config/locales/todo/so-SO.yml +1 -0
- data/config/locales/todo/sr-CS.yml +125 -0
- data/config/locales/todo/sv.yml +908 -0
- data/config/locales/todo/sw-KE.yml +1 -0
- data/config/locales/todo/ti-ER.yml +1 -0
- data/config/locales/todo/tr-TR.yml +890 -0
- data/config/locales/todo/uk.yml +379 -0
- data/config/locales/todo/vi-VN.yml +1 -0
- data/config/locales/todo/vi.yml +1 -0
- data/config/locales/todo/zh-CN.yml +857 -0
- data/config/locales/todo/zh-TW.yml +1 -0
- data/db/migrate/20161212110850_create_decidim_paragraphs.rb +16 -0
- data/db/migrate/20170112115253_create_paragraph_votes.rb +14 -0
- data/db/migrate/20170113114245_add_enhanced_textwork_text_search_indexes.rb +8 -0
- data/db/migrate/20170118120151_add_counter_cache_votes_to_paragraphs.rb +7 -0
- data/db/migrate/20170120151202_add_user_group_id_to_paragraphs.rb +7 -0
- data/db/migrate/20170131092413_add_answers_to_paragraphs.rb +9 -0
- data/db/migrate/20170205082832_add_index_to_decidim_enhanced_textwork_paragraphs_paragraph_votes_count.rb +9 -0
- data/db/migrate/20170215113152_create_paragraph_reports.rb +16 -0
- data/db/migrate/20170215131720_add_report_count_to_paragraphs.rb +7 -0
- data/db/migrate/20170215132030_add_reference_to_paragraphs.rb +13 -0
- data/db/migrate/20170220152416_add_hidden_at_to_paragraphs.rb +7 -0
- data/db/migrate/20170228105156_add_geolocalization_fields_to_paragraphs.rb +9 -0
- data/db/migrate/20170307085300_migrate_paragraph_reports_data_to_reports.rb +24 -0
- data/db/migrate/20170410073742_remove_not_null_reference_paragraphs.rb +7 -0
- data/db/migrate/20170612101809_migrate_paragraphs_category.rb +15 -0
- data/db/migrate/20171201115434_create_paragraph_endorsements.rb +16 -0
- data/db/migrate/20171201122623_add_counter_cache_endorsements_to_paragraphs.rb +8 -0
- data/db/migrate/20171212102250_enable_pg_trgm_extension_for_paragraphs.rb +18 -0
- data/db/migrate/20171220084719_add_published_at_to_paragraphs.rb +14 -0
- data/db/migrate/20180111110204_create_decidim_paragraph_notes.rb +15 -0
- data/db/migrate/20180115155220_add_index_created_at_paragraph_notes.rb +7 -0
- data/db/migrate/20180305133811_rename_features_to_components_at_paragraphs.rb +11 -0
- data/db/migrate/20180326091532_create_decidim_enhanced_textwork_collaborative_drafts.rb +29 -0
- data/db/migrate/20180413135249_fix_nil_threshold_per_paragraph.rb +18 -0
- data/db/migrate/20180529101323_add_counter_cache_coauthorships_to_paragraphs.rb +8 -0
- data/db/migrate/20180529110230_move_enhanced_textwork_authorships_to_coauthorships.rb +28 -0
- data/db/migrate/20180529110830_remove_authorships_from_paragraphs.rb +8 -0
- data/db/migrate/20180613151121_create_enhanced_textwork_collaborative_draft_collaborator_requests.rb +12 -0
- data/db/migrate/20180711074134_add_enhanced_textwork_counter_cache_coauthorships_to_collaborative_drafts.rb +7 -0
- data/db/migrate/20180711075004_remove_index_counter_cache_coauthorships_to_paragraphs.rb +7 -0
- data/db/migrate/20180927111721_create_enhanced_textwork_participatory_texts.rb +13 -0
- data/db/migrate/20180930125321_add_participatory_text_level_to_paragraphs.rb +7 -0
- data/db/migrate/20180930125321_add_position_to_paragraphs.rb +7 -0
- data/db/migrate/20181003074440_fix_user_groups_ids_in_paragraphs_endorsements.rb +20 -0
- data/db/migrate/20181010114622_add_enhanced_textwork_temporary_votes.rb +9 -0
- data/db/migrate/20181016132225_add_enhanced_textwork_organization_as_author.rb +13 -0
- data/db/migrate/20181017084221_make_author_polymorhpic_for_paragraph_endorsements.rb +31 -0
- data/db/migrate/20181026073215_add_enhanced_textwork_created_in_meeting.rb +7 -0
- data/db/migrate/20190215113158_use_enhanced_textwork_md5_indexes.rb +17 -0
- data/db/migrate/20191206154128_add_endorsements_counter_cache_to_paragraphs.rb +7 -0
- data/db/migrate/20200120215928_move_paragraph_endorsements_to_core_endorsements.rb +54 -0
- data/db/migrate/20200120230130_drop_paragraph_endorsements.rb +8 -0
- data/db/migrate/20200203111239_add_paragraph_valuation_assignments.rb +12 -0
- data/db/migrate/20200210135152_add_costs_to_paragraphs.rb +9 -0
- data/db/migrate/20200212120110_sync_paragraphs_state_with_amendments_state.rb +28 -0
- data/db/migrate/20200227175922_add_state_published_at_to_paragraphs.rb +7 -0
- data/db/migrate/20200306123652_publish_existing_paragraphs_state.rb +15 -0
- data/db/migrate/20200708091228_move_paragraphs_fields_to_i18n.rb +86 -0
- data/db/migrate/20200730131631_move_paragraph_endorsed_event_notifications_to_resource_endorsed_event.rb +20 -0
- data/db/migrate/20200827154156_add_commentable_counter_cache_to_paragraphs.rb +12 -0
- data/db/migrate/20201002085508_fix_paragraphs_data.rb +36 -0
- data/db/migrate/20210127115628_fix_answered_paragraphs_after_copy.rb +14 -0
- data/db/migrate/20210310102839_add_followable_counter_cache_to_paragraphs.rb +16 -0
- data/db/migrate/20210310120812_add_enhanced_textwork_followable_counter_cache_to_collaborative_drafts.rb +16 -0
- data/db/migrate/20210318082934_fix_counters_for_copied_paragraphs.rb +19 -0
- data/lib/decidim/api/paragraph_input_filter.rb +29 -0
- data/lib/decidim/api/paragraph_input_sort.rb +20 -0
- data/lib/decidim/api/paragraph_type.rb +56 -0
- data/lib/decidim/api/paragraphs_type.rb +43 -0
- data/lib/decidim/content_parsers/paragraph_parser.rb +101 -0
- data/lib/decidim/content_renderers/paragraph_renderer.rb +33 -0
- data/lib/decidim/enhanced_textwork/admin.rb +10 -0
- data/lib/decidim/enhanced_textwork/admin_engine.rb +52 -0
- data/lib/decidim/enhanced_textwork/api.rb +10 -0
- data/lib/decidim/enhanced_textwork/commentable_collaborative_draft.rb +38 -0
- data/lib/decidim/enhanced_textwork/commentable_paragraph.rb +36 -0
- data/lib/decidim/enhanced_textwork/component.rb +448 -0
- data/lib/decidim/enhanced_textwork/doc_to_markdown.rb +50 -0
- data/lib/decidim/enhanced_textwork/engine.rb +204 -0
- data/lib/decidim/enhanced_textwork/html_to_markdown.rb +22 -0
- data/lib/decidim/enhanced_textwork/markdown_to_paragraphs.rb +153 -0
- data/lib/decidim/enhanced_textwork/odt_to_markdown.rb +46 -0
- data/lib/decidim/enhanced_textwork/paragraph_creator.rb +98 -0
- data/lib/decidim/enhanced_textwork/paragraph_serializer.rb +95 -0
- data/lib/decidim/enhanced_textwork/participatory_text_section.rb +21 -0
- data/lib/decidim/enhanced_textwork/test/capybara_paragraphs_picker.rb +59 -0
- data/lib/decidim/enhanced_textwork/test/factories.rb +492 -0
- data/lib/decidim/enhanced_textwork/valuatable.rb +21 -0
- data/lib/decidim/enhanced_textwork/version.rb +14 -0
- data/lib/decidim/enhanced_textwork.rb +58 -0
- data/lib/decidim/exporters/word.rb +309 -0
- metadata +704 -0
@@ -0,0 +1,103 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
# Simple helpers to handle markup variations for paragraph votes partials
|
6
|
+
module ParagraphVotesHelper
|
7
|
+
# Returns the css classes used for paragraph votes count in both paragraphs list and show pages
|
8
|
+
#
|
9
|
+
# from_paragraphs_list - A boolean to indicate if the template is rendered from the paragraphs list page
|
10
|
+
#
|
11
|
+
# Returns a hash with the css classes for the count number and label
|
12
|
+
def votes_count_classes(from_paragraphs_list)
|
13
|
+
return { number: "card__support__number", label: "" } if from_paragraphs_list
|
14
|
+
|
15
|
+
{ number: "extra__suport-number", label: "extra__suport-text" }
|
16
|
+
end
|
17
|
+
|
18
|
+
# Returns the css classes used for paragraph vote button in both paragraphs list and show pages
|
19
|
+
#
|
20
|
+
# from_paragraphs_list - A boolean to indicate if the template is rendered from the paragraphs list page
|
21
|
+
#
|
22
|
+
# Returns a string with the value of the css classes.
|
23
|
+
def vote_button_classes(from_paragraphs_list)
|
24
|
+
return "card__button" if from_paragraphs_list
|
25
|
+
|
26
|
+
"expanded"
|
27
|
+
end
|
28
|
+
|
29
|
+
# Public: Gets the vote limit for each user, if set.
|
30
|
+
#
|
31
|
+
# Returns an Integer if set, nil otherwise.
|
32
|
+
def vote_limit
|
33
|
+
return nil if component_settings.vote_limit.zero?
|
34
|
+
|
35
|
+
component_settings.vote_limit
|
36
|
+
end
|
37
|
+
|
38
|
+
# Check if the vote limit is enabled for the current component
|
39
|
+
#
|
40
|
+
# Returns true if the vote limit is enabled
|
41
|
+
def vote_limit_enabled?
|
42
|
+
vote_limit.present?
|
43
|
+
end
|
44
|
+
|
45
|
+
# Public: Checks if threshold per paragraph are set.
|
46
|
+
#
|
47
|
+
# Returns true if set, false otherwise.
|
48
|
+
def threshold_per_paragraph_enabled?
|
49
|
+
threshold_per_paragraph.present?
|
50
|
+
end
|
51
|
+
|
52
|
+
# Public: Fetches the maximum amount of votes per paragraph.
|
53
|
+
#
|
54
|
+
# Returns an Integer with the maximum amount of votes, nil otherwise.
|
55
|
+
def threshold_per_paragraph
|
56
|
+
return nil unless component_settings.threshold_per_paragraph.positive?
|
57
|
+
|
58
|
+
component_settings.threshold_per_paragraph
|
59
|
+
end
|
60
|
+
|
61
|
+
# Public: Checks if can accumulate more than maxium is enabled
|
62
|
+
#
|
63
|
+
# Returns true if enabled, false otherwise.
|
64
|
+
def can_accumulate_supports_beyond_threshold?
|
65
|
+
component_settings.can_accumulate_supports_beyond_threshold
|
66
|
+
end
|
67
|
+
|
68
|
+
# Public: Checks if voting is enabled in this step.
|
69
|
+
#
|
70
|
+
# Returns true if enabled, false otherwise.
|
71
|
+
def votes_enabled?
|
72
|
+
current_settings.votes_enabled
|
73
|
+
end
|
74
|
+
|
75
|
+
# Public: Checks if voting is blocked in this step.
|
76
|
+
#
|
77
|
+
# Returns true if blocked, false otherwise.
|
78
|
+
def votes_blocked?
|
79
|
+
current_settings.votes_blocked
|
80
|
+
end
|
81
|
+
|
82
|
+
# Public: Checks if the current user is allowed to vote in this step.
|
83
|
+
#
|
84
|
+
# Returns true if the current user can vote, false otherwise.
|
85
|
+
def current_user_can_vote?
|
86
|
+
current_user && votes_enabled? && vote_limit_enabled? && !votes_blocked?
|
87
|
+
end
|
88
|
+
|
89
|
+
# Return the remaining votes for a user if the current component has a vote limit
|
90
|
+
#
|
91
|
+
# user - A User object
|
92
|
+
#
|
93
|
+
# Returns a number with the remaining votes for that user
|
94
|
+
def remaining_votes_count_for(user)
|
95
|
+
return 0 unless vote_limit_enabled?
|
96
|
+
|
97
|
+
paragraphs = Paragraph.where(component: current_component)
|
98
|
+
votes_count = ParagraphVote.where(author: user, paragraph: paragraphs).size
|
99
|
+
component_settings.vote_limit - votes_count
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
103
|
+
end
|
@@ -0,0 +1,140 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
# Simple helpers to handle markup variations for paragraph wizard partials
|
6
|
+
module ParagraphWizardHelper
|
7
|
+
# Returns the css classes used for the paragraph wizard for the desired step
|
8
|
+
#
|
9
|
+
# step - A symbol of the target step
|
10
|
+
# current_step - A symbol of the current step
|
11
|
+
#
|
12
|
+
# Returns a string with the css classes for the desired step
|
13
|
+
def paragraph_wizard_step_classes(step, current_step)
|
14
|
+
step_i = step.to_s.split("_").last.to_i
|
15
|
+
if step_i == paragraph_wizard_step_number(current_step)
|
16
|
+
%(step--active #{step} #{current_step})
|
17
|
+
elsif step_i < paragraph_wizard_step_number(current_step)
|
18
|
+
%(step--past #{step})
|
19
|
+
else
|
20
|
+
%()
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
# Returns the number of the step
|
25
|
+
#
|
26
|
+
# step - A symbol of the target step
|
27
|
+
def paragraph_wizard_step_number(step)
|
28
|
+
step.to_s.split("_").last.to_i
|
29
|
+
end
|
30
|
+
|
31
|
+
# Returns the name of the step, translated
|
32
|
+
#
|
33
|
+
# step - A symbol of the target step
|
34
|
+
def paragraph_wizard_step_name(step)
|
35
|
+
t("decidim.enhanced_textwork.paragraphs.wizard_steps.#{step}")
|
36
|
+
end
|
37
|
+
|
38
|
+
# Returns the page title of the given step, translated
|
39
|
+
#
|
40
|
+
# action_name - A string of the rendered action
|
41
|
+
def paragraph_wizard_step_title(action_name)
|
42
|
+
step_title = case action_name
|
43
|
+
when "create"
|
44
|
+
"new"
|
45
|
+
when "update_draft"
|
46
|
+
"edit_draft"
|
47
|
+
else
|
48
|
+
action_name
|
49
|
+
end
|
50
|
+
|
51
|
+
t("decidim.enhanced_textwork.paragraphs.#{step_title}.title")
|
52
|
+
end
|
53
|
+
|
54
|
+
# Returns the list item of the given step, in html
|
55
|
+
#
|
56
|
+
# step - A symbol of the target step
|
57
|
+
# current_step - A symbol of the current step
|
58
|
+
def paragraph_wizard_stepper_step(step, current_step)
|
59
|
+
attributes = { class: paragraph_wizard_step_classes(step, current_step).to_s }
|
60
|
+
step_title = paragraph_wizard_step_name(step)
|
61
|
+
if step.to_s.split("_").last.to_i == paragraph_wizard_step_number(current_step)
|
62
|
+
current_step_title = paragraph_wizard_step_name("current_step")
|
63
|
+
step_title = content_tag(:span, "#{current_step_title}: ", class: "show-for-sr") + step_title
|
64
|
+
attributes["aria-current"] = "step"
|
65
|
+
end
|
66
|
+
|
67
|
+
content_tag(:li, step_title, attributes)
|
68
|
+
end
|
69
|
+
|
70
|
+
# Returns the list with all the steps, in html
|
71
|
+
#
|
72
|
+
# current_step - A symbol of the current step
|
73
|
+
def paragraph_wizard_stepper(current_step)
|
74
|
+
content_tag :ol, class: "wizard__steps" do
|
75
|
+
%(
|
76
|
+
#{paragraph_wizard_stepper_step(:step_1, current_step)}
|
77
|
+
#{paragraph_wizard_stepper_step(:step_2, current_step)}
|
78
|
+
#{paragraph_wizard_stepper_step(:step_3, current_step)}
|
79
|
+
#{paragraph_wizard_stepper_step(:step_4, current_step)}
|
80
|
+
).html_safe
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
# Returns a string with the current step number and the total steps number
|
85
|
+
#
|
86
|
+
def paragraph_wizard_current_step_of(step)
|
87
|
+
current_step_num = paragraph_wizard_step_number(step)
|
88
|
+
see_steps = content_tag(:span, class: "hide-for-large") do
|
89
|
+
concat " ("
|
90
|
+
concat content_tag :a, t(:"decidim.enhanced_textwork.paragraphs.wizard_steps.see_steps"), "data-toggle": "steps"
|
91
|
+
concat ")"
|
92
|
+
end
|
93
|
+
content_tag :span, class: "text-small" do
|
94
|
+
concat t(:"decidim.enhanced_textwork.paragraphs.wizard_steps.step_of", current_step_num: current_step_num, total_steps: total_steps)
|
95
|
+
concat see_steps
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
def paragraph_wizard_steps_title
|
100
|
+
t("title", scope: "decidim.enhanced_textwork.paragraphs.wizard_steps")
|
101
|
+
end
|
102
|
+
|
103
|
+
# Returns a boolean if the step has a help text defined
|
104
|
+
#
|
105
|
+
# step - A symbol of the target step
|
106
|
+
def paragraph_wizard_step_help_text?(step)
|
107
|
+
translated_attribute(component_settings.try("paragraph_wizard_#{step}_help_text")).present?
|
108
|
+
end
|
109
|
+
|
110
|
+
private
|
111
|
+
|
112
|
+
def total_steps
|
113
|
+
4
|
114
|
+
end
|
115
|
+
|
116
|
+
def wizard_aside_info_text
|
117
|
+
t("info", scope: "decidim.enhanced_textwork.paragraphs.wizard_aside").html_safe
|
118
|
+
end
|
119
|
+
|
120
|
+
# Renders the back link except for step_2: compare
|
121
|
+
def paragraph_wizard_aside_link_to_back(step)
|
122
|
+
case step
|
123
|
+
when :step_1
|
124
|
+
paragraphs_path
|
125
|
+
when :step_3
|
126
|
+
compare_paragraph_path
|
127
|
+
when :step_4
|
128
|
+
edit_draft_paragraph_path
|
129
|
+
end
|
130
|
+
end
|
131
|
+
|
132
|
+
def wizard_aside_back_text(from = nil)
|
133
|
+
key = "back"
|
134
|
+
key = "back_from_#{from}" if from
|
135
|
+
|
136
|
+
t(key, scope: "decidim.enhanced_textwork.paragraphs.wizard_aside").html_safe
|
137
|
+
end
|
138
|
+
end
|
139
|
+
end
|
140
|
+
end
|
@@ -0,0 +1,63 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
# Simple helpers to handle markup variations for paragraphs
|
6
|
+
module ParagraphsHelper
|
7
|
+
def paragraph_reason_callout_announcement
|
8
|
+
{
|
9
|
+
title: paragraph_reason_callout_title,
|
10
|
+
body: decidim_sanitize(translated_attribute(@paragraph.answer))
|
11
|
+
}
|
12
|
+
end
|
13
|
+
|
14
|
+
def paragraph_reason_callout_class
|
15
|
+
case @paragraph.state
|
16
|
+
when "accepted"
|
17
|
+
"success"
|
18
|
+
when "evaluating"
|
19
|
+
"warning"
|
20
|
+
when "rejected"
|
21
|
+
"alert"
|
22
|
+
else
|
23
|
+
""
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
def paragraph_reason_callout_title
|
28
|
+
i18n_key = case @paragraph.state
|
29
|
+
when "evaluating"
|
30
|
+
"paragraph_in_evaluation_reason"
|
31
|
+
else
|
32
|
+
"paragraph_#{@paragraph.state}_reason"
|
33
|
+
end
|
34
|
+
|
35
|
+
t(i18n_key, scope: "decidim.enhanced_textwork.paragraphs.show")
|
36
|
+
end
|
37
|
+
|
38
|
+
def filter_paragraphs_state_values
|
39
|
+
Decidim::CheckBoxesTreeHelper::TreeNode.new(
|
40
|
+
Decidim::CheckBoxesTreeHelper::TreePoint.new("", t("decidim.enhanced_textwork.application_helper.filter_state_values.all")),
|
41
|
+
[
|
42
|
+
Decidim::CheckBoxesTreeHelper::TreePoint.new("accepted", t("decidim.enhanced_textwork.application_helper.filter_state_values.accepted")),
|
43
|
+
Decidim::CheckBoxesTreeHelper::TreePoint.new("evaluating", t("decidim.enhanced_textwork.application_helper.filter_state_values.evaluating")),
|
44
|
+
Decidim::CheckBoxesTreeHelper::TreePoint.new("state_not_published", t("decidim.enhanced_textwork.application_helper.filter_state_values.not_answered")),
|
45
|
+
Decidim::CheckBoxesTreeHelper::TreePoint.new("rejected", t("decidim.enhanced_textwork.application_helper.filter_state_values.rejected"))
|
46
|
+
]
|
47
|
+
)
|
48
|
+
end
|
49
|
+
|
50
|
+
def paragraph_has_costs?
|
51
|
+
@paragraph.cost.present? &&
|
52
|
+
translated_attribute(@paragraph.cost_report).present? &&
|
53
|
+
translated_attribute(@paragraph.execution_period).present?
|
54
|
+
end
|
55
|
+
|
56
|
+
def resource_version(resource, options = {})
|
57
|
+
return unless resource.respond_to?(:amendable?) && resource.amendable?
|
58
|
+
|
59
|
+
super
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
@@ -0,0 +1,49 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
# Simple helper to handle markup variations for participatory texts related partials
|
6
|
+
module ParticipatoryTextsHelper
|
7
|
+
# Returns the title for a given participatory text section.
|
8
|
+
#
|
9
|
+
# paragraph - The current paragraph item.
|
10
|
+
#
|
11
|
+
# Returns a string with the title of the section, subsection or article.
|
12
|
+
def preview_participatory_text_section_title(paragraph)
|
13
|
+
title = decidim_html_escape(present(paragraph).title)
|
14
|
+
translated = t(paragraph.participatory_text_level, scope: "decidim.enhanced_textwork.admin.participatory_texts.sections", title: title)
|
15
|
+
translated.html_safe
|
16
|
+
end
|
17
|
+
|
18
|
+
def render_participatory_text_title(participatory_text)
|
19
|
+
if participatory_text.nil?
|
20
|
+
t("alternative_title", scope: "decidim.enhanced_textwork.participatory_text_paragraph")
|
21
|
+
else
|
22
|
+
translated_attribute(participatory_text.title)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
# Public: A formatted collection of mime_type to be used
|
27
|
+
# in forms.
|
28
|
+
def mime_types_with_document_examples
|
29
|
+
links = ""
|
30
|
+
accepted_mime_types = Decidim::EnhancedTextwork::DocToMarkdown::ACCEPTED_MIME_TYPES.keys
|
31
|
+
accepted_mime_types.each_with_index do |mime_type, index|
|
32
|
+
links += link_to t(".accepted_mime_types.#{mime_type}"),
|
33
|
+
asset_pack_path("media/documents/participatory_text.#{mime_type}"),
|
34
|
+
download: "participatory_text.#{mime_type}"
|
35
|
+
links += ", " unless accepted_mime_types.length == index + 1
|
36
|
+
end
|
37
|
+
links
|
38
|
+
end
|
39
|
+
|
40
|
+
def show_paragraph_title?(paragraph)
|
41
|
+
!hide_paragraph_title?(paragraph)
|
42
|
+
end
|
43
|
+
|
44
|
+
def hide_paragraph_title?(paragraph)
|
45
|
+
paragraph.component.settings.hide_participatory_text_titles_enabled? && translated_attribute(paragraph.title) !~ /\D/
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
class NotifyParagraphsMentionedJob < ApplicationJob
|
6
|
+
def perform(comment_id, linked_paragraphs)
|
7
|
+
comment = Decidim::Comments::Comment.find(comment_id)
|
8
|
+
|
9
|
+
linked_paragraphs.each do |paragraph_id|
|
10
|
+
paragraph = Paragraph.find(paragraph_id)
|
11
|
+
affected_users = paragraph.notifiable_identities
|
12
|
+
|
13
|
+
Decidim::EventsManager.publish(
|
14
|
+
event: "decidim.events.enhanced_textwork.paragraph_mentioned",
|
15
|
+
event_class: Decidim::EnhancedTextwork::ParagraphMentionedEvent,
|
16
|
+
resource: comment.root_commentable,
|
17
|
+
affected_users: affected_users,
|
18
|
+
extra: {
|
19
|
+
comment_id: comment.id,
|
20
|
+
mentioned_paragraph_id: paragraph_id
|
21
|
+
}
|
22
|
+
)
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,50 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
class SettingsChangeJob < ApplicationJob
|
6
|
+
def perform(component_id, previous_settings, current_settings)
|
7
|
+
component = Decidim::Component.find(component_id)
|
8
|
+
|
9
|
+
if creation_enabled?(previous_settings, current_settings)
|
10
|
+
event = "decidim.events.enhanced_textwork.creation_enabled"
|
11
|
+
event_class = Decidim::EnhancedTextwork::CreationEnabledEvent
|
12
|
+
elsif voting_enabled?(previous_settings, current_settings)
|
13
|
+
event = "decidim.events.enhanced_textwork.voting_enabled"
|
14
|
+
event_class = Decidim::EnhancedTextwork::VotingEnabledEvent
|
15
|
+
elsif endorsing_enabled?(previous_settings, current_settings)
|
16
|
+
event = "decidim.events.enhanced_textwork.endorsing_enabled"
|
17
|
+
event_class = Decidim::EnhancedTextwork::EndorsingEnabledEvent
|
18
|
+
end
|
19
|
+
|
20
|
+
return unless event && event_class
|
21
|
+
|
22
|
+
Decidim::EventsManager.publish(
|
23
|
+
event: event,
|
24
|
+
event_class: event_class,
|
25
|
+
resource: component,
|
26
|
+
followers: component.participatory_space.followers
|
27
|
+
)
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
|
32
|
+
# rubocop:disable Style/DoubleNegation
|
33
|
+
def creation_enabled?(previous_settings, current_settings)
|
34
|
+
current_settings[:creation_enabled] == true &&
|
35
|
+
!!previous_settings[:creation_enabled] == false
|
36
|
+
end
|
37
|
+
|
38
|
+
def voting_enabled?(previous_settings, current_settings)
|
39
|
+
(current_settings[:votes_enabled] == true && !!current_settings[:votes_blocked] == false) &&
|
40
|
+
(!!previous_settings[:votes_enabled] == false || previous_settings[:votes_blocked] == true)
|
41
|
+
end
|
42
|
+
|
43
|
+
def endorsing_enabled?(previous_settings, current_settings)
|
44
|
+
(current_settings[:endorsements_enabled] == true && !!current_settings[:endorsements_blocked] == false) &&
|
45
|
+
(!!previous_settings[:endorsements_enabled] == false || previous_settings[:endorsements_blocked] == true)
|
46
|
+
end
|
47
|
+
# rubocop:enable Style/DoubleNegation
|
48
|
+
end
|
49
|
+
end
|
50
|
+
end
|
@@ -0,0 +1,73 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
class CollaborativeDraft < EnhancedTextwork::ApplicationRecord
|
6
|
+
include Decidim::Resourceable
|
7
|
+
include Decidim::Coauthorable
|
8
|
+
include Decidim::HasComponent
|
9
|
+
include Decidim::ScopableResource
|
10
|
+
include Decidim::HasReference
|
11
|
+
include Decidim::HasCategory
|
12
|
+
include Decidim::Reportable
|
13
|
+
include Decidim::HasAttachments
|
14
|
+
include Decidim::Followable
|
15
|
+
include Decidim::EnhancedTextwork::CommentableCollaborativeDraft
|
16
|
+
include Decidim::Traceable
|
17
|
+
include Decidim::Loggable
|
18
|
+
include Decidim::Randomable
|
19
|
+
|
20
|
+
has_many :collaborator_requests,
|
21
|
+
class_name: "Decidim::EnhancedTextwork::CollaborativeDraftCollaboratorRequest",
|
22
|
+
foreign_key: :decidim_enhanced_textwork_collaborative_draft_id,
|
23
|
+
dependent: :destroy
|
24
|
+
|
25
|
+
has_many :requesters,
|
26
|
+
through: :collaborator_requests,
|
27
|
+
source: :user,
|
28
|
+
class_name: "Decidim::User",
|
29
|
+
foreign_key: :decidim_user_id
|
30
|
+
|
31
|
+
geocoded_by :address
|
32
|
+
|
33
|
+
scope :open, -> { where(state: "open") }
|
34
|
+
scope :withdrawn, -> { where(state: "withdrawn") }
|
35
|
+
scope :except_withdrawn, -> { where.not(state: "withdrawn").or(where(state: nil)) }
|
36
|
+
scope :published, -> { where(state: "published") }
|
37
|
+
|
38
|
+
# Checks whether the user can edit the given paragraph.
|
39
|
+
#
|
40
|
+
# user - the user to check for authorship
|
41
|
+
def editable_by?(user)
|
42
|
+
authored_by?(user)
|
43
|
+
end
|
44
|
+
|
45
|
+
def open?
|
46
|
+
state == "open"
|
47
|
+
end
|
48
|
+
|
49
|
+
def withdrawn?
|
50
|
+
state == "withdrawn"
|
51
|
+
end
|
52
|
+
|
53
|
+
def published?
|
54
|
+
state == "published"
|
55
|
+
end
|
56
|
+
|
57
|
+
# Public: Overrides the `reported_content_url` Reportable concern method.
|
58
|
+
def reported_content_url
|
59
|
+
ResourceLocatorPresenter.new(self).url
|
60
|
+
end
|
61
|
+
|
62
|
+
# Public: Overrides the `reported_attributes` Reportable concern method.
|
63
|
+
def reported_attributes
|
64
|
+
[:body]
|
65
|
+
end
|
66
|
+
|
67
|
+
# Public: Overrides the `reported_searchable_content_extras` Reportable concern method.
|
68
|
+
def reported_searchable_content_extras
|
69
|
+
[authors.map(&:name).join("\n")]
|
70
|
+
end
|
71
|
+
end
|
72
|
+
end
|
73
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module Decidim
|
4
|
+
module EnhancedTextwork
|
5
|
+
# A collaborative_draft can accept requests to coauthor and contribute
|
6
|
+
class CollaborativeDraftCollaboratorRequest < EnhancedTextwork::ApplicationRecord
|
7
|
+
validates :collaborative_draft, :user, presence: true
|
8
|
+
|
9
|
+
belongs_to :collaborative_draft, class_name: "Decidim::EnhancedTextwork::CollaborativeDraft", foreign_key: :decidim_enhanced_textwork_collaborative_draft_id
|
10
|
+
belongs_to :user, class_name: "Decidim::User", foreign_key: :decidim_user_id
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|