Skip to content

Commit 1b938f6

Browse files
committedSep 8, 2024·
add share_token to consultations, fix tests
1 parent 2464aaa commit 1b938f6

File tree

10 files changed

+73
-9
lines changed

10 files changed

+73
-9
lines changed
 

‎.github/workflows/ci_core_tasks.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
env:
1919
CI: "true"
20-
RUBY_VERSION: 3.0.2
20+
RUBY_VERSION: 3.0.6
2121
NODE_VERSION: 16.9.1
2222
DECIDIM_MODULE: decidim-core
2323
CODECOV_TOKEN: bc15b944-6b42-420a-b3f9-a5a8fb214326

‎.github/workflows/ci_core_tasks_webpacker.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717

1818
env:
1919
CI: "true"
20-
RUBY_VERSION: 3.0.2
20+
RUBY_VERSION: 3.0.6
2121
NODE_VERSION: 16.9.1
2222
DECIDIM_MODULE: decidim-core
2323
CODECOV_TOKEN: bc15b944-6b42-420a-b3f9-a5a8fb214326

‎decidim-consultations/app/controllers/concerns/decidim/consultations/needs_consultation.rb

+11-2
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,22 @@ def current_consultation
3232
@current_consultation ||= detect_consultation
3333
end
3434

35+
def current_component
36+
@current_component ||= Decidim::Component.find_by(id: params[:component_id])
37+
end
38+
39+
def current_question
40+
@current_question ||= Decidim::Consultations::Question.find_by(slug: params[:question_slug])
41+
end
42+
3543
alias current_participatory_space current_consultation
3644

3745
private
3846

3947
def detect_consultation
40-
request.env["current_consultation"] ||
41-
organization_consultations.find_by!(slug: params[:consultation_slug] || params[:slug])
48+
current_question&.consultation ||
49+
request.env["current_consultation"] ||
50+
organization_consultations.find_by(slug: params[:consultation_slug] || params[:slug])
4251
end
4352

4453
def organization_consultations
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# frozen_string_literal: true
2+
3+
module Decidim
4+
module Consultations
5+
module Admin
6+
class ComponentShareTokensController < Decidim::Admin::ShareTokensController
7+
include ConsultationAdmin
8+
9+
helper_method :current_participatory_space
10+
11+
def resource
12+
@resource ||= current_question.components.find(params[:component_id])
13+
end
14+
end
15+
end
16+
end
17+
end
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# frozen_string_literal: true
2+
3+
module Decidim
4+
module Consultations
5+
module Admin
6+
class ConsultationShareTokensController < Decidim::Admin::ShareTokensController
7+
include ConsultationAdmin
8+
9+
helper_method :current_participatory_space
10+
11+
def resource
12+
current_consultation
13+
end
14+
end
15+
end
16+
end
17+
end

‎decidim-consultations/app/models/decidim/consultation.rb

+5
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class Consultation < ApplicationRecord
1515
include Decidim::HasUploadValidations
1616
include Decidim::TranslatableResource
1717
include Decidim::FilterableResource
18+
include Decidim::ShareableWithToken
1819

1920
translatable_fields :title, :subtitle, :description
2021

@@ -116,5 +117,9 @@ def closed?
116117
def self.ransackable_scopes(_auth_object = nil)
117118
[:with_any_date]
118119
end
120+
121+
def shareable_url(share_token)
122+
EngineRouter.main_proxy(self).consultation_url(self, share_token: share_token.token)
123+
end
119124
end
120125
end

‎decidim-consultations/app/permissions/decidim/consultations/admin/permissions.rb

+7
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def permissions
2828
allowed_question_action?
2929
allowed_response_action?
3030
allowed_response_group_action?
31+
share_tokens_action?
3132

3233
permission_action
3334
end
@@ -106,6 +107,12 @@ def allowed_response_group_action?
106107
end
107108
end
108109

110+
def share_tokens_action?
111+
return unless permission_action.subject == :share_tokens
112+
113+
allow!
114+
end
115+
109116
# Only admin users can enter the consultations area.
110117
def user_can_enter_space_area?
111118
return unless permission_action.action == :enter &&

‎decidim-consultations/lib/decidim/consultations/admin_engine.rb

+8
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ class AdminEngine < ::Rails::Engine
1818
get :results, on: :member
1919
resource :publish, controller: "consultation_publications", only: [:create, :destroy]
2020
resource :publish_results, controller: "consultation_results_publications", only: [:create, :destroy]
21+
resources :consultation_share_tokens, except: [:show], path: "share_tokens", as: "share_tokens"
2122
resources :questions, param: :slug, except: :show, shallow: true do
2223
resource :publish, controller: "question_publications", only: [:create, :destroy]
2324
resource :permissions, controller: "question_permissions"
@@ -35,6 +36,7 @@ class AdminEngine < ::Rails::Engine
3536
get :share
3637
end
3738
resources :exports, only: :create
39+
resources :component_share_tokens, except: [:show], path: "share_tokens", as: "share_tokens"
3840
end
3941

4042
resources :question_attachments
@@ -73,6 +75,12 @@ class AdminEngine < ::Rails::Engine
7375
position: 1.0,
7476
active: is_active_link?(decidim_admin_consultations.results_consultation_path(current_consultation)),
7577
if: allowed_to?(:read, :question)
78+
menu.add_item :consultation_share_tokens,
79+
I18n.t("menu.share_tokens", scope: "decidim.admin"),
80+
decidim_admin_consultations.consultation_share_tokens_path(current_consultation),
81+
position: 1.2,
82+
active: is_active_link?(decidim_admin_consultations.consultation_share_tokens_path(current_consultation)),
83+
if: allowed_to?(:read, :share_tokens, consultation: current_consultation)
7684
end
7785
end
7886
initializer "decidim_consultations.admin_menu" do

‎decidim-initiatives/spec/system/filter_initiatives_spec.rb

+4-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@
8080

8181
within ".order-by__dropdown" do
8282
expect(page).to have_selector("ul[data-dropdown-menu$=dropdown-menu]", text: "Random")
83-
page.find("a", text: "Random", visible: true).click
83+
page.find("a", text: "Random").click
84+
expect(page).to have_link("Most commented")
8485
click_link "Most commented"
8586
end
8687

@@ -200,7 +201,7 @@
200201
end
201202

202203
it "doesn't display TYPE filter" do
203-
expect(page).not_to have_content(/Type/i)
204+
expect(page).not_to have_css("legend", text: /Type/i)
204205
expect(page).not_to have_css(".filters__section.with_any_type_check_boxes_tree_filter")
205206
end
206207

@@ -220,7 +221,7 @@
220221

221222
it "can be filtered by type" do
222223
within "form.new_filter" do
223-
expect(page).to have_content(/Type/i)
224+
expect(page).to have_css("legend", text: /Type/i)
224225
end
225226
end
226227

‎decidim-participatory_processes/spec/system/admin/invite_process_admin_spec.rb

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
end
4343

4444
within ".secondary-nav" do
45-
expect(page.text).to eq "View public page\nInfo\nPhases\nComponents\nCategories\nAttachments\nFolders\nFiles\nProcess admins\nPrivate participants\nModerations"
45+
expect(page.text).to eq "View public page\nInfo\nPhases\nComponents\nCategories\nAttachments\nFolders\nFiles\nProcess admins\nPrivate participants\nModerations\nShare tokens"
4646
end
4747
end
4848
end
@@ -72,7 +72,7 @@
7272
end
7373

7474
within ".secondary-nav" do
75-
expect(page.text).to eq "View public page\nInfo\nPhases\nComponents\nCategories\nAttachments\nFolders\nFiles\nProcess admins\nPrivate participants\nModerations"
75+
expect(page.text).to eq "View public page\nInfo\nPhases\nComponents\nCategories\nAttachments\nFolders\nFiles\nProcess admins\nPrivate participants\nModerations\nShare tokens"
7676
end
7777
end
7878
end

0 commit comments

Comments
 (0)
Please sign in to comment.