mirror of
https://github.com/mastodon/mastodon.git
synced 2024-08-20 21:08:15 -07:00
Compare commits
4 commits
0231e1953d
...
98a3be7d8e
Author | SHA1 | Date | |
---|---|---|---|
|
98a3be7d8e | ||
|
a50c8e951f | ||
|
2c1e75727d | ||
|
5d385b7c8e |
10 changed files with 31 additions and 53 deletions
|
@ -60,7 +60,7 @@ export interface BaseNotificationGroupJSON {
|
||||||
|
|
||||||
interface NotificationGroupWithStatusJSON extends BaseNotificationGroupJSON {
|
interface NotificationGroupWithStatusJSON extends BaseNotificationGroupJSON {
|
||||||
type: NotificationWithStatusType;
|
type: NotificationWithStatusType;
|
||||||
status: ApiStatusJSON;
|
status_id: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
interface NotificationWithStatusJSON extends BaseNotificationJSON {
|
interface NotificationWithStatusJSON extends BaseNotificationJSON {
|
||||||
|
|
|
@ -49,21 +49,14 @@ export const FilteredNotificationsBanner: React.FC = () => {
|
||||||
<span>
|
<span>
|
||||||
<FormattedMessage
|
<FormattedMessage
|
||||||
id='filtered_notifications_banner.pending_requests'
|
id='filtered_notifications_banner.pending_requests'
|
||||||
defaultMessage='Notifications from {count, plural, =0 {no one} one {one person} other {# people}} you may know'
|
defaultMessage='From {count, plural, =0 {no one} one {one person} other {# people}} you may know'
|
||||||
values={{ count: policy.summary.pending_requests_count }}
|
values={{ count: policy.summary.pending_requests_count }}
|
||||||
/>
|
/>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className='filtered-notifications-banner__badge'>
|
<div className='filtered-notifications-banner__badge'>
|
||||||
<div className='filtered-notifications-banner__badge__badge'>
|
{toCappedNumber(policy.summary.pending_notifications_count)}
|
||||||
{toCappedNumber(policy.summary.pending_notifications_count)}
|
|
||||||
</div>
|
|
||||||
<FormattedMessage
|
|
||||||
id='filtered_notifications_banner.mentions'
|
|
||||||
defaultMessage='{count, plural, one {mention} other {mentions}}'
|
|
||||||
values={{ count: policy.summary.pending_notifications_count }}
|
|
||||||
/>
|
|
||||||
</div>
|
</div>
|
||||||
</Link>
|
</Link>
|
||||||
);
|
);
|
||||||
|
|
|
@ -300,8 +300,7 @@
|
||||||
"filter_modal.select_filter.subtitle": "Use an existing category or create a new one",
|
"filter_modal.select_filter.subtitle": "Use an existing category or create a new one",
|
||||||
"filter_modal.select_filter.title": "Filter this post",
|
"filter_modal.select_filter.title": "Filter this post",
|
||||||
"filter_modal.title.status": "Filter a post",
|
"filter_modal.title.status": "Filter a post",
|
||||||
"filtered_notifications_banner.mentions": "{count, plural, one {mention} other {mentions}}",
|
"filtered_notifications_banner.pending_requests": "From {count, plural, =0 {no one} one {one person} other {# people}} you may know",
|
||||||
"filtered_notifications_banner.pending_requests": "Notifications from {count, plural, =0 {no one} one {one person} other {# people}} you may know",
|
|
||||||
"filtered_notifications_banner.title": "Filtered notifications",
|
"filtered_notifications_banner.title": "Filtered notifications",
|
||||||
"firehose.all": "All",
|
"firehose.all": "All",
|
||||||
"firehose.local": "This server",
|
"firehose.local": "This server",
|
||||||
|
|
|
@ -124,9 +124,9 @@ export function createNotificationGroupFromJSON(
|
||||||
case 'mention':
|
case 'mention':
|
||||||
case 'poll':
|
case 'poll':
|
||||||
case 'update': {
|
case 'update': {
|
||||||
const { status, ...groupWithoutStatus } = group;
|
const { status_id: statusId, ...groupWithoutStatus } = group;
|
||||||
return {
|
return {
|
||||||
statusId: status.id,
|
statusId,
|
||||||
sampleAccountIds,
|
sampleAccountIds,
|
||||||
...groupWithoutStatus,
|
...groupWithoutStatus,
|
||||||
};
|
};
|
||||||
|
|
|
@ -10171,25 +10171,10 @@ noscript {
|
||||||
}
|
}
|
||||||
|
|
||||||
&__badge {
|
&__badge {
|
||||||
display: flex;
|
background: $ui-button-background-color;
|
||||||
align-items: center;
|
color: $white;
|
||||||
border-radius: 999px;
|
border-radius: 100px;
|
||||||
background: var(--background-border-color);
|
padding: 2px 8px;
|
||||||
color: $darker-text-color;
|
|
||||||
padding: 4px;
|
|
||||||
padding-inline-end: 8px;
|
|
||||||
gap: 6px;
|
|
||||||
font-weight: 500;
|
|
||||||
font-size: 11px;
|
|
||||||
line-height: 16px;
|
|
||||||
word-break: keep-all;
|
|
||||||
|
|
||||||
&__badge {
|
|
||||||
background: $ui-button-background-color;
|
|
||||||
color: $white;
|
|
||||||
border-radius: 100px;
|
|
||||||
padding: 2px 8px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -116,7 +116,7 @@ class Admin::SystemCheck::ElasticsearchCheck < Admin::SystemCheck::BaseCheck
|
||||||
end
|
end
|
||||||
|
|
||||||
def es_preset
|
def es_preset
|
||||||
ENV.fetch('ES_PRESET', 'single_node_cluster')
|
Rails.configuration.x.search.preset
|
||||||
end
|
end
|
||||||
|
|
||||||
def preset_matches?
|
def preset_matches?
|
||||||
|
|
|
@ -112,6 +112,8 @@ module Mastodon
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
config.x.search = config_for(:search)
|
||||||
|
|
||||||
config.to_prepare do
|
config.to_prepare do
|
||||||
Doorkeeper::AuthorizationsController.layout 'modal'
|
Doorkeeper::AuthorizationsController.layout 'modal'
|
||||||
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
|
Doorkeeper::AuthorizedApplicationsController.layout 'admin'
|
||||||
|
|
|
@ -1,27 +1,18 @@
|
||||||
# frozen_string_literal: true
|
# frozen_string_literal: true
|
||||||
|
|
||||||
enabled = ENV['ES_ENABLED'] == 'true'
|
search_config = Rails.configuration.x.search
|
||||||
host = ENV.fetch('ES_HOST') { 'localhost' }
|
|
||||||
port = ENV.fetch('ES_PORT') { 9200 }
|
|
||||||
user = ENV.fetch('ES_USER', nil).presence
|
|
||||||
password = ENV.fetch('ES_PASS', nil).presence
|
|
||||||
fallback_prefix = ENV.fetch('REDIS_NAMESPACE', nil).presence
|
|
||||||
prefix = ENV.fetch('ES_PREFIX') { fallback_prefix }
|
|
||||||
ca_file = ENV.fetch('ES_CA_FILE', nil).presence
|
|
||||||
|
|
||||||
transport_options = { ssl: { ca_file: ca_file } } if ca_file.present?
|
|
||||||
|
|
||||||
Chewy.settings = {
|
Chewy.settings = {
|
||||||
host: "#{host}:#{port}",
|
host: search_config.host,
|
||||||
prefix: prefix,
|
prefix: search_config.prefix,
|
||||||
enabled: enabled,
|
enabled: search_config.enabled,
|
||||||
journal: false,
|
journal: false,
|
||||||
user: user,
|
user: search_config.user,
|
||||||
password: password,
|
password: search_config.password,
|
||||||
index: {
|
index: {
|
||||||
number_of_replicas: ['single_node_cluster', nil].include?(ENV['ES_PRESET'].presence) ? 0 : 1,
|
number_of_replicas: search_config.preset == 'single_node_cluster' ? 0 : 1,
|
||||||
},
|
},
|
||||||
transport_options: transport_options,
|
transport_options: search_config.ca_file.present? ? { ssl: { ca_file: search_config.ca_file } } : nil,
|
||||||
}
|
}
|
||||||
|
|
||||||
# We use our own async strategy even outside the request-response
|
# We use our own async strategy even outside the request-response
|
||||||
|
|
8
config/search.yml
Normal file
8
config/search.yml
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
shared:
|
||||||
|
ca_file: <%= ENV.fetch('ES_CA_FILE', nil).presence %>
|
||||||
|
enabled: <%= ENV.fetch('ES_ENABLED', 'false') %>
|
||||||
|
host: <%= ENV.fetch('ES_HOST', 'localhost') %>:<%= ENV.fetch('ES_PORT', '9200') %>
|
||||||
|
password: <%= ENV.fetch('ES_PASS', nil).presence %>
|
||||||
|
prefix: <%= ENV.fetch('ES_PREFIX') { ENV.fetch('REDIS_NAMESPACE', nil).presence } %>
|
||||||
|
preset: <%= ENV.fetch('ES_PRESET', 'single_node_cluster') %>
|
||||||
|
user: <%= ENV.fetch('ES_USER', nil).presence %>
|
|
@ -3,8 +3,8 @@
|
||||||
module Chewy
|
module Chewy
|
||||||
module IndexExtensions
|
module IndexExtensions
|
||||||
def index_preset(base_options = {})
|
def index_preset(base_options = {})
|
||||||
case ENV['ES_PRESET'].presence
|
case Rails.configuration.x.search.preset
|
||||||
when 'single_node_cluster', nil
|
when 'single_node_cluster'
|
||||||
base_options.merge(number_of_replicas: 0)
|
base_options.merge(number_of_replicas: 0)
|
||||||
when 'small_cluster'
|
when 'small_cluster'
|
||||||
base_options.merge(number_of_replicas: 1)
|
base_options.merge(number_of_replicas: 1)
|
||||||
|
|
Loading…
Reference in a new issue