-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from Shopify/vs/add_dsl_hover
Move DSL hover functionality from the Ruby LSP
- Loading branch information
Showing
5 changed files
with
215 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
122 changes: 122 additions & 0 deletions
122
lib/ruby_lsp/ruby_lsp_rails/support/rails_document_client.rb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,122 @@ | ||
# typed: strict | ||
# frozen_string_literal: true | ||
|
||
require "net/http" | ||
|
||
module RubyLsp | ||
module Rails | ||
module Support | ||
class RailsDocumentClient | ||
RAILS_DOC_HOST = "https://api.rubyonrails.org" | ||
SUPPORTED_RAILS_DOC_NAMESPACES = T.let( | ||
Regexp.union( | ||
/ActionDispatch/, | ||
/ActionController/, | ||
/AbstractController/, | ||
/ActiveRecord/, | ||
/ActiveModel/, | ||
/ActiveStorage/, | ||
/ActionText/, | ||
/ActiveJob/, | ||
).freeze, | ||
Regexp, | ||
) | ||
|
||
RAILTIES_VERSION = T.let( | ||
[*::Gem::Specification.default_stubs, *::Gem::Specification.stubs].find do |s| | ||
s.name == "railties" | ||
end&.version&.to_s, | ||
T.nilable(String), | ||
) | ||
|
||
class << self | ||
extend T::Sig | ||
sig do | ||
params(name: String).returns(T::Array[String]) | ||
end | ||
def generate_rails_document_urls(name) | ||
docs = search_index&.fetch(name, nil) | ||
|
||
return [] unless docs | ||
|
||
docs.map do |doc| | ||
owner = doc[:owner] | ||
|
||
link_name = | ||
# class/module name | ||
if owner == name | ||
name | ||
else | ||
"#{owner}##{name}" | ||
end | ||
|
||
"[Rails Document: `#{link_name}`](#{doc[:url]})" | ||
end | ||
end | ||
|
||
sig { returns(T.nilable(T::Hash[String, T::Array[T::Hash[Symbol, String]]])) } | ||
private def search_index | ||
@rails_documents ||= T.let( | ||
build_search_index, | ||
T.nilable(T::Hash[String, T::Array[T::Hash[Symbol, String]]]), | ||
) | ||
end | ||
|
||
sig { returns(T.nilable(T::Hash[String, T::Array[T::Hash[Symbol, String]]])) } | ||
private def build_search_index | ||
return unless RAILTIES_VERSION | ||
|
||
warn("Fetching Rails Documents...") | ||
|
||
response = Net::HTTP.get_response(URI("#{RAILS_DOC_HOST}/v#{RAILTIES_VERSION}/js/search_index.js")) | ||
|
||
if response.code == "302" | ||
# If the version's doc is not found, e.g. Rails main, it'll be redirected | ||
# In this case, we just fetch the latest doc | ||
response = Net::HTTP.get_response(URI("#{RAILS_DOC_HOST}/js/search_index.js")) | ||
end | ||
|
||
if response.code == "200" | ||
process_search_index(response.body) | ||
else | ||
warn("Response failed: #{response.inspect}") | ||
nil | ||
end | ||
rescue StandardError => e | ||
warn("Exception occurred when fetching Rails document index: #{e.inspect}") | ||
end | ||
|
||
sig { params(js: String).returns(T::Hash[String, T::Array[T::Hash[Symbol, String]]]) } | ||
private def process_search_index(js) | ||
raw_data = js.sub("var search_data = ", "") | ||
info = JSON.parse(raw_data).dig("index", "info") | ||
|
||
# An entry looks like this: | ||
# | ||
# ["belongs_to", # method or module/class | ||
# "ActiveRecord::Associations::ClassMethods", # method owner | ||
# "classes/ActiveRecord/Associations/ClassMethods.html#method-i-belongs_to", # path to the document | ||
# "(name, scope = nil, **options)", # method's parameters | ||
# "<p>Specifies a one-to-one association with another class..."] # document preview | ||
# | ||
info.each_with_object({}) do |(method_or_class, method_owner, doc_path, _, doc_preview), table| | ||
# If a method doesn't have documentation, there's no need to generate the link to it. | ||
next if doc_preview.nil? || doc_preview.empty? | ||
|
||
# If the method or class/module is not from the supported namespace, reject it | ||
next unless [method_or_class, method_owner].any? do |elem| | ||
elem.match?(SUPPORTED_RAILS_DOC_NAMESPACES) | ||
end | ||
|
||
owner = method_owner.empty? ? method_or_class : method_owner | ||
table[method_or_class] ||= [] | ||
# It's possible to have multiple modules defining the same method name. For example, | ||
# both `ActiveRecord::FinderMethods` and `ActiveRecord::Associations::CollectionProxy` defines `#find` | ||
table[method_or_class] << { owner: owner, url: "#{RAILS_DOC_HOST}/v#{RAILTIES_VERSION}/#{doc_path}" } | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters