Open marcoroth opened 1 year ago
A SyntaxTree mutation visitor would probably be the easiest solution for this.
@marcoroth @joeldrapper This dovetails into a separate project I've been slowly working on to transform HTML that has certain configurable directives…for example, in a Vue-style configuration, <div v-text="someValue"></div>
would render out as <div v-text="someValue">Expanded with the value text</div>
.
I had been using Nokogiri for this, but now I'm musing on the idea of using Phlexing to compile the HTML to Phlex and then using something like what you're describing to handle the directives so when the Phlex template runs it can expand out that content.
Any thoughts?
(Could be tricky with things like lists, where a single <template>
tag with directives in its content would need to be duplicated and expanded out for n items in an array.)
@jaredcwhite maybe I'm not understanding 100% what you are trying to do, but it seems kinda overkill to me to use phlexing (or phlex for that matter) as an intermediate format for those kind of transformations. Unless you already have those transformations written and implemented based on a Ruby AST.
I agree. I think you’ll find it's easier to use Nokogiri than SyntaxTree for this kind of thing @jaredcwhite. If PhlexML is the final target, you can always do the transformations in Nokogiri first, then run it through Phlexing.
If PhlexML is the final target, you can always do the transformations in Nokogiri first, then run it through Phlexing.
Interesting…I could essentially inject ERB into the markup via Nokogiri prior to the Phlexing stage. I'll give that a try!
@marcoroth @joeldrapper OK, this looks like it can work! I just need to use special delimiters (eg.,{{{{%= value %}}}}
) and gsub back to angle brackets (so Nokogiri doesn't turn them into entities), class_eval a template method with the Phlexing conversion at "compile time", and then renders at run time simply execute the straightforward Phlex template.
This is rad!!
@jaredcwhite depening what you are doing you might also find Phlexing::ERBTransformer
or Phlexing::Parser
helpful so you don't need to replace the output tags with weird markers
Let's say we have this:
Which would generate this through phlexing today:
But since this is a regular Ruby class now we could write any RuboCop rule (or maybe even a SyntaxTree mutation visitor) which statically analyses the code and auto-fixes it (we could even make the rules toggleable from the UI)
For example some rules could be:
tag.div
asdiv { ... }
content_tag :span
tospan { ... }
something
insidedef template
to@something
and remove theattr_accessor
for itclass: something? ? "class-1" : "class-2"
to**classes(something?: { then: "class-1", else: "class-2" })
We could even release these rules standalone as
rubocop-phlex
which people could use in their project independent of phlexing