Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-22 17:30:29 +01:00
fixed code formatting for realtime_validation class
Dieser Commit ist enthalten in:
Ursprung
aeadef9aa5
Commit
20c8d8493e
1 geänderte Dateien mit 33 neuen und 31 gelöschten Zeilen
|
@ -1,35 +1,37 @@
|
||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
class CustomWizard::RealtimeValidation
|
class CustomWizard::RealtimeValidation
|
||||||
cattr_accessor :types
|
cattr_accessor :types
|
||||||
@@types ||= {
|
@@types ||= {
|
||||||
similar_topics: { types: [:text], component: "similar-topics-validator", backend: true, required_params: [] }
|
similar_topics: { types: [:text], component: "similar-topics-validator", backend: true, required_params: [] }
|
||||||
}
|
}
|
||||||
|
|
||||||
class SimilarTopic
|
class SimilarTopic
|
||||||
def initialize(topic)
|
def initialize(topic)
|
||||||
@topic = topic
|
@topic = topic
|
||||||
end
|
|
||||||
|
|
||||||
attr_reader :topic
|
|
||||||
|
|
||||||
def blurb
|
|
||||||
Search::GroupedSearchResults.blurb_for(cooked: @topic.try(:blurb))
|
|
||||||
end
|
|
||||||
end
|
|
||||||
|
|
||||||
def self.similar_topics(params, current_user)
|
|
||||||
title = params[:title]
|
|
||||||
raw = params[:raw]
|
|
||||||
categories = params[:categories]
|
|
||||||
date_after = params[:date_after]
|
|
||||||
|
|
||||||
if title.length < SiteSetting.min_title_similar_length || !Topic.count_exceeds_minimum?
|
|
||||||
return []
|
|
||||||
end
|
|
||||||
|
|
||||||
topics = Topic.similar_to(title, raw, current_user).to_a
|
|
||||||
topics.select! { |t| categories.include?(t.category.id.to_s) } if categories.present?
|
|
||||||
topics.select! { |t| t.created_at > DateTime.parse(date_after) } if date_after.present?
|
|
||||||
topics.map! { |t| SimilarTopic.new(t) }
|
|
||||||
::ActiveModel::ArraySerializer.new(topics, each_serializer: SimilarTopicSerializer, root: :similar_topics, rest_serializer: true, scope: ::Guardian.new(current_user))
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
attr_reader :topic
|
||||||
|
|
||||||
|
def blurb
|
||||||
|
Search::GroupedSearchResults.blurb_for(cooked: @topic.try(:blurb))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
def self.similar_topics(params, current_user)
|
||||||
|
title = params[:title]
|
||||||
|
raw = params[:raw]
|
||||||
|
categories = params[:categories]
|
||||||
|
date_after = params[:date_after]
|
||||||
|
|
||||||
|
if title.length < SiteSetting.min_title_similar_length || !Topic.count_exceeds_minimum?
|
||||||
|
return []
|
||||||
|
end
|
||||||
|
|
||||||
|
topics = Topic.similar_to(title, raw, current_user).to_a
|
||||||
|
topics.select! { |t| categories.include?(t.category.id.to_s) } if categories.present?
|
||||||
|
topics.select! { |t| t.created_at > DateTime.parse(date_after) } if date_after.present?
|
||||||
|
topics.map! { |t| SimilarTopic.new(t) }
|
||||||
|
::ActiveModel::ArraySerializer.new(topics, each_serializer: SimilarTopicSerializer, root: :similar_topics, rest_serializer: true, scope: ::Guardian.new(current_user))
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
Laden …
In neuem Issue referenzieren