]> cat aescling's git repositories - mastodon.git/commitdiff
Change "Allow trends without prior review" setting to include statuses (#17977)
authorEugen Rochko <eugen@zeonfederated.com>
Sun, 28 Aug 2022 02:00:39 +0000 (04:00 +0200)
committeraescling <aescling+gitlab@cat.family>
Thu, 17 Nov 2022 02:55:27 +0000 (21:55 -0500)
* Change "Allow trends without prior review" setting to include posts

* Fix i18n-tasks

app/javascript/styles/mastodon/accounts.scss
app/javascript/styles/mastodon/forms.scss
app/models/account.rb
app/views/admin/settings/edit.html.haml
config/i18n-tasks.yml
config/initializers/simple_form.rb
config/locales/en.yml
config/locales/simple_form.en.yml

index 54b65bfc8c2b111fc2da8c973639994d0d3bc332..c007eb4b57ee7464fc8c2f6d3c2008fdf590a7f5 100644 (file)
 }
 
 .account-role,
-.simple_form .recommended {
+.simple_form .recommended,
+.simple_form .not_recommended {
   display: inline-block;
   padding: 4px 6px;
   cursor: default;
   }
 }
 
+.simple_form .not_recommended {
+  color: lighten($error-red, 12%);
+  background-color: rgba(lighten($error-red, 12%), 0.1);
+  border-color: rgba(lighten($error-red, 12%), 0.5);
+}
+
 .account__header__fields {
   max-width: 100vw;
   padding: 0;
index 990903859013ac297a93ad3de9d1b3daa274aff7..a6419821f4c94f1672446c037fdfabe128e56d32 100644 (file)
@@ -102,7 +102,8 @@ code {
         }
       }
 
-      .recommended {
+      .recommended,
+      .not_recommended {
         position: absolute;
         margin: 0 4px;
         margin-top: -2px;
index f75750838c93fcd55fb5ae890ced270041481ac4..33870beda48606d8bc83ffbf4c8d67b535c643a5 100644 (file)
@@ -262,6 +262,10 @@ class Account < ApplicationRecord
     update!(memorial: true)
   end
 
+  def trendable
+    boolean_with_default('trendable', Setting.trendable_by_default)
+  end
+
   def sign?
     true
   end
index 98af7e71859c7aaaf2b5ccc184fae8cdd8744fea..a4467015cc0ced377df141f3031a43fe79fc738f 100644 (file)
@@ -81,7 +81,7 @@
       = f.input :trends, as: :boolean, wrapper: :with_label, label: t('admin.settings.trends.title'), hint: t('admin.settings.trends.desc_html')
 
     .fields-group
-      = f.input :trendable_by_default, as: :boolean, wrapper: :with_label, label: t('admin.settings.trendable_by_default.title'), hint: t('admin.settings.trendable_by_default.desc_html')
+      = f.input :trendable_by_default, as: :boolean, wrapper: :with_label, label: t('admin.settings.trendable_by_default.title'), hint: t('admin.settings.trendable_by_default.desc_html'), recommended: :not_recommended
 
     .fields-group
       = f.input :trending_status_cw, as: :boolean, wrapper: :with_label, label: t('admin.settings.trending_status_cw.title'), hint: t('admin.settings.trending_status_cw.desc_html')
index 7139bcea7c6834b4c8f002bd9f063d994a47be6f..cc607f72af9d7cd0ac2e7908df14c748fe36717f 100644 (file)
@@ -51,7 +51,7 @@ ignore_unused:
   - 'activerecord.errors.*'
   - '{devise,pagination,doorkeeper}.*'
   - '{date,datetime,time,number}.*'
-  - 'simple_form.{yes,no,recommended}'
+  - 'simple_form.{yes,no,recommended,not_recommended}'
   - 'simple_form.{placeholders,hints,labels}.*'
   - 'simple_form.{error_notification,required}.:'
   - 'errors.messages.*'
index 3a2097d2fb9dc52f63c0252d247776e55d689f89..92cffc5a2a40f1bd52201d41d740f78f792e85ca 100644 (file)
@@ -11,7 +11,10 @@ end
 module RecommendedComponent
   def recommended(_wrapper_options = nil)
     return unless options[:recommended]
-    options[:label_text] = ->(raw_label_text, _required_label_text, _label_present) { safe_join([raw_label_text, ' ', content_tag(:span, I18n.t('simple_form.recommended'), class: 'recommended')]) }
+
+    key = options[:recommended].is_a?(Symbol) ? options[:recommended] : :recommended
+    options[:label_text] = ->(raw_label_text, _required_label_text, _label_present) { safe_join([raw_label_text, ' ', content_tag(:span, I18n.t(key, scope: 'simple_form'), class: key)]) }
+
     nil
   end
 end
index 0b721c163d188e0cf330fe5c3f0b88eab76fe3e9..9f047f523a22cff0afd21d1535fad1fd83414f13 100644 (file)
@@ -808,8 +808,8 @@ en:
         title: Allow unauthenticated access to public timeline
       title: Site settings
       trendable_by_default:
-        desc_html: Affects hashtags that have not been previously disallowed
-        title: Allow hashtags to trend without prior review
+        desc_html: Specific trending content can still be explicitly disallowed
+        title: Allow trends without prior review
       trends:
         desc_html: Publicly display previously reviewed content that is currently trending
         title: Trends
index 28f78d50003577f0c5833bc2a4a268fce0c469a1..ddc83e8965c10803e40e6b8ddf9de1391ed19ee1 100644 (file)
@@ -253,6 +253,7 @@ en:
         events: Enabled events
         url: Endpoint URL
     'no': 'No'
+    not_recommended: Not recommended
     recommended: Recommended
     required:
       mark: "*"