Class: ThemeCheck::LanguageServer::TagCompletionProvider

Inherits:
CompletionProvider show all
Defined in:
lib/theme_check/language_server/completion_providers/tag_completion_provider.rb

Constant Summary

Constants included from RegexHelpers

RegexHelpers::START_OR_END_QUOTE, RegexHelpers::VARIABLE

Constants included from CompletionHelper

CompletionHelper::WORD

Instance Method Summary collapse

Methods inherited from CompletionProvider

all, inherited, #initialize

Methods included from RegexHelpers

#href_to_file_size, #matches

Methods included from CompletionHelper

#cursor_on_first_word?, #cursor_on_start_content?, #first_word

Constructor Details

This class inherits a constructor from ThemeCheck::LanguageServer::CompletionProvider

Instance Method Details

#can_complete?(content, cursor) ⇒ Boolean

Returns:

  • (Boolean)


14
15
16
17
18
19
# File 'lib/theme_check/language_server/completion_providers/tag_completion_provider.rb', line 14

def can_complete?(content, cursor)
  content.start_with?(Liquid::TagStart) && (
    cursor_on_first_word?(content, cursor) ||
    cursor_on_start_content?(content, cursor, Liquid::TagStart)
  )
end

#completions(content, cursor) ⇒ Object



6
7
8
9
10
11
12
# File 'lib/theme_check/language_server/completion_providers/tag_completion_provider.rb', line 6

def completions(content, cursor)
  return [] unless can_complete?(content, cursor)
  partial = first_word(content) || ''
  ShopifyLiquid::Tag.labels
    .select { |w| w.start_with?(partial) }
    .map { |tag| tag_to_completion(tag) }
end