Sha256: 7cfd76d8a2b70a93f4f8acfcfd22b0b77287c4de14b0b9e06c4dd6687023ff0d

Contents?: true

Size: 937 Bytes

Versions: 10

Compression:

Stored size: 937 Bytes

Contents

# frozen_string_literal: true
module ThemeCheck
  class TranslationKeyExists < LiquidCheck
    severity :error
    category :translation

    def on_variable(node)
      return unless @theme.default_locale_json&.content&.is_a?(Hash)

      return unless node.value.filters.any? { |name, _| name == "t" || name == "translate" }
      return unless (key_node = node.children.first)
      return unless key_node.value.is_a?(String)

      unless key_exists?(key_node.value)
        add_offense(
          "'#{key_node.value}' does not have a matching entry in '#{@theme.default_locale_json.relative_path}'",
          node: node,
          markup: key_node.value,
        )
      end
    end

    private

    def key_exists?(key)
      pointer = @theme.default_locale_json.content
      key.split(".").each do |token|
        return false unless pointer.key?(token)
        pointer = pointer[token]
      end

      true
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
theme-check-0.4.0 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.3.3 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.3.2 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.3.1 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.3.0 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.2.2 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.2.0 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.1.2 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.1.1 lib/theme_check/checks/translation_key_exists.rb
theme-check-0.1.0 lib/theme_check/checks/translation_key_exists.rb