<- Back
Comments (29)
- GenericCanadianPhlex is an amazing project. Makes frontend fun again. I've built my own UI library using DaisyUI and Tailwindcss that we use in all our Rails projects: https://github.com/inhouse-work/protosIt cannot be overstated how nice it is to move away from erb and into pure ruby. Private methods as partials is a game changer for refactoring your UI.
- anonyglerI used a rendering library like Phlex back in 2010. I hated it back then and I still don’t like it.They claim it’s faster than ERB but only show micro benchmarks. This is basically a form of lying.This approach stinks for a lot of reasons:- it adds a ton of pressure on the garbage collector. - the backtraces suck to debug. Ruby is better now than in 2010, but it’s still lame. - your templates are largely static. Yet when it lives as code you can’t cache any of it. An efficient ERB generator is just cached strings concatenations. Very efficient in Ruby.Finally, Rubyists hate this and it’s why the community is slowly dying. Almost all your frontend should be in JS/JSX at this point. Even the static stuff.
- alexmccain6RubyUI looks interesting, but I wonder how well it scales in large apps. Moving away from ERB makes sense for maintainability, but does it introduce any trade-offs in terms of memory usage or debugging? Would love to hear from people using it in production.
- buduThe RubyUI team is doing a fantastic job. This gem is now one of the first ones I add to a new project. Thanks for your work!
- bdcravensLooks interesting, but I wish there was a way to alias the component names, since every component class, some of which have common names, take root in the global namespace. (though I suspect that easily enough done manually)
- drumpkidI’m impressed by this project’s progress. It’s more than just a render library. Although they claim it’s 12x faster than ERB, but I couldn’t find their benchmark.
- davidingInteresting stuff. Unsure about the Phlex approach but could be worth a go.Didn't have any luck with the Date Picker component demo page (no pop up or validation?), and that's my usual go-to for seeing how these libraries are doing.
- dzongathis looks dope. has anyone built anything substantial with phlex ?
- justinkoIf I can't copy/paste HTML, not interested.
- desireco42Looks really good and I am happy to see many interesting in Ruby world...
- ramesh31Really gorgeous components. I cant say I understand who would use this or why... but this is a good thing.
- this_is_madnessthe fact that this mentions Tailwind already signifies that its target audience is 10 year oldsedit: yeah, after reading more, this is an affront against nature. forget about separation of content and presentation, now you can even throw your backend into the dumpster fire!