-
-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Transform Phlex code output through RuboCop or SyntaxTree #59
Comments
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, 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 |
@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. |
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., This is rad!! |
@jaredcwhite depening what you are doing you might also find |
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 phlexingThe text was updated successfully, but these errors were encountered: