From 0d22f26cead71ed8ade154d6ccf683688014c0a4 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Mon, 11 Dec 2023 00:42:26 +0100 Subject: [PATCH 1/2] Add note to question modal if current user has no followers --- app/views/modal/_ask.html.haml | 2 ++ config/locales/views.en.yml | 3 +++ 2 files changed, 5 insertions(+) diff --git a/app/views/modal/_ask.html.haml b/app/views/modal/_ask.html.haml index 647b52c5..f95582ad 100644 --- a/app/views/modal/_ask.html.haml +++ b/app/views/modal/_ask.html.haml @@ -8,6 +8,8 @@ .modal-body - if @user .alert.alert-info.d-sm-none= t(".user_note_html", user: @user.profile.safe_name) + - if current_user.followers.count.zero? + .alert.alert-warning= t(".follower_note_html") .form-group.has-feedback %textarea.form-control{ name: "qb-all-question", placeholder: t(".placeholder"), data: { "character-count-warning-target": "input" } } .alert.alert-warning.mt-3.d-none{ data: { "character-count-warning-target": "warning" } }= t('.long_question_warning') diff --git a/config/locales/views.en.yml b/config/locales/views.en.yml index d7961168..78c24665 100644 --- a/config/locales/views.en.yml +++ b/config/locales/views.en.yml @@ -267,6 +267,9 @@ en: This dialog asks a question to all your followers. Click here to ask them a question directly! + follower_note_html: | + You don't have any followers! + Questions asked through this dialog now will not be answered by anyone. title: "Ask your followers" placeholder: "Type your question here…" action: "Ask" From 2a0b163bf1f7d5adb1e5eb3f31a1537c36a81c46 Mon Sep 17 00:00:00 2001 From: Andreas Nedbal Date: Mon, 11 Dec 2023 20:05:53 +0100 Subject: [PATCH 2/2] Apply review suggestion from @raccube Co-authored-by: Karina J. Kwiatek <6197148+raccube@users.noreply.github.com> --- config/locales/views.en.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/locales/views.en.yml b/config/locales/views.en.yml index 78c24665..74e5a2f9 100644 --- a/config/locales/views.en.yml +++ b/config/locales/views.en.yml @@ -269,7 +269,7 @@ en: to ask them a question directly! follower_note_html: | You don't have any followers! - Questions asked through this dialog now will not be answered by anyone. + Questions asked through this dialog will not arrive in anyone's inbox. title: "Ask your followers" placeholder: "Type your question here…" action: "Ask"