Add list of lists component to web UI (#5811)

* Add list of lists component to web UI

* Add list adding

* Add list removing

* List editor modal

* Add API account search limited by following=true relation

* Rework list editor modal

* Remove mandatory pagination of GET /api/v1/lists/:id/accounts

* Adjust search input placeholder

* Fix rspec (#5890)

* i18n: (zh-CN) Add missing translations for #5811 (#5891)

* i18n: (zh-CN) yarn manage:translations -- zh-CN

* i18n: (zh-CN) Add missing translations for #5811

* Fix some issues

- Display loading/missing state for list timelines
- Order lists alphabetically in overview
- Fix async list editor reset
- Redirect to /lists after deleting unpinned list
- Redirect to / after pinning a list

* Remove dead list columns when a list is deleted or fetch returns 404
This commit is contained in:
Eugen Rochko
2017-12-05 23:02:27 +01:00
committed by GitHub
parent 12cea76634
commit e20895f251
27 changed files with 1073 additions and 41 deletions

View File

@ -1,12 +1,12 @@
# frozen_string_literal: true
class AccountSearchService < BaseService
attr_reader :query, :limit, :resolve, :account
attr_reader :query, :limit, :options, :account
def call(query, limit, resolve = false, account = nil)
@query = query
@limit = limit
@resolve = resolve
def call(query, limit, account = nil, options = {})
@query = query
@limit = limit
@options = options
@account = account
search_service_results
@ -25,7 +25,7 @@ class AccountSearchService < BaseService
end
def resolving_non_matching_remote_account?
resolve && !exact_match && !domain_is_local?
options[:resolve] && !exact_match && !domain_is_local?
end
def search_results_and_exact_match
@ -79,7 +79,7 @@ class AccountSearchService < BaseService
end
def advanced_search_results
Account.advanced_search_for(terms_for_query, account, limit)
Account.advanced_search_for(terms_for_query, account, limit, options[:following])
end
def simple_search_results