decidim-core 0.21.0 → 0.22.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of decidim-core might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/app/assets/config/decidim_core_manifest.js +3 -0
- data/app/assets/fonts/decidim/Roboto-Regular.svg +1 -10520
- data/app/assets/fonts/decidim/Source_Sans_Pro_400.svg +1 -345
- data/app/assets/fonts/decidim/Source_Sans_Pro_600.svg +1 -339
- data/app/assets/fonts/decidim/Source_Sans_Pro_900.svg +1 -342
- data/app/assets/images/decidim/avatar-multiuser.png +0 -0
- data/app/assets/images/decidim/brands/google.svg +1 -1
- data/app/assets/images/decidim/decidim-logo.svg +1 -71
- data/app/assets/images/decidim/default-avatar.svg +1 -14
- data/app/assets/images/decidim/gamification/badges/followers.svg +1 -115
- data/app/assets/images/decidim/gamification/badges/invitations.svg +1 -117
- data/app/assets/images/decidim/icons.svg +1 -259
- data/app/assets/images/decidim/placeholder.jpg +0 -0
- data/app/assets/javascripts/decidim.js.es6 +23 -1
- data/app/assets/javascripts/decidim/ajax_modals.js.es6 +3 -0
- data/app/assets/javascripts/decidim/assets.js.erb +5 -0
- data/app/assets/javascripts/decidim/callout.js.es6 +18 -0
- data/app/assets/javascripts/decidim/configuration.js.es6 +23 -0
- data/app/assets/javascripts/decidim/confirm.js.es6 +178 -0
- data/app/assets/javascripts/decidim/conversations.js.es6 +17 -0
- data/app/assets/javascripts/decidim/core/bundle.js +1 -1
- data/app/assets/javascripts/decidim/core/bundle.js.map +1 -1
- data/app/assets/javascripts/decidim/core/extrapoly.js +6 -0
- data/app/assets/javascripts/decidim/data_picker.js.es6 +128 -50
- data/app/assets/javascripts/decidim/diff_mode_dropdown.js.es6 +5 -7
- data/app/assets/javascripts/decidim/dropdowns_menus.js.es6 +32 -0
- data/app/assets/javascripts/decidim/external_link.js.es6 +69 -0
- data/app/assets/javascripts/decidim/floating_help.js.es6 +7 -0
- data/app/assets/javascripts/decidim/form_filter.component.js.es6 +1 -1
- data/app/assets/javascripts/decidim/form_filter.component.test.js +4 -4
- data/app/assets/javascripts/decidim/form_validator.es6 +61 -0
- data/app/assets/javascripts/decidim/foundation.js.es6 +28 -28
- data/app/assets/javascripts/decidim/icon.js.es6 +42 -0
- data/app/assets/javascripts/decidim/identity_selector_dialog.js.es6 +61 -0
- data/app/assets/javascripts/decidim/input_character_counter.js.es6 +115 -0
- data/app/assets/javascripts/decidim/input_mentions.js.es6 +34 -9
- data/app/assets/javascripts/decidim/input_multiple_mentions.js.es6 +195 -0
- data/app/assets/javascripts/decidim/map.js.es6 +40 -3
- data/app/assets/javascripts/decidim/orders.js.es6 +9 -28
- data/app/assets/javascripts/decidim/responsive_horizontal_tabs.js.es6 +12 -0
- data/app/assets/javascripts/decidim/results_listing.js.es6 +44 -0
- data/app/assets/javascripts/decidim/start_conversation_dialog.js +13 -0
- data/app/assets/javascripts/decidim/vizzs.js.es6 +1 -0
- data/app/assets/stylesheets/decidim/_decidim-settings.scss +5 -0
- data/app/assets/stylesheets/decidim/_decidim.scss +13 -11
- data/app/assets/stylesheets/decidim/_properties.scss +25 -0
- data/app/assets/stylesheets/decidim/_variables.scss +6 -24
- data/app/assets/stylesheets/decidim/application.scss.erb +2 -2
- data/app/assets/stylesheets/decidim/editor.scss +2 -2
- data/app/assets/stylesheets/decidim/email.scss +1771 -0
- data/app/assets/stylesheets/decidim/extras/_external-links.scss +29 -0
- data/app/assets/stylesheets/decidim/extras/_extras.scss +17 -0
- data/app/assets/stylesheets/decidim/extras/_label-required.scss +9 -0
- data/app/assets/stylesheets/decidim/extras/_process_stats.scss +1 -1
- data/app/assets/stylesheets/decidim/extras/_quill.scss +5 -0
- data/app/assets/stylesheets/decidim/extras/_results-per-page.scss +8 -0
- data/app/assets/stylesheets/decidim/layouts/_home.scss +31 -7
- data/app/assets/stylesheets/decidim/layouts/_layouts.scss +5 -0
- data/app/assets/stylesheets/decidim/layouts/_logo.scss +26 -0
- data/app/assets/stylesheets/decidim/layouts/_user.scss +4 -0
- data/app/assets/stylesheets/decidim/modules/_author-avatar.scss +9 -13
- data/app/assets/stylesheets/decidim/modules/_buttons.scss +198 -26
- data/app/assets/stylesheets/decidim/modules/_cards.scss +174 -23
- data/app/assets/stylesheets/decidim/modules/_collapsible-list.scss +21 -0
- data/app/assets/stylesheets/decidim/modules/_comments.scss +25 -1
- data/app/assets/stylesheets/decidim/modules/_conference-programme.scss +0 -1
- data/app/assets/stylesheets/decidim/modules/_confirm.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_conversation.scss +50 -0
- data/app/assets/stylesheets/decidim/modules/_data-picker.scss +9 -11
- data/app/assets/stylesheets/decidim/modules/_definition-data.scss +6 -1
- data/app/assets/stylesheets/decidim/modules/_docs-manager.scss +0 -1
- data/app/assets/stylesheets/decidim/modules/_extra.scss +0 -2
- data/app/assets/stylesheets/decidim/modules/_filters.scss +25 -1
- data/app/assets/stylesheets/decidim/modules/_floating-helper.scss +20 -8
- data/app/assets/stylesheets/decidim/modules/_footer.scss +8 -4
- data/app/assets/stylesheets/decidim/modules/_forms.scss +63 -4
- data/app/assets/stylesheets/decidim/modules/_horizontal-tabs.scss +64 -1
- data/app/assets/stylesheets/decidim/modules/_inline-filters.scss +6 -3
- data/app/assets/stylesheets/decidim/modules/_input-gallery.scss +10 -0
- data/app/assets/stylesheets/decidim/modules/_input-mentions.scss +25 -7
- data/app/assets/stylesheets/decidim/modules/_input-multiple-mentions.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_map.scss +11 -0
- data/app/assets/stylesheets/decidim/modules/_margins.scss +8 -7
- data/app/assets/stylesheets/decidim/modules/_messages.scss +18 -18
- data/app/assets/stylesheets/decidim/modules/_modules.scss +75 -72
- data/app/assets/stylesheets/decidim/modules/_navbar.scss +176 -26
- data/app/assets/stylesheets/decidim/modules/_notification.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_order-by.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_process-nav.scss +5 -2
- data/app/assets/stylesheets/decidim/modules/_process-phase.scss +2 -4
- data/app/assets/stylesheets/decidim/modules/_process-stats.scss +2 -2
- data/app/assets/stylesheets/decidim/modules/_progress-bar.scss +1 -1
- data/app/assets/stylesheets/decidim/modules/_reveal.scss +6 -0
- data/app/assets/stylesheets/decidim/modules/_signup.scss +6 -5
- data/app/assets/stylesheets/decidim/modules/_static-pages.scss +0 -1
- data/app/assets/stylesheets/decidim/modules/_sticky.scss +5 -0
- data/app/assets/stylesheets/decidim/modules/_tags.scss +4 -0
- data/app/assets/stylesheets/decidim/modules/_timeline.scss +1 -2
- data/app/assets/stylesheets/decidim/modules/_typography.scss +47 -8
- data/app/assets/stylesheets/decidim/modules/_versions.scss +0 -1
- data/app/assets/stylesheets/decidim/utils/_helpers.scss +8 -0
- data/app/assets/stylesheets/decidim/utils/_mixins.scss +86 -7
- data/app/assets/stylesheets/decidim/utils/_settings.scss +81 -69
- data/app/assets/stylesheets/decidim/vizzs.scss +8 -0
- data/app/assets/stylesheets/decidim/vizzs/_areachart.scss +0 -1
- data/app/assets/stylesheets/decidim/vizzs/_linechart.scss +0 -1
- data/app/assets/stylesheets/decidim/vizzs/_rowchart.scss +0 -1
- data/app/assets/stylesheets/decidim/vizzs/_vizzs.scss +5 -0
- data/app/assets/stylesheets/foundation-overrides/components/_button-group.scss +319 -0
- data/app/cells/decidim/activity/show.erb +24 -21
- data/app/cells/decidim/activity_cell.rb +2 -0
- data/app/cells/decidim/address_cell.rb +1 -1
- data/app/cells/decidim/amendable/amend_button_card_cell.rb +1 -5
- data/app/cells/decidim/amendable/promote_button_card_cell.rb +1 -1
- data/app/cells/decidim/announcement/show.erb +1 -1
- data/app/cells/decidim/author/comments.erb +1 -1
- data/app/cells/decidim/author/endorsements.erb +6 -0
- data/app/cells/decidim/author/flag.erb +5 -2
- data/app/cells/decidim/author/profile_inline.erb +0 -1
- data/app/cells/decidim/author/show.erb +2 -0
- data/app/cells/decidim/author/withdraw.erb +2 -2
- data/app/cells/decidim/author_cell.rb +9 -13
- data/app/cells/decidim/badge/show.erb +6 -6
- data/app/cells/decidim/badge/small.erb +2 -1
- data/app/cells/decidim/card/show.erb +4 -4
- data/app/cells/decidim/card_m/comments_counter.erb +1 -1
- data/app/cells/decidim/card_m/header.erb +4 -4
- data/app/cells/decidim/card_m/image.erb +1 -1
- data/app/cells/decidim/card_m/show.erb +2 -2
- data/app/cells/decidim/card_m_cell.rb +3 -2
- data/app/cells/decidim/collapsible_list/show.erb +3 -3
- data/app/cells/decidim/content_blocks/footer_sub_hero/show.erb +4 -4
- data/app/cells/decidim/content_blocks/hero_settings_form/show.erb +2 -2
- data/app/cells/decidim/content_blocks/how_to_participate/show.erb +8 -8
- data/app/cells/decidim/content_blocks/last_activity_cell.rb +1 -1
- data/app/cells/decidim/content_blocks/stats/show.erb +1 -1
- data/app/cells/decidim/content_blocks/sub_hero/show.erb +3 -3
- data/app/cells/decidim/diff/attribute.erb +10 -10
- data/app/cells/decidim/diff_cell.rb +11 -1
- data/app/cells/decidim/endorsement_buttons/select_identity_button.erb +10 -0
- data/app/cells/decidim/endorsement_buttons/show.erb +4 -0
- data/app/cells/decidim/endorsement_buttons_cell.rb +208 -0
- data/app/cells/decidim/endorsers_list/show.erb +16 -0
- data/app/cells/decidim/endorsers_list_cell.rb +29 -0
- data/app/cells/decidim/fingerprint_cell.rb +1 -0
- data/app/cells/decidim/follow_button/show.erb +13 -5
- data/app/cells/decidim/follow_button_cell.rb +29 -5
- data/app/cells/decidim/navbar_admin_link/show.erb +1 -1
- data/app/cells/decidim/navbar_admin_link_cell.rb +6 -0
- data/app/cells/decidim/newsletter_templates/base_cell.rb +30 -0
- data/app/cells/decidim/newsletter_templates/base_settings_form_cell.rb +13 -0
- data/app/cells/decidim/newsletter_templates/basic_only_text/show.erb +86 -0
- data/app/cells/decidim/newsletter_templates/basic_only_text_cell.rb +21 -0
- data/app/cells/decidim/newsletter_templates/basic_only_text_settings_form/show.erb +7 -0
- data/app/cells/decidim/newsletter_templates/basic_only_text_settings_form_cell.rb +8 -0
- data/app/cells/decidim/newsletter_templates/image_text_cta/show.erb +125 -0
- data/app/cells/decidim/newsletter_templates/image_text_cta_cell.rb +61 -0
- data/app/cells/decidim/newsletter_templates/image_text_cta_settings_form/show.erb +17 -0
- data/app/cells/decidim/newsletter_templates/image_text_cta_settings_form_cell.rb +8 -0
- data/app/cells/decidim/notifications/show.erb +1 -1
- data/app/cells/decidim/profile/show.erb +2 -2
- data/app/cells/decidim/profile/user_group_tabs.erb +10 -5
- data/app/cells/decidim/profile/user_tabs.erb +16 -14
- data/app/cells/decidim/profile_cell.rb +18 -0
- data/app/cells/decidim/profile_sidebar/show.erb +16 -16
- data/app/cells/decidim/profile_sidebar_cell.rb +1 -0
- data/app/cells/decidim/search_results_section/show.erb +1 -1
- data/app/cells/decidim/tags_cell.rb +32 -2
- data/app/cells/decidim/user_activity/show.erb +19 -1
- data/app/cells/decidim/user_activity_cell.rb +6 -0
- data/app/cells/decidim/user_conversation/conversation_header.erb +14 -0
- data/app/cells/decidim/user_conversation/messages.erb +15 -0
- data/app/cells/decidim/user_conversation/new.erb +15 -0
- data/app/cells/decidim/user_conversation/reply.erb +17 -0
- data/app/cells/decidim/user_conversation/show.erb +20 -0
- data/app/cells/decidim/user_conversation_cell.rb +75 -0
- data/app/cells/decidim/user_conversations/add_conversation_users.erb +25 -0
- data/app/cells/decidim/user_conversations/conversation_item.erb +38 -0
- data/app/cells/decidim/user_conversations/show.erb +58 -0
- data/app/cells/decidim/user_conversations_cell.rb +40 -0
- data/app/cells/decidim/user_group_admin_membership_profile/footer.erb +3 -3
- data/app/cells/decidim/user_profile/footer.erb +1 -1
- data/app/cells/decidim/user_profile/unlinked_user_data.erb +16 -0
- data/app/cells/decidim/user_profile/user_data.erb +1 -1
- data/app/cells/decidim/user_profile_cell.rb +7 -1
- data/app/cells/decidim/user_timeline_cell.rb +4 -0
- data/app/cells/decidim/version/show.erb +31 -0
- data/app/{views/decidim/shared/_version_author.html.erb → cells/decidim/version_author/show.erb} +1 -1
- data/app/cells/decidim/version_author_cell.rb +9 -0
- data/app/cells/decidim/version_cell.rb +83 -0
- data/app/cells/decidim/versions_list/show.erb +32 -0
- data/app/cells/decidim/versions_list_cell.rb +64 -0
- data/app/cells/decidim/versions_list_item/show.erb +20 -0
- data/app/cells/decidim/versions_list_item_cell.rb +51 -0
- data/app/cells/decidim/wizard_step_form/wizard_aside.erb +1 -1
- data/app/cells/decidim/wizard_step_form/wizard_header.erb +2 -2
- data/app/cells/decidim/wizard_step_form_cell.rb +4 -1
- data/app/commands/decidim/attachment_methods.rb +40 -0
- data/app/commands/decidim/create_registration.rb +2 -1
- data/app/commands/decidim/create_user_group.rb +12 -0
- data/app/commands/decidim/destroy_account.rb +12 -0
- data/app/commands/decidim/endorse_resource.rb +64 -0
- data/app/commands/decidim/gallery_methods.rb +64 -0
- data/app/commands/decidim/invite_user_again.rb +2 -4
- data/app/commands/decidim/messaging/reply_to_conversation.rb +34 -3
- data/app/commands/decidim/messaging/start_conversation.rb +36 -5
- data/app/commands/decidim/unendorse_resource.rb +38 -0
- data/app/commands/decidim/update_notifications_settings.rb +1 -0
- data/app/commands/decidim/update_user_group.rb +14 -1
- data/app/controllers/concerns/decidim/impersonate_users.rb +13 -0
- data/app/controllers/concerns/decidim/resource_versions_concern.rb +28 -0
- data/app/controllers/decidim/devise/registrations_controller.rb +2 -4
- data/app/controllers/decidim/devise/sessions_controller.rb +5 -0
- data/app/controllers/decidim/endorsements_controller.rb +71 -0
- data/app/controllers/decidim/messaging/conversations_controller.rb +52 -12
- data/app/controllers/decidim/newsletters_controller.rb +2 -2
- data/app/controllers/decidim/profiles_controller.rb +6 -0
- data/app/controllers/decidim/scopes_controller.rb +1 -0
- data/app/controllers/decidim/user_activities_controller.rb +19 -2
- data/app/controllers/decidim/user_conversations_controller.rb +142 -0
- data/app/controllers/decidim/user_timeline_controller.rb +19 -2
- data/app/events/decidim/resource_endorsed_event.rb +35 -0
- data/app/events/decidim/user_group_admin_event.rb +37 -0
- data/app/events/decidim/user_group_created_event.rb +6 -0
- data/app/events/decidim/user_group_updated_event.rb +6 -0
- data/app/forms/decidim/attachment_form.rb +1 -0
- data/app/forms/decidim/messaging/conversation_form.rb +10 -4
- data/app/forms/decidim/notifications_settings_form.rb +6 -0
- data/app/forms/decidim/registration_form.rb +1 -0
- data/app/functions/decidim/core/component_finder_base.rb +10 -3
- data/app/functions/decidim/core/component_list_base.rb +8 -2
- data/app/functions/decidim/core/user_entity_finder.rb +33 -0
- data/app/functions/decidim/core/user_entity_list.rb +31 -0
- data/app/helpers/concerns/decidim/flash_helper_extensions.rb +47 -0
- data/app/helpers/decidim/action_authorization_helper.rb +24 -2
- data/app/helpers/decidim/amendments_helper.rb +5 -3
- data/app/helpers/decidim/application_helper.rb +7 -1
- data/app/helpers/decidim/check_boxes_tree_helper.rb +4 -5
- data/app/helpers/decidim/cta_button_helper.rb +1 -1
- data/app/helpers/decidim/decidim_form_helper.rb +23 -0
- data/app/helpers/decidim/endorsable_helper.rb +93 -0
- data/app/helpers/decidim/filters_helper.rb +15 -5
- data/app/helpers/decidim/followable_helper.rb +11 -0
- data/app/helpers/decidim/layout_helper.rb +23 -5
- data/app/helpers/decidim/map_helper.rb +15 -2
- data/app/helpers/decidim/markup_helper.rb +9 -0
- data/app/helpers/decidim/messaging/conversation_helper.rb +61 -7
- data/app/helpers/decidim/orders_helper.rb +10 -1
- data/app/helpers/decidim/participatory_space_helpers.rb +1 -1
- data/app/helpers/decidim/resource_versions_helper.rb +24 -7
- data/app/helpers/decidim/rich_text_editor_helper.rb +1 -0
- data/app/helpers/decidim/sanitize_helper.rb +10 -2
- data/app/helpers/decidim/tooltip_helper.rb +1 -1
- data/app/helpers/decidim/traceability_helper.rb +2 -8
- data/app/helpers/decidim/user_profile_helper.rb +1 -1
- data/app/helpers/decidim/widget_urls_helper.rb +4 -2
- data/app/jobs/decidim/event_publisher_job.rb +1 -1
- data/app/mailers/concerns/decidim/multitenant_asset_host.rb +33 -0
- data/app/mailers/decidim/application_mailer.rb +1 -0
- data/app/mailers/decidim/messaging/conversation_mailer.rb +53 -4
- data/app/mailers/decidim/newsletter_mailer.rb +22 -4
- data/app/middleware/decidim/strip_x_forwarded_host.rb +14 -0
- data/app/models/decidim/action_log.rb +1 -1
- data/app/models/decidim/amendment.rb +0 -18
- data/app/models/decidim/authorization.rb +24 -0
- data/app/models/decidim/component.rb +7 -0
- data/app/models/decidim/content_block.rb +5 -3
- data/app/models/decidim/endorsement.rb +30 -0
- data/app/models/decidim/messaging/conversation.rb +39 -11
- data/app/models/decidim/messaging/message.rb +31 -5
- data/app/models/decidim/messaging/participation.rb +1 -1
- data/app/models/decidim/messaging/receipt.rb +8 -0
- data/app/models/decidim/newsletter.rb +7 -1
- data/app/models/decidim/organization.rb +16 -7
- data/app/models/decidim/user.rb +32 -0
- data/app/models/decidim/user_group.rb +23 -0
- data/app/permissions/decidim/permissions.rb +19 -6
- data/app/presenters/decidim/admin_log/user_presenter.rb +1 -1
- data/app/presenters/decidim/metric_charts_presenter.rb +33 -13
- data/app/presenters/decidim/nil_presenter.rb +29 -0
- data/app/presenters/decidim/resource_locator_presenter.rb +2 -1
- data/app/presenters/decidim/user_group_presenter.rb +1 -1
- data/app/presenters/decidim/user_presenter.rb +6 -0
- data/app/queries/decidim/metric_manage.rb +5 -0
- data/app/queries/decidim/metrics/followers_metric_manage.rb +1 -6
- data/app/queries/decidim/user_groups/admin_memberships.rb +3 -3
- data/app/services/decidim/activity_search.rb +1 -0
- data/app/services/decidim/base_diff_renderer.rb +25 -3
- data/app/services/decidim/events_manager.rb +4 -1
- data/app/types/decidim/core/decidim_type.rb +0 -4
- data/app/types/decidim/core/has_endorsable_input_sort.rb +17 -0
- data/app/types/decidim/core/has_timestamp_input_filter.rb +52 -0
- data/app/types/decidim/core/has_timestamp_input_sort.rb +12 -0
- data/app/types/decidim/core/user_entity_input_filter.rb +81 -0
- data/app/types/decidim/core/user_entity_input_sort.rb +24 -0
- data/app/types/decidim/core/user_group_type.rb +17 -5
- data/app/types/decidim/core/user_type.rb +17 -6
- data/app/uploaders/decidim/attachment_uploader.rb +1 -1
- data/app/uploaders/decidim/avatar_uploader.rb +4 -0
- data/app/uploaders/decidim/image_uploader.rb +28 -4
- data/app/uploaders/decidim/newsletter_template_image_uploader.rb +36 -0
- data/app/views/decidim/account/delete.html.erb +6 -3
- data/app/views/decidim/account/show.html.erb +17 -10
- data/app/views/decidim/amendments/_edit_form_fields.html.erb +2 -0
- data/app/views/decidim/amendments/_similar_emendation.html.erb +4 -4
- data/app/views/decidim/amendments/compare_draft.html.erb +2 -2
- data/app/views/decidim/amendments/edit_draft.html.erb +2 -2
- data/app/views/decidim/amendments/new.html.erb +2 -2
- data/app/views/decidim/amendments/preview_draft.html.erb +2 -2
- data/app/views/decidim/amendments/review.html.erb +3 -3
- data/app/views/decidim/application/_collection.html.erb +2 -2
- data/app/views/decidim/application/_document.html.erb +4 -4
- data/app/views/decidim/application/_documents.html.erb +1 -1
- data/app/views/decidim/application/_photos.html.erb +1 -1
- data/app/views/decidim/authorization_modals/show.html.erb +1 -1
- data/app/views/decidim/data_portability/show.html.erb +3 -0
- data/app/views/decidim/devise/confirmations/new.html.erb +3 -3
- data/app/views/decidim/devise/invitations/edit.html.erb +13 -13
- data/app/views/decidim/devise/omniauth_registrations/new.html.erb +5 -3
- data/app/views/decidim/devise/passwords/edit.html.erb +5 -3
- data/app/views/decidim/devise/passwords/new.html.erb +3 -3
- data/app/views/decidim/devise/registrations/edit.html.erb +2 -1
- data/app/views/decidim/devise/registrations/new.html.erb +7 -8
- data/app/views/decidim/devise/sessions/new.html.erb +4 -6
- data/app/views/decidim/devise/shared/_newsletter_modal.html.erb +3 -3
- data/app/views/decidim/devise/shared/_omniauth_buttons.html.erb +3 -1
- data/app/views/decidim/devise/shared/_omniauth_buttons_mini.html.erb +4 -1
- data/app/views/decidim/devise/unlocks/new.html.erb +3 -3
- data/app/views/decidim/doorkeeper/authorizations/new.html.erb +2 -2
- data/app/views/decidim/endorsements/_identity.html.erb +9 -0
- data/app/views/decidim/endorsements/identities.html.erb +12 -0
- data/app/views/decidim/endorsements/update_buttons_and_counters.js.erb +20 -0
- data/app/views/decidim/errors/internal_server_error.html.erb +2 -2
- data/app/views/decidim/errors/not_found.html.erb +2 -2
- data/app/views/decidim/gamification/badges/index.html.erb +4 -4
- data/app/views/decidim/group_admins/index.html.erb +6 -4
- data/app/views/decidim/group_invites/index.html.erb +5 -2
- data/app/views/decidim/group_members/index.html.erb +6 -4
- data/app/views/decidim/groups/_form.html.erb +2 -0
- data/app/views/decidim/groups/edit.html.erb +4 -2
- data/app/views/decidim/groups/new.html.erb +2 -2
- data/app/views/decidim/last_activities/index.html.erb +2 -0
- data/app/views/decidim/messaging/conversation_mailer/comanagers_new_conversation.html.erb +17 -0
- data/app/views/decidim/messaging/conversation_mailer/comanagers_new_message.html.erb +17 -0
- data/app/views/decidim/messaging/conversation_mailer/new_conversation.html.erb +2 -2
- data/app/views/decidim/messaging/conversation_mailer/new_group_conversation.html.erb +17 -0
- data/app/views/decidim/messaging/conversation_mailer/new_group_message.html.erb +17 -0
- data/app/views/decidim/messaging/conversation_mailer/new_message.html.erb +2 -2
- data/app/views/decidim/messaging/conversations/_add_conversation_users.html.erb +24 -0
- data/app/views/decidim/messaging/conversations/_conversation.html.erb +54 -0
- data/app/views/decidim/messaging/conversations/_messages.html.erb +15 -0
- data/app/views/decidim/messaging/conversations/_new_conversation_button.html.erb +33 -0
- data/app/views/decidim/messaging/conversations/_reply.html.erb +3 -3
- data/app/views/decidim/messaging/conversations/_show.html.erb +34 -15
- data/app/views/decidim/messaging/conversations/_start.html.erb +7 -1
- data/app/views/decidim/messaging/conversations/create.js.erb +1 -1
- data/app/views/decidim/messaging/conversations/index.html.erb +34 -29
- data/app/views/decidim/messaging/conversations/new.html.erb +1 -1
- data/app/views/decidim/messaging/conversations/show.html.erb +8 -4
- data/app/views/decidim/messaging/conversations/update.js.erb +1 -1
- data/app/views/decidim/newsletter_mailer/newsletter.html.erb +2 -2
- data/app/views/decidim/newsletters/show.html.erb +8 -1
- data/app/views/decidim/notifications/index.html.erb +4 -2
- data/app/views/decidim/notifications_settings/show.html.erb +14 -1
- data/app/views/decidim/own_user_groups/index.html.erb +4 -0
- data/app/views/decidim/pages/_standalone.html.erb +1 -1
- data/app/views/decidim/pages/_tabbed.html.erb +5 -5
- data/app/views/decidim/pages/index.html.erb +22 -13
- data/app/views/decidim/profiles/_user_follow.erb +3 -3
- data/app/views/decidim/profiles/show.html.erb +2 -0
- data/app/views/decidim/scopes/_scopes_picker_input.html.erb +11 -4
- data/app/views/decidim/scopes/picker.html.erb +26 -16
- data/app/views/decidim/searches/_count.html.erb +14 -11
- data/app/views/decidim/searches/_filters.html.erb +2 -2
- data/app/views/decidim/searches/index.html.erb +5 -3
- data/app/views/decidim/shared/_check_boxes_tree.html.erb +5 -3
- data/app/views/decidim/shared/_confirm_modal.html.erb +18 -0
- data/app/views/decidim/shared/_embed_modal.html.erb +4 -1
- data/app/views/decidim/shared/_extended_navigation_bar.html.erb +2 -2
- data/app/views/decidim/shared/_filter_form_help.erb +8 -0
- data/app/views/decidim/shared/_floating_help.html.erb +7 -7
- data/app/views/decidim/shared/_login_modal.html.erb +4 -4
- data/app/views/decidim/shared/_orders.html.erb +16 -5
- data/app/views/decidim/shared/_results_per_page.html.erb +16 -6
- data/app/views/decidim/shared/_share_modal.html.erb +8 -4
- data/app/views/decidim/shared/_static_map.html.erb +1 -1
- data/app/views/decidim/shared/participatory_space_filters/_filters.html.erb +1 -1
- data/app/views/decidim/user_activities/index.html.erb +4 -0
- data/app/views/decidim/user_activities/index.js.erb +14 -0
- data/app/views/decidim/user_conversations/index.html.erb +4 -0
- data/app/views/decidim/user_conversations/show.html.erb +4 -0
- data/app/views/decidim/user_conversations/update.js.erb +8 -0
- data/app/views/decidim/user_interests/_scopes.html.erb +12 -10
- data/app/views/decidim/user_interests/show.html.erb +4 -1
- data/app/views/decidim/user_timeline/index.html.erb +5 -1
- data/app/views/decidim/user_timeline/index.js.erb +14 -0
- data/app/views/kaminari/decidim/_first_page.html.erb +5 -1
- data/app/views/kaminari/decidim/_last_page.html.erb +5 -1
- data/app/views/kaminari/decidim/_next_page.html.erb +6 -1
- data/app/views/kaminari/decidim/_page.html.erb +2 -2
- data/app/views/kaminari/decidim/_paginator.html.erb +16 -14
- data/app/views/kaminari/decidim/_prev_page.html.erb +6 -1
- data/app/views/layouts/decidim/_application.html.erb +4 -2
- data/app/views/layouts/decidim/_cookie_warning.html.erb +1 -1
- data/app/views/layouts/decidim/_edit_link.html.erb +0 -0
- data/app/views/layouts/decidim/_head.html.erb +2 -0
- data/app/views/layouts/decidim/_js_configuration.html.erb +28 -0
- data/app/views/layouts/decidim/_language_chooser.html.erb +10 -5
- data/app/views/layouts/decidim/_logo.html.erb +2 -22
- data/app/views/layouts/decidim/_mailer_logo.html.erb +2 -22
- data/app/views/layouts/decidim/_main_footer.html.erb +3 -1
- data/app/views/layouts/decidim/_mini_footer.html.erb +7 -7
- data/app/views/layouts/decidim/_omnipresent_banner.html.erb +1 -1
- data/app/views/layouts/decidim/_organization_colors.html.erb +4 -3
- data/app/views/layouts/decidim/_social_media_links.html.erb +15 -10
- data/app/views/layouts/decidim/_topbar_search.html.erb +12 -2
- data/app/views/layouts/decidim/_user_menu.html.erb +6 -6
- data/app/views/layouts/decidim/_wrapper.html.erb +21 -16
- data/app/views/layouts/decidim/newsletter_base.html.erb +46 -0
- data/app/views/layouts/decidim/user_profile.html.erb +8 -3
- data/app/views/layouts/decidim/widget.html.erb +1 -0
- data/config/initializers/devise.rb +11 -3
- data/config/initializers/invisible_captcha.rb +1 -0
- data/config/initializers/omniauth.rb +7 -1
- data/config/initializers/rack_attack.rb +25 -16
- data/config/locales/ar.yml +7 -5
- data/config/locales/bg-BG.yml +1512 -0
- data/config/locales/ca.yml +258 -6
- data/config/locales/cs.yml +297 -37
- data/config/locales/da-DK.yml +9 -0
- data/config/locales/de.yml +279 -5
- data/config/locales/el.yml +1443 -5
- data/config/locales/en.yml +263 -11
- data/config/locales/es-MX.yml +257 -5
- data/config/locales/es-PY.yml +257 -5
- data/config/locales/es.yml +257 -5
- data/config/locales/et-EE.yml +9 -0
- data/config/locales/eu.yml +7 -2
- data/config/locales/fi-plain.yml +258 -6
- data/config/locales/fi.yml +319 -67
- data/config/locales/fr-CA.yml +1585 -0
- data/config/locales/fr.yml +263 -5
- data/config/locales/ga-IE.yml +9 -0
- data/config/locales/gl.yml +7 -2
- data/config/locales/hr-HR.yml +9 -0
- data/config/locales/hu.yml +87 -5
- data/config/locales/id-ID.yml +7 -2
- data/config/locales/is-IS.yml +1 -0
- data/config/locales/it.yml +279 -27
- data/config/locales/ja-JP.yml +1578 -0
- data/config/locales/lt-LT.yml +9 -0
- data/config/locales/lv-LV.yml +1485 -0
- data/config/locales/mt-MT.yml +9 -0
- data/config/locales/nl.yml +261 -6
- data/config/locales/no.yml +117 -41
- data/config/locales/pl.yml +755 -406
- data/config/locales/pt-BR.yml +8 -4
- data/config/locales/pt.yml +875 -536
- data/config/locales/ro-RO.yml +1603 -0
- data/config/locales/ru.yml +6 -1
- data/config/locales/sk-SK.yml +1426 -0
- data/config/locales/sk.yml +1441 -0
- data/config/locales/sl.yml +71 -0
- data/config/locales/sr-CS.yml +129 -0
- data/config/locales/sv.yml +323 -24
- data/config/locales/tr-TR.yml +7 -2
- data/config/locales/uk.yml +6 -1
- data/config/routes.rb +5 -0
- data/db/migrate/20180810092428_move_organization_fields_to_hero_content_block.rb +2 -2
- data/db/migrate/20191130151925_create_decidim_endorsements.rb +13 -0
- data/db/migrate/20191204075509_add_session_token_to_users.rb +7 -0
- data/db/migrate/20200211173227_add_direct_message_types_to_users.rb +12 -0
- data/db/migrate/20200320105904_index_foreign_keys_in_decidim_action_logs.rb +9 -0
- data/db/migrate/20200320105905_index_foreign_keys_in_decidim_amendments.rb +7 -0
- data/db/migrate/20200320105909_index_foreign_keys_in_decidim_authorizations.rb +7 -0
- data/db/migrate/20200320105917_index_foreign_keys_in_decidim_contextual_help_sections.rb +7 -0
- data/db/migrate/20200320105919_index_foreign_keys_in_decidim_endorsements.rb +7 -0
- data/db/migrate/20200320105923_index_foreign_keys_in_decidim_notifications.rb +7 -0
- data/db/migrate/20200320105927_index_foreign_keys_in_oauth_access_grants.rb +7 -0
- data/db/migrate/20200323094443_add_id_to_content_blocks_scope.rb +7 -0
- data/db/migrate/20200326102407_rename_scope_column.rb +7 -0
- data/db/migrate/20200327082257_migrate_newsletters_to_templates.rb +33 -0
- data/db/migrate/20200327082954_remove_newsletter_body.rb +7 -0
- data/db/migrate/20200401073419_add_index_on_content_block_scope_id.rb +11 -0
- data/db/seeds.rb +1 -1
- data/{app/controllers/concerns → lib}/decidim/action_authorization.rb +0 -0
- data/lib/decidim/api/author_interface.rb +4 -0
- data/lib/decidim/api/endorsable_interface.rb +22 -0
- data/lib/decidim/api/participatory_space_interface.rb +2 -0
- data/lib/decidim/api/timestamps_interface.rb +2 -2
- data/lib/decidim/coauthorable.rb +1 -1
- data/lib/decidim/component_manifest.rb +14 -0
- data/lib/decidim/content_parsers.rb +1 -0
- data/lib/decidim/content_parsers/user_group_parser.rb +61 -0
- data/lib/decidim/content_parsers/user_parser.rb +3 -5
- data/lib/decidim/content_renderers.rb +1 -0
- data/lib/decidim/content_renderers/user_group_renderer.rb +30 -0
- data/lib/decidim/core.rb +65 -21
- data/lib/decidim/core/api.rb +1 -0
- data/lib/decidim/core/engine.rb +88 -6
- data/lib/decidim/core/test.rb +8 -0
- data/lib/decidim/core/test/factories.rb +103 -3
- data/lib/decidim/core/test/shared_examples/admin_resource_gallery_examples.rb +79 -0
- data/lib/decidim/core/test/shared_examples/back_to_list_button_examples.rb +17 -0
- data/lib/decidim/core/test/shared_examples/comments_examples.rb +17 -2
- data/lib/decidim/core/test/shared_examples/edit_link_shared_examples.rb +5 -1
- data/lib/decidim/core/test/shared_examples/endorsable_interface_examples.rb +22 -0
- data/lib/decidim/core/test/shared_examples/endorsements_controller_shared_context.rb +22 -0
- data/lib/decidim/core/test/shared_examples/follows_examples.rb +1 -1
- data/lib/decidim/core/test/shared_examples/input_sort_examples.rb +21 -0
- data/lib/decidim/core/test/shared_examples/logo_email.rb +20 -0
- data/lib/decidim/core/test/shared_examples/metric_manage_shared_context.rb +9 -0
- data/lib/decidim/core/test/shared_examples/permissions.rb +143 -0
- data/lib/decidim/core/test/shared_examples/reports_examples.rb +4 -4
- data/lib/decidim/core/test/shared_examples/rich_text_editor_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/simple_event.rb +1 -0
- data/lib/decidim/core/test/shared_examples/system_endorse_resource_examples.rb +165 -0
- data/lib/decidim/core/test/shared_examples/traceable_interface_examples.rb +3 -3
- data/lib/decidim/core/test/shared_examples/with_endorsable_permissions_examples.rb +89 -0
- data/lib/decidim/core/version.rb +1 -1
- data/lib/decidim/endorsable.rb +25 -0
- data/lib/decidim/events.rb +1 -0
- data/lib/decidim/events/user_group_event.rb +45 -0
- data/lib/decidim/exporters/csv.rb +1 -1
- data/lib/decidim/filter_form_builder.rb +15 -6
- data/lib/decidim/form_builder.rb +209 -23
- data/lib/decidim/has_attachments.rb +1 -1
- data/lib/decidim/participable.rb +6 -0
- data/lib/decidim/participatory_space_manifest.rb +15 -0
- data/lib/decidim/query_extensions.rb +9 -15
- data/lib/decidim/settings_manifest.rb +15 -1
- data/lib/decidim/view_model.rb +4 -0
- data/lib/tasks/decidim_tasks.rake +1 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.ro.js +15 -0
- data/vendor/assets/javascripts/datepicker-locales/foundation-datepicker.sk.js +14 -0
- data/vendor/assets/javascripts/svg4everybody.min.js +1 -2
- data/vendor/assets/javascripts/tribute.js +11 -4
- metadata +187 -31
- data/app/assets/javascripts/decidim/vizzs/orgchart.js.es6 +0 -699
- data/app/assets/stylesheets/decidim/email.css +0 -1403
- data/app/assets/stylesheets/decidim/modules/_input-hashtags.scss +0 -124
- data/app/resolvers/decidim/core/user_resolver.rb +0 -61
- data/app/views/decidim/messaging/conversations/_message.html.erb +0 -14
@@ -1,699 +0,0 @@
|
|
1
|
-
/* eslint-disable require-jsdoc, max-lines, no-return-assign, func-style, id-length, no-plusplus, no-use-before-define, no-negated-condition, init-declarations, no-invalid-this, no-param-reassign, no-ternary, multiline-ternary, no-nested-ternary, no-eval, no-extend-native, prefer-reflect */
|
2
|
-
/* eslint dot-location: ["error", "property"], no-negated-condition: "error" */
|
3
|
-
/* eslint no-unused-expressions: ["error", { "allowTernary": true }] */
|
4
|
-
/* eslint no-unused-vars: ["error", { "args": "none" }] */
|
5
|
-
/* global d3 */
|
6
|
-
|
7
|
-
// = require ./renders
|
8
|
-
// = require_self
|
9
|
-
// = require d3
|
10
|
-
((exports) => {
|
11
|
-
const { Decidim: { Visualizations: render } } = exports;
|
12
|
-
|
13
|
-
// lib
|
14
|
-
const renderOrgCharts = () => {
|
15
|
-
const $orgChartContainer = $(".js-orgchart")
|
16
|
-
const $btnReset = $(".js-reset-orgchart")
|
17
|
-
|
18
|
-
let dataDepicted = null
|
19
|
-
let fake = false
|
20
|
-
let orgchart = {}
|
21
|
-
|
22
|
-
// lib - https://bl.ocks.org/bumbeishvili/b96ba47ea21d14dfce6ebb859b002d3a
|
23
|
-
const renderChartCollapsibleNetwork = (params) => {
|
24
|
-
|
25
|
-
// exposed variables
|
26
|
-
let attrs = {
|
27
|
-
id: `id${Math.floor(Math.random() * 1000000)}`,
|
28
|
-
svgWidth: 960,
|
29
|
-
svgHeight: 600,
|
30
|
-
marginTop: 0,
|
31
|
-
marginBottom: 5,
|
32
|
-
marginRight: 0,
|
33
|
-
marginLeft: 30,
|
34
|
-
container: "body",
|
35
|
-
distance: 150,
|
36
|
-
hiddenChildLevel: 1,
|
37
|
-
hoverOpacity: 0.2,
|
38
|
-
maxTextDisplayZoomLevel: 1,
|
39
|
-
lineStrokeWidth: 1.5,
|
40
|
-
fakeRoot: false,
|
41
|
-
nodeGutter: { x: 16, y: 8 },
|
42
|
-
childrenIndicatorRadius: 15,
|
43
|
-
fakeBorderWidth: 32,
|
44
|
-
data: null
|
45
|
-
}
|
46
|
-
|
47
|
-
/* ############### IF EXISTS OVERWRITE ATTRIBUTES FROM PASSED PARAM ####### */
|
48
|
-
|
49
|
-
let attrKeys = Object.keys(attrs)
|
50
|
-
attrKeys.forEach(function (key) {
|
51
|
-
if (params && params[key]) {
|
52
|
-
attrs[key] = params[key]
|
53
|
-
}
|
54
|
-
})
|
55
|
-
|
56
|
-
// innerFunctions which will update visuals
|
57
|
-
let updateData
|
58
|
-
let collapse, expand
|
59
|
-
let filter
|
60
|
-
let hierarchy = {}
|
61
|
-
|
62
|
-
// main chart object
|
63
|
-
let main = function (selection) {
|
64
|
-
selection.each(function scope() {
|
65
|
-
|
66
|
-
// calculated properties
|
67
|
-
let calc = {}
|
68
|
-
calc.chartLeftMargin = attrs.marginLeft
|
69
|
-
calc.chartTopMargin = attrs.marginTop
|
70
|
-
calc.chartWidth = attrs.svgWidth - attrs.marginRight - calc.chartLeftMargin
|
71
|
-
calc.chartHeight = attrs.svgHeight - attrs.marginBottom - calc.chartTopMargin
|
72
|
-
|
73
|
-
// ########################## HIERARCHY STUFF #########################
|
74
|
-
hierarchy.root = d3.hierarchy(attrs.data.root)
|
75
|
-
|
76
|
-
// ########################### BEHAVIORS #########################
|
77
|
-
let behaviors = {}
|
78
|
-
// behaviors.zoom = d3.zoom().scaleExtent([0.75, 100, 8]).on("zoom", zoomed)
|
79
|
-
behaviors.drag = d3.drag().on("start", dragstarted).on("drag", dragged).on("end", dragended)
|
80
|
-
|
81
|
-
// ########################### LAYOUTS #########################
|
82
|
-
let layouts = {}
|
83
|
-
|
84
|
-
// custom radial layout
|
85
|
-
layouts.radial = d3.radial()
|
86
|
-
|
87
|
-
// ########################### FORCE STUFF #########################
|
88
|
-
let force = {}
|
89
|
-
force.link = d3.forceLink().id((d) => d.id)
|
90
|
-
force.charge = d3.forceManyBody().strength(-240)
|
91
|
-
force.center = d3.forceCenter(calc.chartWidth / 2, calc.chartHeight / 2)
|
92
|
-
|
93
|
-
// prevent collide
|
94
|
-
force.collide = d3.forceCollide().radius((d) => {
|
95
|
-
// Creates an invented radius based on element measures: diagonal = 2 * radius = sqrt(width^2, height^2)
|
96
|
-
let base = (d.bbox || {}).width + (attrs.nodeGutter.x * 2)
|
97
|
-
let height = (d.bbox || {}).height + (attrs.nodeGutter.y * 2)
|
98
|
-
let diagonal = Math.sqrt(Math.pow(base, 2) + Math.pow(height, 2))
|
99
|
-
let fakeRadius = (diagonal / 2)
|
100
|
-
|
101
|
-
// return d3.max([attrs.nodeDistance * 3, fakeRadius])
|
102
|
-
return fakeRadius * 1.5
|
103
|
-
})
|
104
|
-
|
105
|
-
// manually set x positions (which is calculated using custom radial layout)
|
106
|
-
force.x = d3.forceX()
|
107
|
-
.strength(0.5)
|
108
|
-
.x(function (d) {
|
109
|
-
|
110
|
-
// if node does not have children and is channel (depth=2) , then position it on parent's coordinate
|
111
|
-
if (!d.children && d.depth > 2) {
|
112
|
-
if (d.parent) {
|
113
|
-
d = d.parent
|
114
|
-
}
|
115
|
-
}
|
116
|
-
|
117
|
-
// custom circle projection - radius will be - (d.depth - 1) * 150
|
118
|
-
return projectCircle(d.proportion, (d.depth - 1) * attrs.distance)[0]
|
119
|
-
})
|
120
|
-
|
121
|
-
// manually set y positions (which is calculated using d3.cluster)
|
122
|
-
force.y = d3.forceY()
|
123
|
-
.strength(0.5)
|
124
|
-
.y(function (d) {
|
125
|
-
|
126
|
-
// if node does not have children and is channel (depth=2) , then position it on parent's coordinate
|
127
|
-
if (!d.children && d.depth > 2) {
|
128
|
-
if (d.parent) {
|
129
|
-
d = d.parent
|
130
|
-
}
|
131
|
-
}
|
132
|
-
|
133
|
-
// custom circle projection - radius will be - (d.depth - 1) * 150
|
134
|
-
return projectCircle(d.proportion, (d.depth - 1) * attrs.distance)[1]
|
135
|
-
})
|
136
|
-
|
137
|
-
// --------------------------------- INITIALISE FORCE SIMULATION ----------------------------
|
138
|
-
|
139
|
-
// get based on top parameter simulation
|
140
|
-
force.simulation = d3.forceSimulation()
|
141
|
-
.force("link", force.link)
|
142
|
-
.force("charge", force.charge)
|
143
|
-
.force("center", force.center)
|
144
|
-
.force("collide", force.collide)
|
145
|
-
.force("x", force.x)
|
146
|
-
.force("y", force.y)
|
147
|
-
|
148
|
-
// ########################### HIERARCHY STUFF #########################
|
149
|
-
|
150
|
-
// flatten root
|
151
|
-
let arr = flatten(hierarchy.root)
|
152
|
-
|
153
|
-
// hide members based on their depth
|
154
|
-
arr.forEach((d) => {
|
155
|
-
// Hide fake root node
|
156
|
-
if ((attrs.fakeRoot) && (d.depth === 1)) {
|
157
|
-
d.hidden = true
|
158
|
-
}
|
159
|
-
|
160
|
-
if (d.depth > attrs.hiddenChildLevel) {
|
161
|
-
d._children = d.children
|
162
|
-
d.children = null
|
163
|
-
}
|
164
|
-
})
|
165
|
-
|
166
|
-
// #################################### DRAWINGS #######################
|
167
|
-
|
168
|
-
// drawing containers
|
169
|
-
let container = d3.select(this)
|
170
|
-
|
171
|
-
// add svg
|
172
|
-
let svg = container.patternify({ tag: "svg", selector: "svg-chart-container" })
|
173
|
-
.attr("width", attrs.svgWidth)
|
174
|
-
.attr("height", attrs.svgHeight)
|
175
|
-
// .call(behaviors.zoom)
|
176
|
-
|
177
|
-
// add container g element
|
178
|
-
let chart = svg.patternify({ tag: "g", selector: "chart" })
|
179
|
-
.attr("transform", `translate(${calc.chartLeftMargin},${calc.chartTopMargin})`)
|
180
|
-
|
181
|
-
// ################################ Chart Content Drawing ##################################
|
182
|
-
|
183
|
-
// link wrapper
|
184
|
-
let linksWrapper = chart.patternify({ tag: "g", selector: "links-wrapper" })
|
185
|
-
|
186
|
-
// node wrapper
|
187
|
-
let nodesWrapper = chart.patternify({ tag: "g", selector: "nodes-wrapper" })
|
188
|
-
let links, nodes
|
189
|
-
|
190
|
-
// reusable function which updates visual based on data change
|
191
|
-
update()
|
192
|
-
|
193
|
-
// update visual based on data change
|
194
|
-
function update(clickedNode) {
|
195
|
-
|
196
|
-
// Show/hide reset button
|
197
|
-
(clickedNode) ? $btnReset.removeClass("invisible") : $btnReset.addClass("invisible")
|
198
|
-
|
199
|
-
// set xy and proportion properties with custom radial layout
|
200
|
-
layouts.radial(hierarchy.root)
|
201
|
-
|
202
|
-
// nodes and links array
|
203
|
-
let nodesArr = flatten(hierarchy.root, true)
|
204
|
-
.orderBy((d) => d.depth)
|
205
|
-
.filter((d) => !d.hidden)
|
206
|
-
|
207
|
-
let linksArr = hierarchy.root.links()
|
208
|
-
.filter((d) => !d.source.hidden)
|
209
|
-
.filter((d) => !d.target.hidden)
|
210
|
-
|
211
|
-
// make new nodes to appear near the parents
|
212
|
-
nodesArr.forEach(function (d) {
|
213
|
-
if (clickedNode && clickedNode.id === (d.parent && d.parent.id)) {
|
214
|
-
d.x = d.parent.x
|
215
|
-
d.y = d.parent.y
|
216
|
-
}
|
217
|
-
})
|
218
|
-
|
219
|
-
// links
|
220
|
-
links = linksWrapper.selectAll(".link")
|
221
|
-
.data(linksArr, (d) => d.target.id)
|
222
|
-
links.exit().remove()
|
223
|
-
|
224
|
-
links = links.enter()
|
225
|
-
.append("line")
|
226
|
-
.attr("class", "link")
|
227
|
-
.merge(links)
|
228
|
-
|
229
|
-
// node groups
|
230
|
-
nodes = nodesWrapper.selectAll(".node")
|
231
|
-
.data(nodesArr, (d) => d.id)
|
232
|
-
nodes.exit().remove()
|
233
|
-
|
234
|
-
let enteredNodes = nodes.enter()
|
235
|
-
.append("g")
|
236
|
-
.attr("class", "node")
|
237
|
-
|
238
|
-
// bind event handlers
|
239
|
-
enteredNodes
|
240
|
-
.on("click", nodeClick)
|
241
|
-
.on("mouseenter", nodeMouseEnter)
|
242
|
-
.on("mouseleave", nodeMouseLeave)
|
243
|
-
.call(behaviors.drag)
|
244
|
-
|
245
|
-
// channels grandchildren
|
246
|
-
enteredNodes.append("rect")
|
247
|
-
.attr("class", "as-card")
|
248
|
-
.attr("rx", 4)
|
249
|
-
.attr("ry", 4)
|
250
|
-
|
251
|
-
enteredNodes.append("text")
|
252
|
-
.attr("class", "as-text")
|
253
|
-
.text((d) => d.data.name)
|
254
|
-
|
255
|
-
enteredNodes.selectAll("text").each(function(d) {
|
256
|
-
d.bbox = this.getBBox()
|
257
|
-
})
|
258
|
-
|
259
|
-
enteredNodes.selectAll("rect")
|
260
|
-
.attr("x", (d) => d.bbox.x - attrs.nodeGutter.x)
|
261
|
-
.attr("y", (d) => d.bbox.y - attrs.nodeGutter.y)
|
262
|
-
.attr("width", (d) => d.bbox.width + (2 * attrs.nodeGutter.x))
|
263
|
-
.attr("height", (d) => d.bbox.height + (2 * attrs.nodeGutter.y))
|
264
|
-
|
265
|
-
// append circle & text only when there are children
|
266
|
-
enteredNodes
|
267
|
-
.append("circle")
|
268
|
-
.filter((d) => Boolean(d.children) || Boolean(d._children))
|
269
|
-
.attr("class", "as-circle")
|
270
|
-
.attr("r", attrs.childrenIndicatorRadius)
|
271
|
-
.attr("cx", (d) => d.bbox.x + d.bbox.width + attrs.nodeGutter.x)
|
272
|
-
.attr("cy", (d) => d.bbox.y + d.bbox.height + attrs.nodeGutter.y)
|
273
|
-
|
274
|
-
enteredNodes
|
275
|
-
.append("text")
|
276
|
-
.filter((d) => Boolean(d.children) || Boolean(d._children))
|
277
|
-
.attr("class", "as-text")
|
278
|
-
.attr("dx", (d) => d.bbox.x + d.bbox.width + attrs.nodeGutter.x)
|
279
|
-
.attr("dy", attrs.childrenIndicatorRadius + 3)
|
280
|
-
.text((d) => d3.max([(d.children || {}).length, (d._children || {}).length]))
|
281
|
-
|
282
|
-
// merge node groups and style it
|
283
|
-
nodes = enteredNodes.merge(nodes)
|
284
|
-
|
285
|
-
// force simulation
|
286
|
-
force.simulation.nodes(nodesArr).on("tick", ticked)
|
287
|
-
|
288
|
-
// links simulation
|
289
|
-
force.simulation.force("link").links(links).id((d) => d.id).distance(attrs.distance * 2).strength(2)
|
290
|
-
}
|
291
|
-
|
292
|
-
// ####################################### EVENT HANDLERS ########################
|
293
|
-
|
294
|
-
// zoom handler
|
295
|
-
// function zoomed() {
|
296
|
-
// // get transform event
|
297
|
-
// let transform = d3.event.transform
|
298
|
-
// attrs.lastTransform = transform
|
299
|
-
//
|
300
|
-
// // apply transform event props to the wrapper
|
301
|
-
// chart.attr("transform", transform)
|
302
|
-
//
|
303
|
-
// svg.selectAll(".node").attr("transform", (d) => `translate(${d.x},${d.y}) scale(${1 / (attrs.lastTransform ? attrs.lastTransform.k : 1)})`)
|
304
|
-
// svg.selectAll(".link").attr("stroke-width", attrs.lineStrokeWidth / (attrs.lastTransform ? attrs.lastTransform.k : 1))
|
305
|
-
// }
|
306
|
-
|
307
|
-
// tick handler
|
308
|
-
function ticked() {
|
309
|
-
const fakeBorderWidth = attrs.fakeBorderWidth
|
310
|
-
const maxXValueAvailable = (value) => Math.max(Math.min(calc.chartWidth - fakeBorderWidth, value), fakeBorderWidth)
|
311
|
-
const maxYValueAvailable = (value) => Math.max(Math.min(calc.chartHeight - fakeBorderWidth, value), fakeBorderWidth)
|
312
|
-
// set links position
|
313
|
-
links
|
314
|
-
.attr("x1", (d) => maxXValueAvailable(d.source.x))
|
315
|
-
.attr("y1", (d) => maxYValueAvailable(d.source.y))
|
316
|
-
.attr("x2", (d) => maxXValueAvailable(d.target.x))
|
317
|
-
.attr("y2", (d) => maxYValueAvailable(d.target.y))
|
318
|
-
|
319
|
-
// set nodes position
|
320
|
-
svg.selectAll(".node")
|
321
|
-
.attr("transform", (d) => `translate(${maxXValueAvailable(d.x)},${maxYValueAvailable(d.y)})`)
|
322
|
-
}
|
323
|
-
|
324
|
-
// handler drag start event
|
325
|
-
function dragstarted() {
|
326
|
-
// disable node fixing
|
327
|
-
nodes.each((d) => {
|
328
|
-
d.fx = null
|
329
|
-
d.fy = null
|
330
|
-
})
|
331
|
-
}
|
332
|
-
|
333
|
-
// handle dragging event
|
334
|
-
function dragged(d) {
|
335
|
-
// make dragged node fixed
|
336
|
-
d.fx = d3.event.x
|
337
|
-
d.fy = d3.event.y
|
338
|
-
}
|
339
|
-
|
340
|
-
// -------------------- handle drag end event ---------------
|
341
|
-
function dragended() {
|
342
|
-
// we are doing nothing, here , aren't we?
|
343
|
-
}
|
344
|
-
|
345
|
-
// -------------------------- node mouse hover handler ---------------
|
346
|
-
function nodeMouseEnter(d) {
|
347
|
-
// get links
|
348
|
-
let _links = hierarchy.root.links()
|
349
|
-
|
350
|
-
// get hovered node connected links
|
351
|
-
let connectedLinks = _links.filter((l) => l.source.id === d.id || l.target.id === d.id)
|
352
|
-
|
353
|
-
// get hovered node linked nodes
|
354
|
-
let linkedNodes = connectedLinks.map((s) => s.source.id).concat(connectedLinks.map((c) => c.target.id))
|
355
|
-
|
356
|
-
// reduce all other nodes opacity
|
357
|
-
nodesWrapper.selectAll(".node")
|
358
|
-
.filter((n) => linkedNodes.indexOf(n.id) === -1)
|
359
|
-
.attr("opacity", attrs.hoverOpacity)
|
360
|
-
|
361
|
-
// reduce all other links opacity
|
362
|
-
linksWrapper.selectAll(".link")
|
363
|
-
.attr("opacity", attrs.hoverOpacity)
|
364
|
-
|
365
|
-
// highlight hovered nodes connections
|
366
|
-
linksWrapper.selectAll(".link")
|
367
|
-
.filter((l) => l.source.id === d.id || l.target.id === d.id)
|
368
|
-
.attr("opacity", 1)
|
369
|
-
}
|
370
|
-
|
371
|
-
// --------------- handle mouseleave event ---------------
|
372
|
-
function nodeMouseLeave() {
|
373
|
-
// return things back to normal
|
374
|
-
nodesWrapper.selectAll(".node")
|
375
|
-
.attr("opacity", 1)
|
376
|
-
linksWrapper.selectAll(".link")
|
377
|
-
.attr("opacity", 1)
|
378
|
-
}
|
379
|
-
|
380
|
-
// --------------- handle node click event ---------------
|
381
|
-
function nodeClick(d) {
|
382
|
-
// free fixed nodes
|
383
|
-
nodes.each((di) => {
|
384
|
-
di.fx = null
|
385
|
-
di.fy = null
|
386
|
-
})
|
387
|
-
|
388
|
-
// collapse or expand node
|
389
|
-
if (d.children) {
|
390
|
-
collapse(d)
|
391
|
-
} else if (d._children) {
|
392
|
-
expand(d)
|
393
|
-
} else {
|
394
|
-
// nothing is to collapse or expand
|
395
|
-
}
|
396
|
-
|
397
|
-
freeNodes()
|
398
|
-
}
|
399
|
-
|
400
|
-
// ######################################### UTIL FUNCS ##################################
|
401
|
-
updateData = function () {
|
402
|
-
main.run()
|
403
|
-
}
|
404
|
-
|
405
|
-
collapse = function (d, deep = false) {
|
406
|
-
if (d.children) {
|
407
|
-
if (deep) {
|
408
|
-
d.children.forEach((e) => collapse(e, true))
|
409
|
-
}
|
410
|
-
|
411
|
-
d._children = d.children
|
412
|
-
d.children = null
|
413
|
-
}
|
414
|
-
|
415
|
-
update(d)
|
416
|
-
force.simulation.restart()
|
417
|
-
force.simulation.alphaTarget(0.15)
|
418
|
-
}
|
419
|
-
|
420
|
-
expand = function (d, deep = false) {
|
421
|
-
if (d._children) {
|
422
|
-
if (deep) {
|
423
|
-
d._children.forEach((e) => expand(e, true))
|
424
|
-
}
|
425
|
-
|
426
|
-
d.children = d._children
|
427
|
-
d._children = null
|
428
|
-
}
|
429
|
-
|
430
|
-
update(d)
|
431
|
-
force.simulation.restart()
|
432
|
-
force.simulation.alphaTarget(0.15)
|
433
|
-
}
|
434
|
-
|
435
|
-
// function slowDownNodes() {
|
436
|
-
// force.simulation.alphaTarget(0.05)
|
437
|
-
// }
|
438
|
-
|
439
|
-
// function speedUpNodes() {
|
440
|
-
// force.simulation.alphaTarget(0.45)
|
441
|
-
// }
|
442
|
-
|
443
|
-
function freeNodes() {
|
444
|
-
d3.selectAll(".node").each((n) => {
|
445
|
-
n.fx = null
|
446
|
-
n.fy = null
|
447
|
-
})
|
448
|
-
}
|
449
|
-
|
450
|
-
function projectCircle(value, radius) {
|
451
|
-
let r = radius || 0
|
452
|
-
let corner = value * 2 * Math.PI
|
453
|
-
return [Math.sin(corner) * r, -Math.cos(corner) * r]
|
454
|
-
}
|
455
|
-
|
456
|
-
// recursively loop on children and extract nodes as an array
|
457
|
-
function flatten(root, clustered) {
|
458
|
-
let nodesArray = []
|
459
|
-
let i = 0
|
460
|
-
function recurse(node, depth) {
|
461
|
-
if (node.children) {
|
462
|
-
node.children.forEach(function (child) {
|
463
|
-
recurse(child, depth + 1)
|
464
|
-
})
|
465
|
-
}
|
466
|
-
|
467
|
-
if (!node.id) {
|
468
|
-
node.id = ++i
|
469
|
-
} else {
|
470
|
-
++i
|
471
|
-
}
|
472
|
-
|
473
|
-
node.depth = depth
|
474
|
-
if (clustered) {
|
475
|
-
if (!node.cluster) {
|
476
|
-
// if cluster coordinates are not set, set it
|
477
|
-
node.cluster = { x: node.x, y: node.y }
|
478
|
-
}
|
479
|
-
}
|
480
|
-
nodesArray.push(node)
|
481
|
-
}
|
482
|
-
recurse(root, 1)
|
483
|
-
return nodesArray
|
484
|
-
}
|
485
|
-
|
486
|
-
function debug() {
|
487
|
-
if (attrs.isDebug) {
|
488
|
-
// stringify func
|
489
|
-
let stringified = String(scope)
|
490
|
-
|
491
|
-
// parse variable names
|
492
|
-
let groupVariables = stringified
|
493
|
-
// match var x-xx= {}
|
494
|
-
.match(/var\s+([\w])+\s*=\s*{\s*}/gi)
|
495
|
-
// match xxx
|
496
|
-
.map((d) => d.match(/\s+\w*/gi).filter((s) => s.trim()))
|
497
|
-
// get xxx
|
498
|
-
.map((v) => v[0].trim())
|
499
|
-
|
500
|
-
// assign local variables to the scope
|
501
|
-
groupVariables.forEach((v) => {
|
502
|
-
main[`P_${v}`] = eval(v)
|
503
|
-
})
|
504
|
-
}
|
505
|
-
}
|
506
|
-
|
507
|
-
debug()
|
508
|
-
|
509
|
-
})
|
510
|
-
}
|
511
|
-
|
512
|
-
// ----------- PROTOTYEPE FUNCTIONS ----------------------
|
513
|
-
d3.selection.prototype.patternify = function (_params) {
|
514
|
-
let selector = _params.selector
|
515
|
-
let elementTag = _params.tag
|
516
|
-
let _data = _params.data || [selector]
|
517
|
-
|
518
|
-
// pattern in action
|
519
|
-
let selection = this.selectAll(`.${selector}`).data(_data)
|
520
|
-
selection.exit().remove()
|
521
|
-
selection = selection.enter().append(elementTag).merge(selection)
|
522
|
-
selection.attr("class", selector)
|
523
|
-
|
524
|
-
return selection
|
525
|
-
}
|
526
|
-
|
527
|
-
// custom radial layout
|
528
|
-
d3.radial = function () {
|
529
|
-
return function (root) {
|
530
|
-
|
531
|
-
recurse(root, 0, 1)
|
532
|
-
|
533
|
-
function recurse(node, min, max) {
|
534
|
-
node.proportion = (max + min) / 2
|
535
|
-
if (!node.x) {
|
536
|
-
|
537
|
-
// if node has parent, match entered node positions to it's parent
|
538
|
-
if (node.parent) {
|
539
|
-
node.x = node.parent.x
|
540
|
-
} else {
|
541
|
-
node.x = 0
|
542
|
-
}
|
543
|
-
}
|
544
|
-
|
545
|
-
// if node had parent, match entered node positions to it's parent
|
546
|
-
if (!node.y) {
|
547
|
-
if (node.parent) {
|
548
|
-
node.y = node.parent.y
|
549
|
-
} else {
|
550
|
-
node.y = 0
|
551
|
-
}
|
552
|
-
}
|
553
|
-
|
554
|
-
// recursively do the same for children
|
555
|
-
if (node.children) {
|
556
|
-
let offset = (max - min) / node.children.length
|
557
|
-
node.children.forEach(function (child, i) {
|
558
|
-
let newMin = min + (offset * i)
|
559
|
-
let newMax = newMin + offset
|
560
|
-
|
561
|
-
recurse(child, newMin, newMax)
|
562
|
-
})
|
563
|
-
}
|
564
|
-
}
|
565
|
-
}
|
566
|
-
}
|
567
|
-
|
568
|
-
// https://github.com/bumbeishvili/d3js-boilerplates#orderby
|
569
|
-
Array.prototype.orderBy = function (func) {
|
570
|
-
this.sort((_a, _b) => {
|
571
|
-
let a = func(_a)
|
572
|
-
let b = func(_b)
|
573
|
-
if (typeof a === "string" || a instanceof String) {
|
574
|
-
return a.localeCompare(b)
|
575
|
-
}
|
576
|
-
return a - b
|
577
|
-
})
|
578
|
-
|
579
|
-
return this
|
580
|
-
}
|
581
|
-
|
582
|
-
// ########################## BOILEPLATE STUFF ################
|
583
|
-
|
584
|
-
// dinamic keys functions
|
585
|
-
Object.keys(attrs).forEach((key) => {
|
586
|
-
// Attach variables to main function
|
587
|
-
return main[key] = function (_) {
|
588
|
-
let string = `attrs['${key}'] = _`
|
589
|
-
|
590
|
-
if (!arguments.length) {
|
591
|
-
return eval(` attrs['${key}'];`)
|
592
|
-
}
|
593
|
-
|
594
|
-
eval(string)
|
595
|
-
|
596
|
-
return main
|
597
|
-
}
|
598
|
-
})
|
599
|
-
|
600
|
-
// set attrs as property
|
601
|
-
main.attrs = attrs
|
602
|
-
|
603
|
-
// debugging visuals
|
604
|
-
main.debug = function (isDebug) {
|
605
|
-
attrs.isDebug = isDebug
|
606
|
-
if (isDebug) {
|
607
|
-
if (!window.charts) {
|
608
|
-
window.charts = []
|
609
|
-
}
|
610
|
-
window.charts.push(main)
|
611
|
-
}
|
612
|
-
return main
|
613
|
-
}
|
614
|
-
|
615
|
-
// exposed update functions
|
616
|
-
main.data = function (value) {
|
617
|
-
if (!arguments.length) {
|
618
|
-
return attrs.data
|
619
|
-
}
|
620
|
-
|
621
|
-
attrs.data = value
|
622
|
-
if (typeof updateData === "function") {
|
623
|
-
updateData()
|
624
|
-
}
|
625
|
-
return main
|
626
|
-
}
|
627
|
-
|
628
|
-
// run visual
|
629
|
-
main.run = function () {
|
630
|
-
d3.selectAll(attrs.container)
|
631
|
-
.call(main)
|
632
|
-
return main
|
633
|
-
}
|
634
|
-
|
635
|
-
main.filter = function (filterParams) {
|
636
|
-
if (!arguments.length) {
|
637
|
-
return attrs.filterParams
|
638
|
-
}
|
639
|
-
|
640
|
-
attrs.filterParams = filterParams
|
641
|
-
if (typeof filter === "function") {
|
642
|
-
filter()
|
643
|
-
}
|
644
|
-
return main
|
645
|
-
}
|
646
|
-
|
647
|
-
main.reset = function () {
|
648
|
-
|
649
|
-
hierarchy.root.children.forEach((e) => collapse(e, true))
|
650
|
-
main.run()
|
651
|
-
|
652
|
-
return main
|
653
|
-
}
|
654
|
-
|
655
|
-
return main
|
656
|
-
}
|
657
|
-
|
658
|
-
// initialization
|
659
|
-
$orgChartContainer.each((i, container) => {
|
660
|
-
|
661
|
-
let $container = $(container)
|
662
|
-
let width = $container.width()
|
663
|
-
let height = width / (16 / 9)
|
664
|
-
|
665
|
-
d3.json($container.data("url")).then((data) => {
|
666
|
-
// Make a fake previous node if the data entry is not hierarchical
|
667
|
-
if (data instanceof Array) {
|
668
|
-
fake = true
|
669
|
-
dataDepicted = {
|
670
|
-
name: null,
|
671
|
-
children: data
|
672
|
-
}
|
673
|
-
} else {
|
674
|
-
dataDepicted = data
|
675
|
-
}
|
676
|
-
|
677
|
-
orgchart = renderChartCollapsibleNetwork()
|
678
|
-
.svgHeight(height)
|
679
|
-
.svgWidth(width)
|
680
|
-
.fakeRoot(fake)
|
681
|
-
.container(`#${container.id}`)
|
682
|
-
.data({
|
683
|
-
root: dataDepicted
|
684
|
-
})
|
685
|
-
.debug(true)
|
686
|
-
.run()
|
687
|
-
})
|
688
|
-
})
|
689
|
-
|
690
|
-
// reset
|
691
|
-
$btnReset.click(function() {
|
692
|
-
orgchart.reset()
|
693
|
-
})
|
694
|
-
}
|
695
|
-
|
696
|
-
$(() => {
|
697
|
-
render(renderOrgCharts);
|
698
|
-
})
|
699
|
-
})(window);
|