InlineViewComponent
This gem allows your ViewComponents to define template strings within the class definition. You should be able to use any templating language your rails app supports (ERB, HAML, Slim...). There's also custom syntax highlighting for heredoc templates for Sublime Text.
Usage
Include the InlineViewComponent mixin and then specify your template string with template(string). Be sure to delete your component's external template file or ViewComponent will raise an error.
Examples
class ErbComponent < ViewComponent::Base
include InlineViewComponent
def
"Such inline. Much convenient."
end
template " <p> <%= message %> </p>\n ERB\nend\n"
class HamlComponent < ViewComponent::Base
include InlineViewComponent
def
"Very HAML. Many terse."
end
self.inline_template_format = :haml
template " %p= message\n HAML\nend\n"
You can also provide the template format as an optional second argument to the template method
template " h1 Hello World!\n SLIM\n", :slim
Installation
Add this line to your application's Gemfile:
gem 'inline_view_component'
And then execute:
$ bundle
Or install it yourself as:
$ gem install inline_view_component
Syntax Highlighting
Syntax highlighting for Sublime Text is available. Download this file and add it to your Sublime User package. Then open your ruby files in the Ruby (Custom) syntax (or choose View -> Syntax -> Open All with current extention as... to use it automatically).
To get syntax highlighting to work use ERB, HAML, or SLIM as the delimiter for your heredoc string e.g.
template "%h1 A really great template\n", :haml
TODO
This is an early release. Contributions are welcome!
- [ ] add syntax highlighting for more editors (VS Code, vim, ...)
Contributing
Send a pull request.
License
The gem is available as open source under the terms of the MIT License.