Skip to content

Commit 60f92f3

Browse files
authored
Improve readme (#11)
1 parent 28dbfd2 commit 60f92f3

File tree

3 files changed

+52
-33
lines changed

3 files changed

+52
-33
lines changed

README.md

+46-32
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@
44

55
This gem adds a simple way to automatically register custom elements in your `importmap-rails` app. No build step required!
66

7+
## Table of Contents
8+
9+
<details>
10+
<summary>Click to expand</summary>
11+
12+
- [Rails support](#rails-support)
13+
- [Installation](#installation)
14+
- [Generators](#generators)
15+
- [Documentation](#documentation)
16+
- [Contributing](#contributing)
17+
- [License](#license)
18+
19+
</details>
20+
21+
## Rails support
22+
23+
* Supports Rails 7.0, 7.1, 7.2 & 8.0
24+
* Supports `importmap-rails` 1 and 2
25+
726
## Installation
827

928
Add this line to your application's Gemfile:
@@ -14,74 +33,67 @@ gem "custom_elements-rails"
1433

1534
Install the gem:
1635

17-
```bash
36+
```console
1837
$ bundle install
1938
```
2039

2140
Run the initial setup:
2241

23-
```bash
42+
```console
2443
$ rails custom_elements:install
2544
```
2645

2746
This will setup and edit add the following files:
2847

29-
```
48+
```graphql
3049
app/javascript
3150
├── application.js
3251
└── custom_elements
3352
├── hello_element.js
3453
└── index.js
3554
```
3655

37-
The `<app-hello>` custom element can be used in the views now.
56+
The `<app-hello>` custom element can be used in views now.
3857

39-
You can generate a new custom element with `rails g custom_element abc`.
58+
You can generate a new custom element `<app-demo>` with `rails generate custom_element demo`.
4059

41-
## How it works
60+
### How It Works
4261

43-
The setup will add a JS function call `eagerDefineCustomElementsFrom` that parses the importmap rendered by the `importmap-rails` gem.
44-
It registers custom elements with `customElements.define(...)` in the browser's registry based on the filenames in the `custom_elements` folder automatically.
62+
The `custom_elements-rails` gem uses `eagerDefineCustomElementsFrom` to automatically register [custom elements](https://developer.mozilla.org/en-US/docs/Web/API/Web_components/Using_custom_elements) in the `custom_elements` folder. It parses the importmap generated by `importmap-rails` and registers custom elements using the `customElements.define(...)` API.
4563

46-
```
47-
custom_elements/hello_element.js // will register <app-hello> automatically
48-
```
49-
50-
Your `*_element.js` files have to `export default` custom elements for this to work properly.
64+
> [!IMPORTANT]
65+
> Make sure your `*_element.js` files use `export default` to define the custom elements.
5166
5267
### Naming Convention for Custom Elements
5368

5469
When defining custom elements from files, their filenames are used to generate the element names automatically. The following rules and examples clarify how file paths are converted to custom element names:
5570

5671
#### Usage
5772

58-
Register all files in the `custom_elements` folder as custom elements using a prefix (e.g., `app`):
73+
Register all files in the `custom_elements` folder as custom elements:
5974

6075
```js
6176
eagerDefineCustomElementsFrom("custom_elements", { prefix: "app" });
6277
```
6378

79+
| Filepath | Generated Custom Element Name |
80+
|--------------------------------------------:|:------------------------------|
81+
| `custom_elements/demo_element.js` | `<app-demo>` |
82+
| `custom_elements/demo-element.js` | `<app-demo>` |
83+
| `custom_elements/foo_bar_element.js` | `<app-foo-bar>` |
84+
| `custom_elements/folder/foo_bar_element.js` | `<app-folder--foo-bar>` |
85+
6486
#### Conversion Rules
6587

6688
- Filenames are transformed into kebab-case (lowercase with hyphens).
67-
- Words are separated by underscores (`_`) or hyphens (`-`) in the filename.
6889
- The folder structure is reflected in the name using double hyphens (`--`) to separate folder names from the file name.
69-
- A prefix (e.g., `app`) is added to the beginning of each custom element name.
70-
71-
#### Examples
72-
73-
| Filepath | Generated Custom Element Name |
74-
|-------------------------------------|--------------------------------|
75-
| `custom_elements/demo_element.js` | `<app-demo>` |
76-
| `custom_elements/demo-element.js` | `<app-demo>` |
77-
| `custom_elements/foo_bar_element.js`| `<app-foo-bar>` |
78-
| `custom_elements/folder/foo_bar_element.js` | `<app-folder--foo-bar>` |
90+
- A [configurable prefix](#documentation) is added to the beginning of each custom element name.
7991

80-
## Add a custom element with the built-in generator
92+
## Generators
8193

8294
This gem adds a generator to generate new custom elements with:
8395

84-
```bash
96+
```console
8597
$ rails generate custom_element test
8698
```
8799

@@ -102,13 +114,13 @@ export default class extends HTMLElement {
102114

103115
which in turn will register a `<app-test></app-test>` custom element automatically in your app.
104116

105-
```bash
117+
```console
106118
$ rails generate custom_element test
107119
```
108120

109121
To observe changes in your custom element's attributes, you need to set a static array of attribute names. The generator also supports setting those automatically:
110122

111-
```bash
123+
```console
112124
$ rails generate custom_element test attribute1
113125
```
114126

@@ -136,13 +148,15 @@ export default class extends HTMLElement {
136148

137149
`eagerDefineCustomElementsFrom(under, options)`
138150

139-
Currently supported `options`:
151+
Currently supported optional `options`:
140152

141-
* `prefix`: The custom elements namespace/prefix.
153+
* `prefix`: The custom elements namespace. (default: "app")
142154

143155
## Contributing
144156

145-
TODO
157+
1. Fork the repository.
158+
2. Create a feature branch.
159+
3. Submit a pull request with a detailed description of changes.
146160

147161
## License
148162

app/assets/javascript/custom_elements-rails.js

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
export function eagerDefineCustomElementsFrom(namespace, options = {}) {
2+
const defaultOptions = {
3+
prefix: 'app'
4+
}
5+
6+
options = { ...defaultOptions, ...options }
27
const pathToElementName = (path) => {
38
const parts = path.split('/').map(p => p.replace(/_/g, '-'));
49
return `${options.prefix}-${parts.slice(0, -1).join('--')}${parts.length > 1 ? '--' : ''}${parts.at(-1)}`;
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
import { eagerDefineCustomElementsFrom } from "custom_elements-rails"
22

3-
eagerDefineCustomElementsFrom("custom_elements", { prefix: "app" })
3+
eagerDefineCustomElementsFrom("custom_elements")

0 commit comments

Comments
 (0)