-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Filters by remote_availibity, location, position_type in query object #39
Filters by remote_availibity, location, position_type in query object #39
Conversation
@davydovanton Еще вопрос про dry-struct - можно ли как-то игнорировать не переданные параметры в конструктор? |
@asusikov не очень понял вопрос про драй структуру. можешь пример кода показать или тыкнуть в ПР-е? |
Я про то чтобы можно было сделать вот так Queries::Vacancy::SearchQuery.new(remote: true) Сейчас получаю ошибку
И приходится делать вот так Queries::Vacancy::SearchQuery.new(remote: true, position_type: nil, location: nil) И если понадобится новый аттрибут, то получится везде надо будет его прокидывать. Вот можно сделать настроить схему так, чтобы он не ругался, что мы не все ключи передали? |
в документации нашел такой пункт Tolerance to missing keysYou can mark certain keys as optional with adding meta omittable: true to theirs types. class User < Dry::Struct
attribute :name, Types::Strict::String
attribute :age, Types::Strict::Integer.meta(omittable: true)
end
user = User.new(name: 'Jane')
# => #<User name="Jane" age=nil>
user.age
# => nil In the example above nil violates the type constraint so be careful with :omittable. Вот ссылка на саму документацию: Думаю |
Да, я это и пробовал - не работало. Но кажется разобрался в чем дело - у нас |
@davydovanton Замечания поправил - посмотри еще раз, пожалуйста. |
@davydovanton Что с этим PR? Есть какие-то еще замечания? |
@asusikov я заметил что мердж поверх #38 делать нельзя т.к.
|
@@ -9,7 +9,8 @@ class Index | |||
|
|||
include Import[ | |||
'libs.search_query_parser', | |||
operation: 'vacancies.operations.list' | |||
operation: 'vacancies.operations.list', | |||
search_options_mapper: 'vacancies.mappers.search_options', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
не принципиально, но тут лишняя запятая
@JuPlutonic Спасибо за замечания!
|
привет, я сейчас все посмотрю и рассужу. спасибо всем за помощь |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
в целом все выглядит разумно. я бы сначал замержил этот ПР потом второй. Жду мелких правок
@@ -35,7 +36,9 @@ def call(params) | |||
private | |||
|
|||
def search_query | |||
params[:query] ? search_query_parser.call(params[:query]) : EMPTY_SEARCH_QUERY | |||
query_attributes = params[:query] ? search_query_parser.call(params[:query]) : EMPTY_SEARCH_QUERY | |||
initial_attributes = { remote: nil, position_type: nil, location: nil } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
я бы в константу это вынес
@@ -35,7 +36,9 @@ def call(params) | |||
private | |||
|
|||
def search_query | |||
params[:query] ? search_query_parser.call(params[:query]) : EMPTY_SEARCH_QUERY | |||
query_attributes = params[:query] ? search_query_parser.call(params[:query]) : EMPTY_SEARCH_QUERY |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
а еще лучше, я бы сделал так, что квери парсер возвращал бы сразу что надо, вне зависимости от того, что туда передать, что-то в таком духе:
query_attributes = search_query_parser.call(params[:query])
query_attributes # => attributes or initial_attributes
def all_with_contact_relation(limit:, page:, search_query:) | ||
query = repo.aggregate(:contact) | ||
.where(published: true, archived: false, deleted_at: nil) | ||
search_query.to_h.each do |key, value| |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
реально оптимизировать этот кусок? что бы при nil
код не выполнялся?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Не совсем понял вопрос
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
может быть:
if search_query
...
end
search_query.to_h.each do |key, value|
и можешь ребейз сразу сделать от мастера? |
Да, конечно. Думаю в ближайшее смогу все сделать |
Привет, прости, что задержал ПР. я решил его замержить и уже самостоятельно доделать. Спасибо большое, если что - я могу прислать сюда ссылку на коммит с изменениями |
What this PR do?
Related to #33 and #38