Joel Drapper

Results 72 issues of Joel Drapper

We should be able to do some accessibility validations in development and testing environments, for example checking that `id` attributes are unique in the scope of each page.

This component is meant to be the Phlex counterpart to `form_with`, but the goal is not compatibility with the `form_with` API. Some parts, e.g `options_for_select` are not worth copying.

First-party `Phlex::Table` component allows you to build HTML tables with a DSL. First define the table: ```ruby class Articles::Table < Phlex::Table do property "Title" do |article| a article.title, href: articles_path(article)...

I don’t know if we should ship this feature without a strong use-case for it. You shouldn’t ever need to use HTML event attributes or `javascript:` links and these should...

- [ ] Configuration in initialiser - [ ] Component generator - [ ] Rendering Phlex components in ERB templates - [ ] Rendering Rails partials in Phlex - [...

documentation

The README isn’t a great home for our documentation. I also [experimented with GitBook](https://docs.phlex.fun) that’s not ideal either. It can’t live in the repo so folks would need to sign...

documentation

Set the User-Agent to RuboCop when requesting a remote config, in order to allow the receiver to detect a RuboCop request. This will allow people to configure RuboCop to inherit...

Rendering a component more than once can result in unintended consequences. For example, if your component uses `DeferredRender` to capture slots, the content of those slots will leak between different...

good first issue
breaking