Class: JsxRosetta::Backend::ViewComponent::ExpressionTranslator

Inherits:
Object
  • Object
show all
Defined in:
lib/jsx_rosetta/backend/view_component/expression_translator.rb

Overview

Best-effort, narrowly-scoped JS-to-Ruby translation for the simple expression shapes that JSX components in real codebases use most often: bare identifiers, literals, simple member-expression chains (‘item.label`), and template literals composed of identifier interpolations. Anything more complex (function calls, conditionals, subscripts) returns `nil` from `#translate` so the backend can emit a TODO marker and fall back to the verbatim JS source.

Identifier resolution:

* Names in the active local scope (e.g. loop bindings) translate
  to the bare snake_case identifier.
* Names in `prop_names` translate to a `@snake_case` instance
  variable.
* Names in `local_binding_names` (consts/destructures captured at
  lowering time but not modeled in IR) translate to a `nil`
  placeholder with an inline `# TODO: local 'name'` marker — the
  file still loads, but the reviewer sees what to fill in.
* Anything else translates to the bare snake_case identifier and
  is recorded as unresolved.

Local scopes can be pushed via ‘with_locals` and stack — each entry shadows lower entries.

Defined Under Namespace

Classes: Result

Constant Summary collapse

IDENTIFIER =
/\A[a-zA-Z_$][a-zA-Z_$0-9]*\z/
STRING_LITERAL =
/\A(['"])(.*)\1\z/m
NUMBER_LITERAL =
/\A-?\d+(\.\d+)?\z/
TEMPLATE_LITERAL =
/\A`(.*)`\z/m
TEMPLATE_INTERPOLATION =
/\$\{([a-zA-Z_$][a-zA-Z_$0-9]*(?:\.[a-zA-Z_$][a-zA-Z_$0-9]*)*)\}/
MEMBER_CHAIN =
/\A(?<root>[a-zA-Z_$][a-zA-Z_$0-9]*)(?<rest>(?:\.[a-zA-Z_$][a-zA-Z_$0-9]*)+)\z/
UNARY =
/\A(?<op>!+|-|\+)(?<operand>.+)\z/m
SIMPLE_LITERALS =
{ "null" => "nil", "undefined" => "nil", "true" => "true", "false" => "false" }.freeze

Instance Method Summary collapse

Constructor Details

#initialize(prop_names:, local_binding_names: []) ⇒ ExpressionTranslator

Returns a new instance of ExpressionTranslator.



42
43
44
45
46
# File 'lib/jsx_rosetta/backend/view_component/expression_translator.rb', line 42

def initialize(prop_names:, local_binding_names: [])
  @prop_names = prop_names.to_set
  @local_binding_names = local_binding_names.to_set
  @local_stack = []
end

Instance Method Details

#translate(source) ⇒ Object



55
56
57
58
59
60
61
# File 'lib/jsx_rosetta/backend/view_component/expression_translator.rb', line 55

def translate(source)
  source = source.strip
  unresolved = []

  ruby = translate_ruby(source, unresolved)
  ruby && Result.new(ruby: ruby, unresolved_identifiers: unresolved.uniq)
end

#with_locals(names) ⇒ Object



48
49
50
51
52
53
# File 'lib/jsx_rosetta/backend/view_component/expression_translator.rb', line 48

def with_locals(names)
  @local_stack.push(names.compact)
  yield
ensure
  @local_stack.pop
end